mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
moved purely "array" related stuff to a new module Array.
This include: - cwise Pow,Sin,Cos,Exp... - cwise Greater and other comparison operators - .any(), .all() and partial reduction - random
This commit is contained in:
17
Eigen/Array
Normal file
17
Eigen/Array
Normal file
@@ -0,0 +1,17 @@
|
||||
#ifndef EIGEN_ARRAY_MODULE_H
|
||||
#define EIGEN_ARRAY_MODULE_H
|
||||
|
||||
#include "Core"
|
||||
|
||||
namespace Eigen {
|
||||
|
||||
#include "src/Array/ArrayBase.h"
|
||||
#include "src/Array/CwiseOperators.h"
|
||||
#include "src/Array/Functors.h"
|
||||
#include "src/Array/AllAndAny.h"
|
||||
#include "src/Array/PartialRedux.h"
|
||||
#include "src/Array/Random.h"
|
||||
|
||||
} // namespace Eigen
|
||||
|
||||
#endif // EIGEN_ARRAY_MODULE_H
|
||||
Reference in New Issue
Block a user