- Bugfix: term output now correctly displays local constants of a run
before it is bound.
This commit is contained in:
parent
dfdea5b0bf
commit
7d0be35658
@ -331,7 +331,7 @@ termPrint (Term term)
|
|||||||
if (realTermLeaf (term))
|
if (realTermLeaf (term))
|
||||||
{
|
{
|
||||||
symbolPrint (term->left.symb);
|
symbolPrint (term->left.symb);
|
||||||
if (realTermVariable (term))
|
if (term->type == VARIABLE)
|
||||||
eprintf ("V");
|
eprintf ("V");
|
||||||
if (term->right.runid >= 0)
|
if (term->right.runid >= 0)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user