Tagged Questions
The expression-evaluation tag has no wiki summary.
15
votes
13answers
1k 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 ...
8
votes
6answers
2k 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 ...
8
votes
5answers
737 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 ...
4
votes
9answers
1k 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 ...
2
votes
1answer
84 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 ...
2
votes
5answers
107 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 ...
2
votes
3answers
220 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, ...
2
votes
3answers
242 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 ...
2
votes
6answers
430 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?
2
votes
1answer
220 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 ...
2
votes
4answers
145 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 ...
1
vote
1answer
102 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 ...
1
vote
3answers
90 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 ...
1
vote
1answer
141 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 ...
1
vote
4answers
196 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++ ...
1
vote
4answers
601 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
0
votes
3answers
38 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 ...
0
votes
1answer
152 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 ...
0
votes
4answers
89 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 ...
0
votes
2answers
107 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 ...