http://www.csupomona.edu/~jrfisher/www/prolog_tutorial/2_1.html

So on that tutorial where it has:

conflict(Coloring) :- 
   adjacent(X,Y), 
   color(X,Color,Coloring), 
   color(Y,Color,Coloring). 

Am I understanding this correctly, that Color is a variable and is set to a value after the first call to color and then that value is used in the second call to color?

link|improve this question

75% accept rate
feedback

3 Answers

up vote 1 down vote accepted

Variables in Prolog:

  1. All variables and arguments are local in scope to the predicate in which they are declared (aka first used). Excepting of course that variables may be passed as arguments (essentially "by reference") to another predicate.

  2. Prolog variables are only "variable" until bound (unified) with something else. At that point they cease to be variable and become one with that with which they were unified. Hence the use of the term "unification": to unify is to become one.

  3. Backtracking, of course, undoes any unification that might have occurred, returning things to the status quo ante as it were.

  4. The special variable _ is the "anonymous variable". Each use, even within the same clause of a predicate is independent. For instance, given the facts

    letter(a).
    letter(b).
    letter(c).
    
    digit(1).
    digit(2).
    digit(3).
    

the predicate:

foo :- letter(A),number(A).

fails, whilst

foo :- letter(_),number(_).

will succeed (9 times, with backtracking).

link|improve this answer
feedback

Color it's a variable, but we can't say if it will get a value (in Prolog this is called binding) from the first or the second call to color/3. All depends on the color/3 definition. But given this code it's probable that your assumption it's ok.

link|improve this answer
feedback

Variables in Prolog are not "set" to a value; rather, they are unified with, or matched to a value. What this means is that Prolog interpreter establishes a temporary link between a variable and its value, and uses that value in all places the variable is mentioned until it backtracks past the binding spot for that variable, at which point the variable becomes unbound again.

Your explanation about what happens to Color is right most of the times: variable Color usually comes back from the first color rule. But there are cases when a variable may remain unbound after being passed to a rule, for example if the variable is unified to another unbound variable, or a _ variable.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.