Fix code identation

This commit is contained in:
Diogo Cordeiro 2018-11-24 15:06:39 +00:00
parent e6d3ae979f
commit 3357cbaa7e

View File

@ -114,7 +114,6 @@ polynomial_variable(X) :-
power(P^N) :-
(
N #>= 1,
%% zcompare((<), -1, N),
polynomial_variable(P)
;
fail
@ -153,8 +152,7 @@ term(N) :-
nonvar(N),
% Assert it as a number
number(N)
);
(
;
% If N is a free variable
not(compound(N)),
var(N),