5
votes
2answers
292 views
How can I implement the unification algorithm in a language like Java or C#?
I'm working through my AI textbook I got and I've come to the last homework problem for my section:
"Implement the Unification Algorithm outlined on page 69 in any language of your choice." …
0
votes
1answer
107 views
How can I modify the backtracking algorithm so it can run on “and/or” graphs?
In Artificial Intelligence we studied the backtracking algorithm. Here is the pseudocode our book offers:
function backtrack;
begin
SL:= [Start]; NSL := [Start]; DE := [] CS := …
