bugfix: remove typename in some typedef in EDO tests under Eigen3

This commit is contained in:
Johann Dreo 2012-10-02 17:26:50 +02:00
commit 7e4bc9f01c
2 changed files with 5 additions and 5 deletions

View file

@ -48,8 +48,8 @@ typedef EOT::AtomType AtomType;
#else
#ifdef WITH_EIGEN
#include <Eigen/Dense>
typedef typename edoNormalMulti<EOT>::Vector Vector;
typedef typename edoNormalMulti<EOT>::Matrix Matrix;
typedef edoNormalMulti<EOT>::Vector Vector;
typedef edoNormalMulti<EOT>::Matrix Matrix;
#endif
#endif

View file

@ -43,7 +43,7 @@ Authors:
typedef eoReal< eoMinimizingFitness > EOT;
typedef edoNormalMulti< EOT > Distrib;
typedef typename EOT::AtomType AtomType;
typedef EOT::AtomType AtomType;
#ifdef WITH_BOOST
#include <boost/numeric/ublas/vector.hpp>
@ -53,8 +53,8 @@ typedef typename EOT::AtomType AtomType;
#else
#ifdef WITH_EIGEN
#include <Eigen/Dense>
typedef typename edoNormalMulti<EOT>::Vector Vector;
typedef typename edoNormalMulti<EOT>::Matrix Matrix;
typedef edoNormalMulti<EOT>::Vector Vector;
typedef edoNormalMulti<EOT>::Matrix Matrix;
#endif
#endif