mirror of https://github.com/CGAL/cgal
Needs Eigen 3.3 or greater
This commit is contained in:
parent
1351746df0
commit
fd706aa390
|
|
@ -39,7 +39,7 @@ step will roughly double the overall preprocessing cost.
|
|||
In the next section we give some examples. Section \ref sec_HM_definitions presents
|
||||
the mathematical theory of the Heat method. The last section is about the \ref sec_HM_history.
|
||||
|
||||
Note that this package depends on the third party \ref thirdpartyEigen library, or another
|
||||
Note that this package depends on the third party \ref thirdpartyEigen library (3.3 or greater), or another
|
||||
model of the concept `SparseLinearAlgebraWithFactorTraits_d`.
|
||||
This implementation is based on \cgalCite{cgal:cww-ghnac-13} and \cgalCite{cgal:fsbs-acidt-06}
|
||||
|
||||
|
|
|
|||
|
|
@ -32,12 +32,12 @@ if ( NOT Boost_FOUND )
|
|||
endif()
|
||||
|
||||
|
||||
find_package(Eigen3 3.2.0)
|
||||
find_package(Eigen3 3.3.0)
|
||||
|
||||
if (EIGEN3_FOUND)
|
||||
include( ${EIGEN3_USE_FILE} )
|
||||
else()
|
||||
message(STATUS "This project requires the Boost library, and will not be compiled.")
|
||||
message(STATUS "This project requires the Eigen library (3.3 or greater), and will not be compiled.")
|
||||
|
||||
return()
|
||||
endif()
|
||||
|
|
|
|||
|
|
@ -32,12 +32,12 @@ if ( NOT Boost_FOUND )
|
|||
endif()
|
||||
|
||||
|
||||
find_package(Eigen3 3.2.0)
|
||||
find_package(Eigen3 3.3.0)
|
||||
|
||||
if (EIGEN3_FOUND)
|
||||
include( ${EIGEN3_USE_FILE} )
|
||||
else()
|
||||
message(STATUS "This project requires the Boost library, and will not be compiled.")
|
||||
message(STATUS "This project requires the Eigen library (3.3 or greater), and will not be compiled.")
|
||||
|
||||
return()
|
||||
endif()
|
||||
|
|
|
|||
Loading…
Reference in New Issue