2013-04-12 23:43:36 +08:00
|
|
|
/*
|
|
|
|
|
* LieScalar.cpp
|
|
|
|
|
*
|
|
|
|
|
* Created on: Apr 12, 2013
|
|
|
|
|
* Author: thduynguyen
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-02-25 10:57:50 +08:00
|
|
|
#include <gtsam/base/LieScalar_Deprecated.h>
|
2013-04-12 23:43:36 +08:00
|
|
|
|
|
|
|
|
namespace gtsam {
|
|
|
|
|
void LieScalar::print(const std::string& name) const {
|
|
|
|
|
std::cout << name << ": " << d_ << std::endl;
|
|
|
|
|
}
|
|
|
|
|
}
|