configurarion changes

git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@369 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
vsc
2002-02-22 06:12:18 +00:00
parent 709b8b277b
commit f92947d61b
18 changed files with 399 additions and 406 deletions

View File

@@ -857,8 +857,8 @@ static int can_unify_complex(register CELL *pt0,
case (CELL)FunctorBigInt:
if (mpz_cmp(BigIntOfTerm(d0),BigIntOfTerm(d1)) == 0) continue;
goto comparison_failed;
default:
#endif /* USE_GMP */
default:
goto comparison_failed;
}
}
@@ -994,8 +994,8 @@ can_unify(Term t1, Term t2, Term *Vars)
case (CELL)FunctorBigInt:
if (mpz_cmp(BigIntOfTerm(t1),BigIntOfTerm(t2)) == 0) return(TRUE);
return(FALSE);
default:
#endif /* USE_GMP */
default:
return(FALSE);
}
}