Skip to content
Snippets Groups Projects
Verified Commit 39378677 authored by Justin Carpentier's avatar Justin Carpentier Committed by Justin Carpentier
Browse files

[Math] Partial specilazation of pi constant for CppAD::AD types

parent de604089
No related branches found
No related tags found
No related merge requests found
......@@ -22,6 +22,23 @@
#include <math.h>
#include <boost/math/constants/constants.hpp>
#ifdef PINOCCHIO_WITH_CPPAD_SUPPORT
namespace boost
{
namespace math
{
namespace constants
{
namespace detail
{
template<typename Scalar>
struct constant_pi< CppAD::AD<Scalar> > : constant_pi<Scalar> {};
}
}
}
}
#endif
namespace se3
{
///
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment