gtsam/gtsam/base/LieScalar.cpp

18 lines
265 B
C++
Raw Normal View History

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