Files
eigen/src/Core.h
Benoit Jacob f355ef2df0 Merge WrapArray into FromArray. Less code. The downside is that we're using one more
const_cast. But I think that anyway trying to maintain const strictness in Eigen2 is not
worth the hassle.

Konstantin: so the code snippet I sent you won't work anymore, replace wrapArray with fromArray.

CCMAIL:konst.heil@stud.uni-heidelberg.de
2007-10-14 18:02:16 +00:00

35 lines
774 B
C++

#include <iostream>
#include <complex>
#include <cassert>
namespace Eigen {
#include "Core/Util.h"
#include "Core/NumTraits.h"
#include "Core/Object.h"
#include "Core/CopyHelper.h"
#include "Core/MatrixRef.h"
#include "Core/MatrixStorage.h"
#include "Core/Matrix.h"
#include "Core/Eval.h"
#include "Core/ScalarMultiple.h"
#include "Core/Sum.h"
#include "Core/Difference.h"
#include "Core/Product.h"
#include "Core/Opposite.h"
#include "Core/Row.h"
#include "Core/Column.h"
#include "Core/Block.h"
#include "Core/Minor.h"
#include "Core/Transpose.h"
#include "Core/Conjugate.h"
#include "Core/Trace.h"
#include "Core/Dot.h"
#include "Core/Random.h"
#include "Core/Zero.h"
#include "Core/Identity.h"
#include "Core/Fuzzy.h"
#include "Core/FromArray.h"
} // namespace Eigen