interface Node {
  
    Object clone() throws CloneNotSupportedException;
    Double eval(Assignation ass);
    Node derive(String var); 
    Node substitute(String var, double d);
}

