// This file is part of Eigen, a lightweight C++ template library // for linear algebra. // // Copyright (C) 2014 Benoit Steiner <[email protected]> // // This Source Code Form is subject to the terms of the Mozilla // Public License v. 2.0. If a copy of the MPL was not distributed // with this file, You can obtain one at http://mozilla.org/MPL/2.0/. #ifndef EIGEN_CXX11_TENSOR_TENSOR_FIXED_SIZE_H #define EIGEN_CXX11_TENSOR_TENSOR_FIXED_SIZE_H // IWYU pragma: private #include "./InternalHeaderCheck.h" namespace Eigen { /** \class TensorFixedSize * \ingroup CXX11_Tensor_Module * * \brief The fixed sized version of the tensor class. * * The fixed sized equivalent of * Eigen::Tensor<float, 3> t(3, 5, 7); * is * Eigen::TensorFixedSize<float, Sizes<3,5,7>> t; */ template <typename Scalar_, typename Dimensions_, int Options_, typename IndexType> class TensorFixedSize : public TensorBase<TensorFixedSize<Scalar_, Dimensions_, Options_, IndexType> > { … } … }; } // end namespace Eigen #endif // EIGEN_CXX11_TENSOR_TENSOR_FIXED_SIZE_H