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