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

@ -155,6 +155,10 @@ public:
{ {
} }
Polyhedron_vertex_deformation_index_map()
{
}
}; };
template<class P> template<class P>
@ -191,6 +195,8 @@ public:
Polyhedron_edge_deformation_index_map(const P&) Polyhedron_edge_deformation_index_map(const P&)
{} {}
Polyhedron_edge_deformation_index_map() {}
}; };
namespace boost { namespace boost {

View File

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