An and–or tree is a graphical representation of the reduction of problems (or goals) to conjunctions and disjunctions of subproblems (or subgoals).
Example
The and–or tree:
represents the search space for solving the problem P, using the goal-reduction methods:
- P if Q and R
- P if S
- Q if T
- Q if U
Definitions
Given an initial problem P0 and set of problem solving methods of the form:
- P if P1 and … and Pn
the associated and–or tree is a set of labelled nodes such that:
- The root of the tree is a node labelled by P0.
- For every node N labelled by a problem or sub-problem P and for every method of the form P if P1 and … and Pn, there exists a set of children nodes N1, …, Nn of the node N, such that each node Ni is labelled by Pi. The nodes are conjoined by an arc, to distinguish them from children of N that might
…
Source: Wikipedia
No Comments yet!