2008-01-11 15:16:18 +08:00
|
|
|
// This file is part of Eigen, a lightweight C++ template library
|
|
|
|
|
// for linear algebra. Eigen itself is part of the KDE project.
|
|
|
|
|
//
|
|
|
|
|
// Copyright (C) 2006-2008 Benoit Jacob <jacob@math.jussieu.fr>
|
|
|
|
|
//
|
2008-02-28 23:44:45 +08:00
|
|
|
// Eigen is free software; you can redistribute it and/or
|
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
2008-03-03 19:02:52 +08:00
|
|
|
// License as published by the Free Software Foundation; either
|
2008-02-28 23:44:45 +08:00
|
|
|
// version 3 of the License, or (at your option) any later version.
|
|
|
|
|
//
|
|
|
|
|
// Alternatively, you can redistribute it and/or
|
|
|
|
|
// modify it under the terms of the GNU General Public License as
|
2008-03-03 19:02:52 +08:00
|
|
|
// published by the Free Software Foundation; either version 2 of
|
2008-02-28 23:44:45 +08:00
|
|
|
// the License, or (at your option) any later version.
|
2008-01-11 15:16:18 +08:00
|
|
|
//
|
|
|
|
|
// Eigen is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
2008-02-28 23:44:45 +08:00
|
|
|
// FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License or the
|
|
|
|
|
// GNU General Public License for more details.
|
2008-01-11 15:16:18 +08:00
|
|
|
//
|
2008-03-03 19:02:52 +08:00
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
2008-02-28 23:44:45 +08:00
|
|
|
// License and a copy of the GNU General Public License along with
|
|
|
|
|
// Eigen. If not, see <http://www.gnu.org/licenses/>.
|
2008-01-11 15:16:18 +08:00
|
|
|
|
|
|
|
|
#ifndef EIGEN_FORWARDDECLARATIONS_H
|
|
|
|
|
#define EIGEN_FORWARDDECLARATIONS_H
|
|
|
|
|
|
2008-03-13 01:17:36 +08:00
|
|
|
template<typename T> struct ei_traits;
|
2008-03-22 04:26:14 +08:00
|
|
|
template<typename Lhs, typename Rhs> struct ei_product_eval_mode;
|
2008-04-03 22:17:56 +08:00
|
|
|
template<typename T> struct NumTraits;
|
2008-03-11 01:23:11 +08:00
|
|
|
|
2008-04-14 16:20:24 +08:00
|
|
|
template<typename _Scalar, int _Rows, int _Cols,
|
2008-04-16 15:18:27 +08:00
|
|
|
unsigned int _SuggestedFlags = EIGEN_DEFAULT_MATRIX_FLAGS,
|
2008-04-14 16:20:24 +08:00
|
|
|
int _MaxRows = _Rows, int _MaxCols = _Cols>
|
|
|
|
|
class Matrix;
|
|
|
|
|
|
2008-05-14 16:20:15 +08:00
|
|
|
template<typename ExpressionType, unsigned int Added, unsigned int Removed> class Flagged;
|
2008-01-11 15:16:18 +08:00
|
|
|
template<typename MatrixType> class Minor;
|
2008-02-29 21:56:40 +08:00
|
|
|
template<typename MatrixType, int BlockRows=Dynamic, int BlockCols=Dynamic> class Block;
|
2008-01-11 15:16:18 +08:00
|
|
|
template<typename MatrixType> class Transpose;
|
|
|
|
|
template<typename MatrixType> class Conjugate;
|
2008-04-25 02:35:39 +08:00
|
|
|
template<typename NullaryOp, typename MatrixType> class CwiseNullaryOp;
|
|
|
|
|
template<typename UnaryOp, typename MatrixType> class CwiseUnaryOp;
|
|
|
|
|
template<typename BinaryOp, typename Lhs, typename Rhs> class CwiseBinaryOp;
|
2008-04-03 19:10:17 +08:00
|
|
|
template<typename Lhs, typename Rhs, int EvalMode=ei_product_eval_mode<Lhs,Rhs>::value> class Product;
|
2008-01-11 15:16:18 +08:00
|
|
|
template<typename CoeffsVectorType> class DiagonalMatrix;
|
|
|
|
|
template<typename MatrixType> class DiagonalCoeffs;
|
|
|
|
|
template<typename MatrixType> class Map;
|
2008-03-16 22:36:25 +08:00
|
|
|
template<int Direction, typename UnaryOp, typename MatrixType> class PartialRedux;
|
2008-05-27 13:47:30 +08:00
|
|
|
template<typename MatrixType, unsigned int Mode> class Part;
|
|
|
|
|
template<typename MatrixType, unsigned int Mode> class Extract;
|
|
|
|
|
|
2008-01-11 15:16:18 +08:00
|
|
|
|
2008-04-03 19:10:17 +08:00
|
|
|
template<typename Scalar> struct ei_scalar_sum_op;
|
|
|
|
|
template<typename Scalar> struct ei_scalar_difference_op;
|
|
|
|
|
template<typename Scalar> struct ei_scalar_product_op;
|
|
|
|
|
template<typename Scalar> struct ei_scalar_quotient_op;
|
|
|
|
|
template<typename Scalar> struct ei_scalar_opposite_op;
|
|
|
|
|
template<typename Scalar> struct ei_scalar_conjugate_op;
|
|
|
|
|
template<typename Scalar> struct ei_scalar_abs_op;
|
|
|
|
|
template<typename Scalar> struct ei_scalar_abs2_op;
|
|
|
|
|
template<typename Scalar> struct ei_scalar_sqrt_op;
|
|
|
|
|
template<typename Scalar> struct ei_scalar_exp_op;
|
|
|
|
|
template<typename Scalar> struct ei_scalar_log_op;
|
|
|
|
|
template<typename Scalar> struct ei_scalar_cos_op;
|
|
|
|
|
template<typename Scalar> struct ei_scalar_sin_op;
|
|
|
|
|
template<typename Scalar> struct ei_scalar_pow_op;
|
|
|
|
|
template<typename Scalar, typename NewType> struct ei_scalar_cast_op;
|
2008-04-09 20:31:55 +08:00
|
|
|
template<typename Scalar, bool IsVectorizable> struct ei_scalar_multiple_op;
|
2008-04-03 19:10:17 +08:00
|
|
|
template<typename Scalar> struct ei_scalar_quotient1_op;
|
|
|
|
|
template<typename Scalar> struct ei_scalar_min_op;
|
|
|
|
|
template<typename Scalar> struct ei_scalar_max_op;
|
2008-03-04 20:34:58 +08:00
|
|
|
|
2008-04-14 16:20:24 +08:00
|
|
|
template<typename ExpressionType, bool CheckExistence = true> class Inverse;
|
2008-04-27 02:26:05 +08:00
|
|
|
template<typename MatrixType> class QR;
|
2008-04-14 16:20:24 +08:00
|
|
|
|
2008-01-11 15:16:18 +08:00
|
|
|
#endif // EIGEN_FORWARDDECLARATIONS_H
|