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
|
|
@ -28,10 +28,13 @@ Copyright (C) 2010 Thales group
|
|||
#ifndef _edoNormalMulti_h
|
||||
#define _edoNormalMulti_h
|
||||
|
||||
#include "edoDistrib.h"
|
||||
|
||||
#ifdef WITH_BOOST
|
||||
|
||||
#include <boost/numeric/ublas/symmetric.hpp>
|
||||
#include <boost/numeric/ublas/lu.hpp>
|
||||
|
||||
#include "edoDistrib.h"
|
||||
|
||||
namespace ublas = boost::numeric::ublas;
|
||||
|
||||
|
|
@ -70,4 +73,11 @@ private:
|
|||
ublas::symmetric_matrix< AtomType, ublas::lower > _varcovar;
|
||||
};
|
||||
|
||||
|
||||
#else
|
||||
#ifdef WITH_EIGEN
|
||||
|
||||
#endif // WITH_EIGEN
|
||||
#endif // WITH_BOOST
|
||||
|
||||
#endif // !_edoNormalMulti_h
|
||||
|
|
|
|||
Reference in a new issue