Re-enabled concept checks
parent
6ea60745eb
commit
02067dd5d0
|
|
@ -31,6 +31,10 @@ namespace gtsam {
|
|||
template<class VALUE>
|
||||
class BetweenFactor: public NoiseModelFactor2<VALUE, VALUE> {
|
||||
|
||||
// Check that VALUE type is a testable Lie group
|
||||
BOOST_CONCEPT_ASSERT((IsTestable<VALUE>));
|
||||
BOOST_CONCEPT_ASSERT((IsLieGroup<VALUE>));
|
||||
|
||||
public:
|
||||
|
||||
typedef VALUE T;
|
||||
|
|
@ -42,11 +46,6 @@ namespace gtsam {
|
|||
|
||||
VALUE measured_; /** The measurement */
|
||||
|
||||
/** concept check by type */
|
||||
// TODO(ASL) Reenable
|
||||
//GTSAM_CONCEPT_LIE_TYPE(T)
|
||||
//GTSAM_CONCEPT_TESTABLE_TYPE(T)
|
||||
|
||||
public:
|
||||
|
||||
// shorthand for a smart pointer to a factor
|
||||
|
|
|
|||
Loading…
Reference in New Issue