stripstream.algorithms.search package¶
Submodules¶
stripstream.algorithms.search.bfs module¶
-
stripstream.algorithms.search.bfs.
get_bfs
(max_time=30, max_cost=inf, verbose=False)[source]¶ Returns a breadth-first search (BFS) search function configured using the arguments.
Parameters: - max_time – a numeric constant for the maximum BFS search time.
- max_cost – a numeric constant for the maximum BFS solution cost.
- verbose – a boolean flag toggling the amount of terminal output
Returns: function wrapper around
bfs
stripstream.algorithms.search.fast_downward module¶
-
stripstream.algorithms.search.fast_downward.
get_fast_downward
(config='wastar2', max_time=30, max_cost=inf, verbose=False)[source]¶ Returns a FastDownward (FD) search function configured using the arguments.
Parameters: - config – a string that is a key of
search_options
giving the FD configuration. - max_time – a numeric constant for the maximum FD search time.
- max_cost – a numeric constant for the maximum FD solution cost.
- verbose – a boolean flag toggling the amount of terminal output
Returns: function wrapper around
fast_downward()
- config – a string that is a key of