From 5bd9ffc49e7ac6127d3bab4482852dd821f2af1b Mon Sep 17 00:00:00 2001 From: Stephen Williams Date: Wed, 8 May 2013 13:23:27 +0000 Subject: [PATCH] Changed EquivNavFactor test from '.h' to '.cpp' so it will actually work --- ...r_GlobalVel.h => testEquivInertialNavFactor_GlobalVel.cpp} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename gtsam/navigation/tests/{testEquivInertialNavFactor_GlobalVel.h => testEquivInertialNavFactor_GlobalVel.cpp} (98%) diff --git a/gtsam/navigation/tests/testEquivInertialNavFactor_GlobalVel.h b/gtsam/navigation/tests/testEquivInertialNavFactor_GlobalVel.cpp similarity index 98% rename from gtsam/navigation/tests/testEquivInertialNavFactor_GlobalVel.h rename to gtsam/navigation/tests/testEquivInertialNavFactor_GlobalVel.cpp index db450216c..6b5eb29f0 100644 --- a/gtsam/navigation/tests/testEquivInertialNavFactor_GlobalVel.h +++ b/gtsam/navigation/tests/testEquivInertialNavFactor_GlobalVel.cpp @@ -55,10 +55,10 @@ TEST( EquivInertialNavFactor_GlobalVel, Constructor) SharedGaussian imu_model = noiseModel::Gaussian::Covariance(EquivCov_Overall.block(0,0,9,9)); // Constructor - EquivInertialNavFactor_GlobalVel( + EquivInertialNavFactor_GlobalVel factor( poseKey1, velKey1, biasKey1, poseKey2, velKey2, delta_pos_in_t0, delta_vel_in_t0, delta_angles, delta_t, - g, rho, omega_earth, imu_model, Jacobian_wrt_t0_Overall, bias1)); + g, rho, omega_earth, imu_model, Jacobian_wrt_t0_Overall, bias1); }