|
Symphony 1.0
|
#include "search.h"#include "utils.cpp"#include <queue>#include <memory>#include <iostream>#include <unordered_set>#include <algorithm>#include <vector>#include <functional>#include <omp.h>Go to the source code of this file.
Functions | |
| Search * | create_search (SearchAlgorithmIndex search_algorithm_index, Problem *problem) |
| Factory method to create a search object based on the specified search algorithm. | |
| Search * create_search | ( | SearchAlgorithmIndex | search_algorithm_index, |
| Problem * | problem | ||
| ) |
Factory method to create a search object based on the specified search algorithm.
| search_algorithm_index | The index of the search algorithm to use. |
| problem | The problem to solve. |
Definition at line 13 of file search.cpp.
References A_STAR, BEAM_SEARCH, and BREADTH_FIRST_SEARCH.
Referenced by run().