spot
1.0
|
Strict Weak Ordering for shared_state
(shared_ptr<const state*>).This is meant to be used as a comparison functor for STL map
whose key are of type shared_state
.
More...
#include <tgba/state.hh>
Public Member Functions | |
bool | operator() (shared_state left, shared_state right) const |
Strict Weak Ordering for shared_state
(shared_ptr<const state*>).
This is meant to be used as a comparison functor for STL map
whose key are of type shared_state
.
For instance here is how one could declare a map of \c shared_state. @code
// Remember how many times each state has been visited. std::map<shared_state, int, spot::state_shared_ptr_less_than> seen;
|
inline |