Fix code identation
This commit is contained in:
parent
e6d3ae979f
commit
3357cbaa7e
@ -114,7 +114,6 @@ polynomial_variable(X) :-
|
|||||||
power(P^N) :-
|
power(P^N) :-
|
||||||
(
|
(
|
||||||
N #>= 1,
|
N #>= 1,
|
||||||
%% zcompare((<), -1, N),
|
|
||||||
polynomial_variable(P)
|
polynomial_variable(P)
|
||||||
;
|
;
|
||||||
fail
|
fail
|
||||||
@ -153,8 +152,7 @@ term(N) :-
|
|||||||
nonvar(N),
|
nonvar(N),
|
||||||
% Assert it as a number
|
% Assert it as a number
|
||||||
number(N)
|
number(N)
|
||||||
);
|
;
|
||||||
(
|
|
||||||
% If N is a free variable
|
% If N is a free variable
|
||||||
not(compound(N)),
|
not(compound(N)),
|
||||||
var(N),
|
var(N),
|
||||||
|
Reference in New Issue
Block a user