A logic programming language.
Questions tagged [prolog]
19 questions
0
votes
1 answer
How should I draw the (special) is predicate, which is used for arithmetic, in a Prolog search tree?
I normally construct my search tree by following the common convention:
Place Queries or Goals in need of unification inside node boxes.
Write down decision points on the edges, where Prolog has assigned an element to a variable.
Leaf nodes which…
user110995