add != to TypedSymbol
parent
c343cf403e
commit
c1baca1b29
|
@ -55,6 +55,7 @@ namespace gtsam {
|
||||||
|
|
||||||
bool operator< (const TypedSymbol& compare) const { return j_<compare.j_;}
|
bool operator< (const TypedSymbol& compare) const { return j_<compare.j_;}
|
||||||
bool operator== (const TypedSymbol& compare) const { return j_==compare.j_;}
|
bool operator== (const TypedSymbol& compare) const { return j_==compare.j_;}
|
||||||
|
bool operator!= (const TypedSymbol& compare) const { return j_!=compare.j_;}
|
||||||
int compare(const TypedSymbol& compare) const {return j_-compare.j_;}
|
int compare(const TypedSymbol& compare) const {return j_-compare.j_;}
|
||||||
|
|
||||||
// Testable Requirements
|
// Testable Requirements
|
||||||
|
|
Loading…
Reference in New Issue