Rename eigen_sparse_solvers.cpp by sparse_solvers.cpp (documentation is generic)

This commit is contained in:
Simon Giraudot 2015-08-26 15:16:45 +02:00
parent 8a46d3cd5e
commit b2897fd691
4 changed files with 4 additions and 4 deletions

View File

@ -50,7 +50,7 @@ field type is `double`. We provide two models for this concept:
Here is a simple example that shows how to handle matrices, vectors Here is a simple example that shows how to handle matrices, vectors
and this solver: and this solver:
\cgalExample{Solver_interface/singular_value_decomposition.cpp} \cgalExample{Solver_interface/*$singular_value_decomposition.cpp}
@ -85,7 +85,7 @@ typedef CGAL::Eigen_solver_traits< Eigen::SimplicialCholesky<EigenMatrix> > Dire
Here is an example that shows how to fill the sparse matrix and call Here is an example that shows how to fill the sparse matrix and call
the solver: the solver:
\cgalExample{Solver_interface/eigen_sparse_solvers.cpp} \cgalExample{Solver_interface/sparse_solvers.cpp}

View File

@ -1,5 +1,5 @@
/*! /*!
\example Solver_interface/diagonalize_matrix.cpp \example Solver_interface/diagonalize_matrix.cpp
\example Solver_interface/singular_value_decomposition.cpp \example Solver_interface/singular_value_decomposition.cpp
\example Solver_interface/eigen_sparse_solvers.cpp \example Solver_interface/sparse_solvers.cpp
*/ */

View File

@ -26,7 +26,7 @@ if ( CGAL_FOUND )
create_single_source_cgal_program( "singular_value_decomposition.cpp" ) create_single_source_cgal_program( "singular_value_decomposition.cpp" )
create_single_source_cgal_program( "diagonalize_matrix.cpp" ) create_single_source_cgal_program( "diagonalize_matrix.cpp" )
create_single_source_cgal_program( "eigen_sparse_solvers.cpp" ) create_single_source_cgal_program( "sparse_solvers.cpp" )
else() else()