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

core: minor clean

parent 980055ef
No related branches found
No related tags found
No related merge requests found
...@@ -17,13 +17,12 @@ namespace eigenpy ...@@ -17,13 +17,12 @@ namespace eigenpy
using namespace Eigen; using namespace Eigen;
namespace bp = boost::python; namespace bp = boost::python;
EigenSolverVisitor<Eigen::MatrixXd>::expose("EigenSolver"); EigenSolverVisitor<MatrixXd>::expose("EigenSolver");
SelfAdjointEigenSolverVisitor<Eigen::MatrixXd>::expose("SelfAdjointEigenSolver"); SelfAdjointEigenSolverVisitor<MatrixXd>::expose("SelfAdjointEigenSolver");
LLTSolverVisitor<Eigen::MatrixXd>::expose("LLT"); LLTSolverVisitor<MatrixXd>::expose("LLT");
LDLTSolverVisitor<Eigen::MatrixXd>::expose("LDLT"); LDLTSolverVisitor<MatrixXd>::expose("LDLT");
{ {
using namespace Eigen;
bp::enum_<DecompositionOptions>("DecompositionOptions") bp::enum_<DecompositionOptions>("DecompositionOptions")
.value("ComputeFullU",ComputeFullU) .value("ComputeFullU",ComputeFullU)
.value("ComputeThinU",ComputeThinU) .value("ComputeThinU",ComputeThinU)
......
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