File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
include/nanoeigenpy/decompositions/sparse Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 11// / Copyright 2025 INRIA
22#pragma once
33
4- #include " nanoeigenpy/decompositions/base.hpp"
54#include " nanoeigenpy/decompositions/sparse/SparseSolverBase.hpp"
65
76#include < Eigen/SparseCholesky>
@@ -27,7 +26,6 @@ struct SimplicialCholeskyVisitor : nb::def_visitor<SimplicialCholeskyVisitor> {
2726 " This function is particularly useful when solving for several "
2827 " problems having the same structure." )
2928
30- .def (EigenBaseVisitor ())
3129 .def (SparseSolverBaseVisitor ())
3230
3331 .def (
@@ -58,6 +56,8 @@ struct SimplicialCholeskyVisitor : nb::def_visitor<SimplicialCholeskyVisitor> {
5856 " which the symbolic decomposition has been performed.\n "
5957 " See also analyzePattern()." )
6058
59+ .def (" rows" , &Solver::rows)
60+ .def (" cols" , &Solver::cols)
6161 .def (" info" , &Solver::info,
6262 " NumericalIssue if the input contains INF or NaN values or "
6363 " overflow occured. Returns Success otherwise." )
You can’t perform that action at this time.
0 commit comments