conditional build scripts with boost xor eigen
This commit is contained in:
parent
42be24628e
commit
766ac33c5a
11 changed files with 134 additions and 14 deletions
|
|
@ -32,6 +32,9 @@ Authors:
|
|||
#include <limits>
|
||||
|
||||
#include <edoSampler.h>
|
||||
|
||||
#ifdef WITH_BOOST
|
||||
|
||||
#include <utils/edoCholesky.h>
|
||||
#include <boost/numeric/ublas/lu.hpp>
|
||||
#include <boost/numeric/ublas/symmetric.hpp>
|
||||
|
|
@ -84,4 +87,11 @@ protected:
|
|||
cholesky::CholeskyLLT<AtomType> _cholesky;
|
||||
};
|
||||
|
||||
#else
|
||||
#ifdef WITH_EIGEN
|
||||
|
||||
#endif // WITH_EIGEN
|
||||
#endif // WITH_BOOST
|
||||
|
||||
|
||||
#endif // !_edoSamplerNormalMulti_h
|
||||
|
|
|
|||
Reference in a new issue