- Added '--concrete' switch to fill in to pick readable names for

variables.
This commit is contained in:
ccremers
2005-11-12 21:13:00 +00:00
parent 1527773ae2
commit 76666404b0
9 changed files with 246 additions and 26 deletions

View File

@@ -470,7 +470,7 @@ termNodeDuplicate (const Term term)
//! Make a true deep copy of a term.
/**
* Currently, it this function is not to be used, so we can be sure leaf nodes occur only once in the system.
* Currently, this function is not to be used, so we can be sure leaf nodes occur only once in the system.
*@return New memory is allocated and the node is copied recursively.
*\sa termDuplicate()
*/
@@ -1329,3 +1329,10 @@ termPrintDiff (Term t1, Term t2)
}
}
}
//! Test two leaf terms for abstract equality (abstracting from the run identifiers)
int
isLeafNameEqual (Term t1, Term t2)
{
return (TermSymb (t1) == TermSymb (t2));
}