mirror of https://github.com/CGAL/cgal
fix compilation
This commit is contained in:
parent
ac17a0175d
commit
2a903f8d05
|
|
@ -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() {}
|
||||
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue