agg.util.csp
Interface SearchStrategy
- All Known Implementing Classes:
- Search_BreadthFirst
public interface SearchStrategy
An interface for algorithms calculating search plans (variable orderings
given by a list of queries).
Method Summary |
java.util.Vector<Query> |
execute(CSP csp)
Return a list of queries representing a search plan. |
execute
java.util.Vector<Query> execute(CSP csp)
- Return a list of queries representing a search plan. A variable ordering
is given by the target variables of the queries, and the domain for such
a target variable is given by its query. Vector elements are of type
Query
.
- See Also:
Query