#ifndef EIGEN_CXX11_TENSOR_TENSOR_REVERSE_H
#define EIGEN_CXX11_TENSOR_TENSOR_REVERSE_H
#include "./InternalHeaderCheck.h"
namespace Eigen {
namespace internal {
traits<TensorReverseOp<ReverseDimensions, XprType>>;
eval<TensorReverseOp<ReverseDimensions, XprType>, Eigen::Dense>;
nested<TensorReverseOp<ReverseDimensions, XprType>, 1, typename eval<TensorReverseOp<ReverseDimensions, XprType>>::type>;
}
template <typename ReverseDimensions, typename XprType>
class TensorReverseOp : public TensorBase<TensorReverseOp<ReverseDimensions, XprType>, WriteAccessors> { … };
TensorEvaluator<const TensorReverseOp<ReverseDimensions, ArgType>, Device>;
TensorEvaluator<TensorReverseOp<ReverseDimensions, ArgType>, Device>;
}
#endif