public static Expr nodeToExpr(Node n) { if (n.isVariable()) return new ExprVar(n); return NodeValue.makeNode(n); }
public static NodeValue parseNodeValue(String s) { Node n = NodeFactoryExtra.parseNode(s); NodeValue nv = NodeValue.makeNode(n); return nv; }