We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42eba2a commit 29ffd96Copy full SHA for 29ffd96
bindings/Modules/src/SofaPython3/SofaLinearSystem/Binding_LinearSystem.cpp
@@ -60,7 +60,8 @@ template<class TBlock>
60
void bindLinearSystems(py::module &m)
61
{
62
using CRS = sofa::linearalgebra::CompressedRowSparseMatrix<TBlock>;
63
- using CRSLinearSystem = sofa::component::linearsystem::TypedMatrixLinearSystem<CRS, sofa::linearalgebra::FullVector<SReal> >;
+ using Real = typename CRS::Real;
64
+ using CRSLinearSystem = sofa::component::linearsystem::TypedMatrixLinearSystem<CRS, sofa::linearalgebra::FullVector<Real> >;
65
66
const std::string typeName = CRSLinearSystem::GetClass()->className + CRSLinearSystem::GetCustomTemplateName();
67
0 commit comments