Why does this work:
power(_,0,1) :- !.
power(X,Y,Z) :-
Y1 is Y - 1,
power(X,Y1,Z1),
Z is X * Z1.
And this gives a stack overflow exception?
power(_,0,1) :- !.
power(X,Y,Z) :-
power(X,Y - 1,Z1),
Z is X * Z1.
|
Why does this work:
And this gives a stack overflow exception?
| |||
|
feedback
|
|
Because arithmetic operations are only performed on clauses through the Prolog is primarily just unification of terms - calculation, in the "common" sense, has to be asked for explicitly. | |||||||||
feedback
|