Skip to content
Snippets Groups Projects
Commit 28e2719e authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[ParL] Add missing explicit template inst. decls.

parent 4ee6f9f8
No related branches found
No related tags found
No related merge requests found
...@@ -50,4 +50,14 @@ private: ...@@ -50,4 +50,14 @@ private:
std::array<Parameter<double> const*, 3> _base; std::array<Parameter<double> const*, 3> _base;
}; };
extern template Eigen::Matrix<double, 2, 2> CoordinateSystem::rotateTensor<2>(
std::vector<double> const& values, SpatialPosition const& pos) const;
extern template Eigen::Matrix<double, 3, 3> CoordinateSystem::rotateTensor<3>(
std::vector<double> const& values, SpatialPosition const& pos) const;
extern template Eigen::Matrix<double, 2, 2>
CoordinateSystem::rotateDiagonalTensor<2>(std::vector<double> const& values,
SpatialPosition const& pos) const;
extern template Eigen::Matrix<double, 3, 3>
CoordinateSystem::rotateDiagonalTensor<3>(std::vector<double> const& values,
SpatialPosition const& pos) const;
} // namespace ParameterLib } // namespace ParameterLib
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