mirror of https://github.com/CGAL/cgal
22 lines
342 B
C++
22 lines
342 B
C++
|
|
namespace CGAL {
|
|
|
|
/*!
|
|
\ingroup PkgSolver
|
|
|
|
The class `Eigen_svd` provides an algorithm to solve in the least
|
|
square sense a linear system with a singular value decomposition using
|
|
\ref thirdpartyEigen. The field type is `double`.
|
|
|
|
\cgalModels `SvdTraits`
|
|
|
|
*/
|
|
|
|
class Eigen_svd {
|
|
public:
|
|
|
|
|
|
|
|
}; /* end Eigen_svd */
|
|
} /* end namespace CGAL */
|