turbo-prolog Questions
2
Solved
This is an algorithm to append together two lists:
Domains
list= integer*
Predicates
nondeterm append(list, list, list)
Clauses
append([], List, List) :- !.
append([H|L1], List2, [H|L3]) :- appe...
Digastric asked 16/5, 2012 at 13:50
2
I have a problem in my code with turbo prolog which searches all paths and the shortest path in a graph between 2 nodes.
The problem that i have is to test if the node is in the list or not (exactl...
Middleoftheroader asked 1/4, 2010 at 22:22
1
© 2022 - 2024 — McMap. All rights reserved.