Exemplo n.º 1
0
 bool operator> (const node_t& n2) const
 {
     return cost_f() < n2.cost_f();
 }
Exemplo n.º 2
0
 bool operator< (const node_t& n2) const
 {
     return cost_f() > n2.cost_f();
 }