I've stumbled on a rather weird problem (to me).

Very easy, I want to an addition between 2 integers. I use the plus clause from swi

Now when I do this (I'm calculation something in a graph)

plus(LatestTime,LengthPath,TimeArrive),

The TimeArrive variable is a physical address instead of the answer. Now I've tried to make an other clause

myPlus(Var1,Var2,Result):-
    Result is Var1 + Var2.

And here is the same, so I'm starting to believe their is something wrong with my 2 input variables

LatestTime,LengthPath

However when I 'write' them I receive the integer instead of physical address.

Any clues? Because I'm out of idea's :)

link|improve this question
1  
I've fixed it with replacing the plus with a TimeArrive is LatestTime + LengthPath But still, I'm clueless about why prolog gave me a physical address instead of an integer. – Christophe Jan 10 at 20:21
1  
It's a bit hard to guess what's going wrong without the rest of the code; I guess that an if-structure is involved or some side-effects although I cannot see how replacing myPlus/3 fixed it – thanosQR Jan 10 at 21:29
What do you mean by a "physical address"? – larsmans Jan 11 at 14:43
I suspect that what you are seeing is not a "physical address" but the effect of asking for the value of an unbound (free) variable. Of course what you actually wrote in the question is "I receive the integer instead of physical address." This compounds the confusion as to what you want and what you are doing to attempt it. – hardmath Jan 12 at 14:25
If it is a reproducable file a bug: swi-prolog.org/Mailinglist.html – Cookie Monster Jan 14 at 16:16
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.