1
vote
3answers
548 views

Python: Math expression parsing [closed]

Python: So I am working on a program (which is a class assignment) that will take an expression such as 3/4/5 or 32432/23423/2354325 or 3425*343/254235 or 43252+34254-2435, etc(for all operators from ...
0
votes
3answers
124 views

Library for evaluating logical expressions on Java objects

Let's say I have the following class: class Person { int age; String city; Collection<Person> friends; Person spouse; } I need a library which would allow me to evaluate ...
7
votes
4answers
428 views

Evaluate beyond one level within Hold in Mathematica

The mathematica documentation on Evaluate at possible issues says: Evaluate works only on the first level, directly inside a held function Why does Mathematica have this limitation? So if I ...
9
votes
7answers
3k views

c expression Evaluator

Okay lets say I have a string such as this in a text file: ((( var1 AND var2 AND var3) OR var4) AND ((var5 OR var6) AND var7)) after parsing this into the c program and the vars are handled and set ...