public Expression(string input) { this.Input = input; Tokens = new Tokenizer(input).Scan(); PostFixedTokens = new PostfixedTokens(Tokens.tokens); ParseTree = PostFixedTokens.BuildParseTree(); ReturnValue = ParseTree.val; Output = ReturnValue.FullVisualization(); }
public Variable(string name, Value value, Expression.Expression function) { this.name = name; this.value = value; this.function = function; }
public Variable(string name, Value value) { this.name = name; this.value = value; }