You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given the example ?- father(X) = X. it states that:
Because the left hand term is the variable X , by clause 2 it decides that the terms do unify, and (in accordance with clause 2) instantiates X to the right hand side, namely father(X) .
I think it should say:
Because the right hand term is the variable X , by clause 2 it decides that the terms do unify, and (in accordance with clause 2) instantiates X to the left hand side, namely father(X) .
Left and right seems to be swapped.
The text was updated successfully, but these errors were encountered:
Given the example
?- father(X) = X.
it states that:I think it should say:
Left and right seems to be swapped.
The text was updated successfully, but these errors were encountered: