mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
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
35 lines
774 B
C++
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
|