In Artificial Intelligence we studied the backtracking algorithm. Here is the pseudocode our book offers:
function backtrack;
begin
SL:= [Start]; NSL := [Start]; DE := [] CS := Start;
while NSL != [] do
begin
if CS = goal (or meets goal description)
then return SL;
if CS has no children (excluding nodes already on DE, SL, and NSL)
then begin
while SL is not empty and CS = the first element of SL do
begin
add CS to DE
remove first element froM SL;
remove first element from NSL;
CS := first element of NSL;
end
add CS to SL;
end
else begin
place children of CS (except nodes already on DE, SL or NSL) on NSL;
CS := first element of NSL;
add CS to SL;
end
end
return FAIL;
end
- SL: the state list, lists the states in the current path being tried.
- NSL: the new state list, contains nodes awaiting evaluation.
- DE: dead ends, lists states whose descendants have failed to contain a goal node.
- CS: the current state
I understand this and have not only hand run the algorithm but written programs in class that utilize it as well.
However, now we have been tasked with modifying it so it can be run on "and/or" graphs.
(Example and/or graph)

The textbook had the following sentence talking about backtracking and/or graphs:
"And/or graph search requires only slightly more record keeping than search in regular graphs, an example of which was the backtrack algorithm. The or descendants are checked as they were in backtrack: once a path is found connecting a goal to a start node along or nodes, the problem will be solved. If a path leads to a failure, the algorithm may backtrack and try another branch. In searching and nodes, however, all of the and descendants of a node must be solved (or proved true) to solve the parent node.
While I understand what "and/or" graphs are, I'm having trouble modifying the above backtracking algorithm so that it works with "and/or" graphs. As the book says, if they are "OR" nodes, it should proceed as normal but what I'm having difficulty with are "and" nodes. Do I need to do something like:
if CS has children and is "AND" node then
resolve all children of CS
if children are all true, add children to NSL
else backtrack?
This is as close as I can get conceptually in my head, but it still doesn't feel right. Can anyone help me flesh it out a little further?
