- math - Prolog =:= operator - Stack Overflow
There are some special operators in Prolog, one of them is is, however, recently I came across the =:= operator and have no idea how it works Can someone explain what this operator does, and also
- What does \\+ mean in Prolog? - Stack Overflow
What does \+ mean in Prolog? Asked 15 years, 8 months ago Modified 7 years, 3 months ago Viewed 61k times
- Whats the - gt; operator in Prolog and how can I use it?
I've read about it in a book but it wasn't explained at all I also never saw it in a program Is part of Prolog syntax? What's it for? Do you use it?
- What is the difference between == and = in Prolog?
The = "operator" in Prolog is actually a predicate (with infix notation) = 2 that succeeds when the two terms are unified Thus X = 2 or 2 = X amount to the same thing, a goal to unify X with 2
- Not equal and not unify in Prolog - Stack Overflow
Not equal and not unify in Prolog Asked 12 years, 11 months ago Modified 9 years, 7 months ago Viewed 45k times
- Not equal sign in Visual Prolog? - Stack Overflow
Documentation for the second variant pointed out by Kaarel can be found in this Visual Prolog reference page However the problem with your code goes a little deeper
- operators - @ lt; Symbol In Prolog - Stack Overflow
However, using @< 2 you can compare lots of different types of objects in prolog The comparison evaluation follows the rules described in the link that @Ankur gave To understand these rules, you'll need to know what Prolog terminology means, such as term, functor, atom, etc (see, for example, Prolog Terms) Looking at some examples: ?- a @< b
- if in prolog? - Stack Overflow
Is there a way to do an if in prolog, e g if a variable is 0, then to do some actions (write text to the terminal) An else isn't even needed, but I can't find any documentation of if
|