can somebody please explain the processing of the following command:
max(X,Y,Max) :- X >= Y, !, Max = X ; Max = Y.
I can't understand, what exactly does it mean ! in the middle, thanks in advance
|
can somebody please explain the processing of the following command:
I can't understand, what exactly does it mean |
|||
|
|
|
The ! (cut) means if you got this far (successfully in the current goal), don't do any backtracking (consider alternative ways to satisfy the current goal) that might have been open before the cut's placement. In your example the cut is being used to tersely express how to define the Max of X and Y. That is, once you succeed with the subgoal The tricky thing here is the precedence of |
|||
|
|
|
I think the answered has been given quite clear. Well, I just conclude a bit from your sample. Here, we can "assume" that there are two rules there, which are
Why is it necessary to put that
Why does it happen? Because Prolog system finds every possible answers. When the |
||||
|
|
|
I found some question here: http://www.scribd.com/doc/21397685/PRolog-Cut very nice explanation |
|||
|
|