The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
19 views

Expression Trees: Alternatives or Alternate Evaluation Methods

I'm not even sure if this is the right place to ask a question like this. As a part of my MSc thesis, I am doing some parallel algorithm stuff. To put it simply part of the thing that I am doing is ...
0
votes
0answers
61 views

Using Janino to evaluate composite method expressions

Is there any way of evaluating a composite method expression using Janino? For example, given a class definition like public abstract class Calculator { public abstract int plus(int a, int b); ...
0
votes
1answer
88 views

Building and evaluating expressions using Delphi RTTI

I am faced with a task of allowing the user to define the expressions using the compiled classes with RTTI enabled. Let me put it in a simple way. TAnimal = class(TPersistent) private fWeight : ...
6
votes
1answer
146 views

Expression evaluation tree in Haskell

In an exam today I was asked to create an expression evaluation tree in Haskell. Usually the answer is as simple as: data Expr = Value Integer | Add Expr Expr | Sub Expr Expr ...
-1
votes
1answer
72 views

How to parse mathematical expressions

I'd like to understand how a Java program like GeoGebra can read a mathematical expression like exp(z^2) from a textbox and then evaluate it. For those familiar with MatLab: How do you implement ...
0
votes
1answer
57 views

Solve equation which is in string format

I have a equation in string format like "45+5*4-6" which I have to solve in Java. Is there any way to solve equation which is in string format?
0
votes
8answers
131 views

(solved) ++i+i++ evaluation

Confusion rose because of this post. The author updated his post, and the result became clear. Conclusion: Java evaluates expressions from left to right Closed! As evaluation of expression is ...
0
votes
1answer
49 views

Global vs local variable valuation issue in Maple

For some reason, the Maple code testproc := proc() LOCAL abc; abc[1] := 123; print(eval(parse(cat("abc[", 1, "]")))) end proc testproc(); produces abc_1 whereas (same, but with abc now a ...
2
votes
1answer
88 views

ANTLR grammar expression evaluation for token which can be available zero or 1 time

I have a combined ANTLR grammar, which shall look out for specific tokens / token combinations. Some tokes can be available zero or 1 time. I want to store a "found" or "not found" value to a hashmap ...
0
votes
1answer
171 views

Statement evaluator trace in Haskell

I'm attempting writing a program which takes in any generic statement, evaluates it, and shows each step as it is evaluated. For example, if we have a sequence of assignment statements, it should run ...
3
votes
1answer
100 views

Starting to write a logical expression evaluator [closed]

I want to develop a logical expression evaluator to compute applicability of certain logical expression against a particular expression. For example, An expression could be of the form (A AND B) ...
1
vote
1answer
72 views

JavaScript Library for processing operations

My code dynamically generates string/number operations. The program dynamically builds something similar to the following: "My name " + "is " + "G-Man" "Your age is " + "21" "5" * "5" I want to ...
2
votes
1answer
160 views

Unity3d: Execute arbitrary javascript from C# object

I would like to string expression = "2+2"; public string evaluateExpresion(expression) { return executeJavascript(expression); // Magic javascript executor } ...
0
votes
1answer
42 views

How do I find and delete datatips throughout my solution in Visual Studio 2010?

I noticed that lots of expression evaluation popups datatips severely slow down going in and out of debugging, so I'd like to delete most of them (for that I need to find them first, is there a button ...
5
votes
2answers
261 views

Writing String evaluation function

I'm trying to write a String evaluation function i.e. evaluate("4 + 1") ; // returns 5 evaluate("4 + 1 + 3") ; // returns 8 evaluate("4 + 1 * 3") ; // returns 7 (not 15) The operators are + - / ...
1
vote
0answers
78 views

Janino ExpressionEvaluator not guessing all parameters?

Consider a simple use case for the ExpressionEvaluator class of the Janino library, i.e. when using it to guess the parameters of an expression, as follows: public static String[] ...
0
votes
1answer
664 views

Boolean expression parse and evaluation in C++

I need to evaluate simple Boolean functions at run time in C++. The functions are read from a file as strings. Is there any library available that I could use for this? I looked into BuDDy but sounds ...
1
vote
1answer
520 views

eval command function within ksh script is globbing when I don't want it to

Consider the following ksh script "myquery.ksh" #/usr/bin/env ksh -eu PROCESS_TYP=$1 PROCESS_DT=$2 #Generate a query makeSQL() { local numfiles=0 local query='SEL \\* FROM TABLE_1_' case "$1" in ...
0
votes
3answers
247 views

Java: Library for expression parsing & evaluation with identifiers not known in advance

I need to evaluate a boolean expression. The purpose is to filter a set of tagged items. Tag can be any name (let's say, like Java identifier). For example: foo OR (bar AND !baz) This would be ...
1
vote
1answer
268 views

Mathematical expression evaluator which incorporates units of measure

Similar to this question but different. Lots of good answers there, but none do Units of Measure. How about a .NET compatible (even through COM, if necessary) mathematical expression evaluator which ...
3
votes
1answer
398 views

ANTLR : expression evaluator, division and pow

I'm trying to write a grammar to evaluate expressions. I've started with the given example on the ANTLR website (it manage +,- and *). I added the division. But I would like to notify user if he tries ...
0
votes
1answer
286 views

Delphi Prism: Replacement for TMathparser class for evaluating complex expressions?

In Delphi, I use a component called TMathparser to evaluate an expression to get an answer. I am trying to get it to work in Delphi Prism and it is not working out too well. In fact, there is just too ...
2
votes
5answers
358 views

Building a boolean function from a string description

I have a large database of boolean values and want to build a framework for easily running queries over all of the values. To do this, I'd like to write a function that, given a string representation ...
1
vote
3answers
315 views

c++, evaluating expressions with multiple `&&`s and no operator of lower precedence

If an expression evaluates multiple && operators, and does not evaluate any operators of lower precedence (eg. ||, ?:), will the expression evaluate to 0 as soon as one of the &&s ...
0
votes
4answers
264 views

Evaluating List<String> as a mathamatical expression

I have a List<String> that is full of values and operators. ["123", "+", "(", "890", "-", "15.00", ")"] I know that I can make an algorithm that will push these numbers and and operators onto ...
2
votes
1answer
544 views

Defining constants and operators in Irony

I'm new to Irony and the whole language implementation shebang, so I've been playing around with the ExpressionEvaluator sample that comes with the Irony source, which seems to (almost) suit my needs ...
2
votes
3answers
474 views

Expression evaluation in C

Why does the following piece of C code print 12 12 12 int main(int argc, char const *argv[]) { int a = 2, *f1, *f2; f1 = f2 = &a; *f2 += *f2 += a += 2.5; printf("%i %i %i\n", a, *f1, ...
0
votes
2answers
173 views

Scheme: Proper application of the eval function?

at work I encountered a basic problem when trying to implement a configuration script with Scheme. To avoid the need of inventing an artificial and restricted language the script should contain actual ...
1
vote
3answers
697 views

Resharper bug? Incorrect “expression is always true”

I believe I have found a bug in resharper. Suppose I have code as follows: int[] someArray = new int[10]; while (someArray != null) { //perhaps some other usage of someArray here, but not ...
1
vote
4answers
726 views

Why do different C++ compilers give different results for this code?

I'm writing some C++ codes for fun and practice, to learn more about language features. I want to know more about static variables and their behaviour in recursive functions. Trying this code in g++ ...
2
votes
4answers
2k views

evaluate boolean expression in java generate at runtime

How to evaluate complex boolean expressions generated at runtime in a Java program? Example: (x and y or z) and s with x, y, z boolean variables ... Thanks
8
votes
6answers
6k views

Recursive expression evaluator using Java

I am going to write an expression evaluator which only does addition and subtraction. I have a simple algorithm to do that; but, I have some implementation problems. I considered an expression as (it ...
2
votes
6answers
627 views

How can I evaluate a math expression represented by a string?

It's easy to implement a "Calculator" to parse a string (e.g., 2 ^ 3 / 2) and compute the result of operations. But, is there a library already capable of doing this?
3
votes
1answer
311 views

Is IronRuby ScriptSource.Execute thread safe?

We are implemented expression evaluator via hosting IronRuby engine. Simplified version of evaluator you can see here. Now we are trying to get more performance from IronRuby via executing ...
8
votes
5answers
1k views

Need guidance towards evaluative boolean logic tree

I can't seem to find a pointer in the right direction, I am not even sure what the terms are that I should be researching but countless hours of googling seem to be spinning me in circles, so ...
16
votes
13answers
2k views

Evaluate dice rolling notation strings

Rules Write a function that accepts string as a parameter, returning evaluated value of expression in dice notation, including addition and multiplication. To clear the things up, here comes EBNF ...
2
votes
4answers
152 views

AND/OR chains in C

I'm pretty much positive about this, but just to be on the safe side: Does the C standard guarantee that AND chains (A && B && ...) will be evaluated left to right, and that ...
0
votes
5answers
2k views

Expression Evaluation in C++

I'm writing some excel-like C++ console app for homework. My app should be able to accept formulas for it's cells, for example it should evaluate something like this: ...
2
votes
2answers
1k views

Macro which prints an expression and evaluates it (with __STRING)

For learning and demonstrating, I need a macro which prints its parameter and evaluates it. I suspect it is a very common case, may be even a FAQ but I cannot find actual references. My current code ...
5
votes
9answers
2k views

Left to right expression evaluation

In C# is it guaranteed that expressions are evaluated left to right? For example: myClass = GetClass(); if (myClass == null || myClass.Property > 0) continue; Are there any languages ...