* @param oldToNewMap the map filled with the old node-new node relation
* @return a deep clone of this {@link AOrBinop} node
*/
public AOrBinop clone(Map<INode,INode> oldToNewMap)
{
AOrBinop node = new AOrBinop(
);
oldToNewMap.put(this, node);
return node;
}