release/4.3a0
Chris Beall 2010-10-21 20:26:26 +00:00
parent 8e40b28426
commit 48be990ef1
1 changed files with 0 additions and 16 deletions

View File

@ -34,22 +34,6 @@ namespace gtsam {
template <class Derived>
class Testable {
public:
// virtual ~Testable() {}
/**
* print
* @param s optional string naming the object
*/
// virtual void print(const std::string& name) const = 0;
/**
* equality up to tolerance
* tricky to implement, see NonlinearFactor1 for an example
* equals is not supposed to print out *anything*, just return true|false
*/
// virtual bool equals(const Derived& expected, double tol) const = 0;
private:
static void concept(const Derived& d) {
const Derived *const_derived = static_cast<Derived*>(&d);