testTermEq
Tests the queries
?- '=='(1,1).Content copied to clipboard
succeeds on a solver initialized with default built-ins and with and empty theory.
?- '=='(X,X).Content copied to clipboard
succeeds on a solver initialized with default built-ins and with and empty theory.
?- '=='(1,2).Content copied to clipboard
fails on a solver initialized with default built-ins and with and empty theory.
?- '=='(X,1).Content copied to clipboard
fails on a solver initialized with default built-ins and with and empty theory.
?- '=='(X,Y).Content copied to clipboard
fails on a solver initialized with default built-ins and with and empty theory.
?- '=='(_,_).Content copied to clipboard
fails on a solver initialized with default built-ins and with and empty theory.
?- '=='(X,a(X)).Content copied to clipboard
fails on a solver initialized with default built-ins and with and empty theory.
?- '=='(f(a),f(a)).Content copied to clipboard
succeeds on a solver initialized with default built-ins and with and empty theory.