2010-01-10 07:15:06 +08:00
|
|
|
/*
|
|
|
|
* LieBaseImplementations.h
|
|
|
|
*
|
|
|
|
* Created on: Jan 9, 2010
|
|
|
|
* Author: richard
|
|
|
|
*/
|
|
|
|
|
2010-08-11 03:50:12 +08:00
|
|
|
#pragma once
|
|
|
|
|
2010-08-20 01:23:19 +08:00
|
|
|
#include <gtsam/base/Lie.h>
|
2010-01-10 07:15:06 +08:00
|
|
|
|
2010-01-16 09:16:59 +08:00
|
|
|
#define INSTANTIATE_LIE(T) \
|
2010-08-27 03:55:40 +08:00
|
|
|
template T between_default(const T&, const T&); \
|
|
|
|
template Vector logmap_default(const T&, const T&); \
|
|
|
|
template T expmap_default(const T&, const Vector&); \
|
2010-01-16 09:16:59 +08:00
|
|
|
template bool equal(const T&, const T&, double); \
|
|
|
|
template bool equal(const T&, const T&); \
|
|
|
|
template class Lie<T>;
|
|
|
|
|