[BUGFIX] Fixed Linker Errors in Release Mode
parent
482144821b
commit
0987ae259c
|
@ -19,6 +19,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <gtsam_unstable/linear/LinearInequality.h>
|
#include <gtsam_unstable/linear/LinearInequality.h>
|
||||||
|
#include <gtsam/inference/FactorGraph-inst.h>
|
||||||
#include <gtsam/linear/VectorValues.h>
|
#include <gtsam/linear/VectorValues.h>
|
||||||
#include <gtsam/inference/FactorGraph.h>
|
#include <gtsam/inference/FactorGraph.h>
|
||||||
|
|
||||||
|
@ -38,8 +39,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
/** equals */
|
/** equals */
|
||||||
bool equals(const InequalityFactorGraph& other,
|
bool equals(const InequalityFactorGraph& other, double tol = 1e-9) const {
|
||||||
double tol = 1e-9) const {
|
|
||||||
return Base::equals(other, tol);
|
return Base::equals(other, tol);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -57,8 +57,8 @@ public:
|
||||||
};
|
};
|
||||||
|
|
||||||
/// traits
|
/// traits
|
||||||
template<> struct traits<InequalityFactorGraph> : public Testable<
|
template<>
|
||||||
InequalityFactorGraph> {
|
struct traits<InequalityFactorGraph> : public Testable<InequalityFactorGraph> {
|
||||||
};
|
};
|
||||||
|
|
||||||
} // \ namespace gtsam
|
} // \ namespace gtsam
|
||||||
|
|
Loading…
Reference in New Issue