fix compilation

This commit is contained in:
Gaël Guennebaud 2011-09-20 09:24:55 +00:00
parent ac17a0175d
commit 2a903f8d05
2 changed files with 7 additions and 1 deletions

View File

@ -154,6 +154,10 @@ public:
Polyhedron_vertex_deformation_index_map(const P&)
{
}
Polyhedron_vertex_deformation_index_map()
{
}
};
@ -190,6 +194,8 @@ public:
Polyhedron_edge_deformation_index_map(const P&)
{}
Polyhedron_edge_deformation_index_map() {}
};

View File

@ -259,7 +259,7 @@ public:
bool solve (const Vector& B, Vector& X)
{
int success;
success = taucs_ooc_solve_llt(matrix.get(),
success = taucs_ooc_solve_llt(mtr.get(),
X.get_taucs_vector(),
(T*) B.get_taucs_vector());
if (success != TAUCS_SUCCESS)