I'm trying to parse a tree of nodes recursively, but every child I add evaluates to the last value.
Example: parsing 2+3 should make a node that evaluates 2 and a node that evaluates 3, but instead I get 2 nodes that evaluate to 3.
According to the debugger, subBefore is "2" and subAfter is "3" as it should be.
Constructing a new Operation adds the arguments as children. Why do I end up with children that evaluate to the same value?
Code is below. Term is pretty much the same thing but checks for * and / instead of + and -
Full code:
public class Operation extends ASTNode {
static char op;
private Operation(ASTNode... n) { super(n); }
public static Operation parse(String s) {
String str = s.trim();
if(Term.parse(str) != null) return new Operation(Term.parse(str));
else {
// now make substrings
int lastOpPlus = str.lastIndexOf('+');
int lastOpMinus = str.lastIndexOf('-');
if (lastOpPlus > lastOpMinus) {
op = '+';
String subAfter = str.substring(lastOpPlus+1);
String subBefore = str.substring(0, lastOpPlus);
if(Operation.parse(subBefore)!=null && Term.parse(subAfter) != null) {
return new Operation(Operation.parse(subBefore), Term.parse(subAfter));
}
}
return null;
}
}
public double eval(java.util.Map<String,Double> symtab) {
// first check if state is okay checkState();
if(arity() > 1) {
return (getChild(0).eval(symtab)+getChild(1).eval(symtab));
}
//System.out.println(arity());
//getChild(1).eval(symtab);
else{
return getChild(0).eval(symtab);
}
}
}