I'm new to prolog and have a rookie question:
Suppose I have these lines of code:
p(1).
p(2):-!.
p(3).
and I am running p(X).
The question: I'm getting X=1 , X=2.
Why does X not equal 3 as well?
|
I'm new to prolog and have a rookie question: Suppose I have these lines of code:
and I am running The question: I'm getting |
|||||
|
|
A Prolog program is a sequence of statements, called clauses, of the form
So to help you understand your problem you have to know this: Each of Declarative meaning: “ Procedural meaning: “To satisfy goal
The Cut clauses contain the "!" symbol (also pronounced bang). When the Prolog interpreter sees the cut symbol, it deletes the remaining rules that have the same positive literal as the rule that contains the bang. This can have several effects on the programs—it can represent certain negative results, it can avoid or deal smoothly with failures, or it can simply eliminate part of the search space and speed up the program. |
|||||||||||||||||
|
|
the cut "!" is executed before p(3)... that is why it does not display X=3... |
|||||
|