gtsam/cpp/testVSLAMFactor.cpp

24 lines
626 B
C++
Raw Normal View History

2009-08-22 06:23:24 +08:00
/**********************************************************
Written by Alireza Fathi, 2nd of April 2009
**********************************************************/
#include <iostream>
#include <CppUnitLite/TestHarness.h>
#include "numericalDerivative.h"
#include "NonlinearFactorGraph.h"
#include "VSLAMFactor.h"
using namespace std;
using namespace gtsam;
// TODO: test VSLAMFactor !!!
/* ************************************************************************* */
int main() {
TestResult tr;
TestRegistry::runAllTests(tr);
return 0;
}
/* ************************************************************************* */