Given the following facts and predicates :
sound(time1).
sound(time2).
sun(time3).
relax(X):-sound(X),!,sun(X).
relax(_):-sun(_).
When executing relax(S). I'd expect to get S=time1 due to the ! , that says (correct me if I'm wrong) , that if 'X' is satisfied , then stop the backtracking .
Here is the trace :
3 ?- trace.
true.
[trace] 3 ?- relax(S).
Call: (6) relax(_G1831) ? creep
Call: (7) sound(_G1831) ? creep
Exit: (7) sound(time1) ? creep
Call: (7) sun(time1) ? creep
Fail: (7) sun(time1) ? creep
Fail: (6) relax(_G1831) ? creep
false.
So why does prolog also checks sun(time1) , even though that it met the exclamation mark after being satisfied by sound(X) (because sound(time1) is a fact) .
Regards