ndarray
NumPy-friendly multidimensional arrays in C++
Loading...
Searching...
No Matches
eigen_fwd.h
Go to the documentation of this file.
1// -*- c++ -*-
2/*
3 * Copyright (c) 2010-2012, Jim Bosch
4 * All rights reserved.
5 *
6 * ndarray is distributed under a simple BSD-like license;
7 * see the LICENSE file that should be present in the root
8 * of the source distribution, or alternately available at:
9 * https://github.com/ndarray/ndarray
10 */
11#ifndef NDARRAY_eigen_fwd_h_INCLUDED
12#define NDARRAY_eigen_fwd_h_INCLUDED
13
24namespace Eigen {
25
26struct MatrixXpr;
27
28} // namespace Eigen
29
30namespace ndarray {
31namespace detail {
32
33template <int N, int C, int Rows, int Cols> struct EigenStrideTraits;
34
35} // namespace detail
36} // namespace ndarray
37
38#endif // !NDARRAY_eigen_fwd_h_INCLUDED
Definition eigen_fwd.h:33