From bf315781af3dbca8ebc331e622f943ff51331b51 Mon Sep 17 00:00:00 2001 From: Frank Dellaert Date: Sun, 10 Jan 2010 12:35:41 +0000 Subject: [PATCH] defined global functions in Lie.h rather than here --- cpp/Vector.h | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/cpp/Vector.h b/cpp/Vector.h index 21dc2e00e..dd6bdcb98 100644 --- a/cpp/Vector.h +++ b/cpp/Vector.h @@ -209,21 +209,6 @@ Vector concatVectors(size_t nrVectors, ...); */ Vector rand_vector_norm(size_t dim, double mean = 0, double sigma = 1); -/** - * Exponential map, just returns the vector itself - */ -template<> inline Vector expmap(const Vector& v) { return v; } - -/** - * Compose, adds vectors - */ -inline Vector compose(const Vector& v0, const Vector& v1) { return v0+v1; } - -/** - * Inverse, negates the vector - */ -inline Vector inverse(const Vector& v) { return -v; } - } // namespace gtsam static boost::minstd_rand generator(42u);