spacing
This commit is contained in:
parent
1067bfe0c2
commit
77c82024d0
1 changed files with 2 additions and 2 deletions
4
main.pl
4
main.pl
|
|
@ -65,11 +65,11 @@ main_diagonal([Row|Rows], Column, [D|Ds]) :-
|
||||||
%
|
%
|
||||||
% Holds when the variables in the list `Vars` can be unified
|
% Holds when the variables in the list `Vars` can be unified
|
||||||
all_same([Var|Vars]) :-
|
all_same([Var|Vars]) :-
|
||||||
all_same(Var, Vars).
|
all_same(Var, Vars).
|
||||||
|
|
||||||
all_same(Var, [Var]).
|
all_same(Var, [Var]).
|
||||||
all_same(Var, [Var|Vars]) :-
|
all_same(Var, [Var|Vars]) :-
|
||||||
all_same(Var, Vars).
|
all_same(Var, Vars).
|
||||||
|
|
||||||
|
|
||||||
%% valid(+Row)
|
%% valid(+Row)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue