// -*- C++ -*- /*************************************************************************** * blitz/array/slice.h Helper classes for slicing arrays * * $Id$ * * Copyright (C) 1997-2011 Todd Veldhuizen * * This file is a part of Blitz. * * Blitz is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation, either version 3 * of the License, or (at your option) any later version. * * Blitz is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with Blitz. If not, see . * * Suggestions: blitz-devel@lists.sourceforge.net * Bugs: blitz-support@lists.sourceforge.net * * For more information, please see the Blitz++ Home Page: * https://sourceforge.net/projects/blitz/ * ****************************************************************************/ #ifndef BZ_ARRAYSLICE_H #define BZ_ARRAYSLICE_H // #ifndef BZ_ARRAY_H // #error must be included via // #endif #include BZ_NAMESPACE(blitz) // Forward declarations template class Array; class nilArraySection { }; template class ArraySectionInfo { public: static const int isValidType = 0, rank = 0, isPick = 0; }; template<> class ArraySectionInfo { public: static const int isValidType = 1, rank = 1, isPick = 0; }; template<> class ArraySectionInfo { public: static const int isValidType = 1, rank = 0, isPick = 0; }; template<> class ArraySectionInfo { public: static const int isValidType = 1, rank = 0, isPick = 0; }; template class SliceInfo { public: static const int numValidTypes = ArraySectionInfo::isValidType + ArraySectionInfo::isValidType + ArraySectionInfo::isValidType + ArraySectionInfo::isValidType + ArraySectionInfo::isValidType + ArraySectionInfo::isValidType + ArraySectionInfo::isValidType + ArraySectionInfo::isValidType + ArraySectionInfo::isValidType + ArraySectionInfo::isValidType + ArraySectionInfo::isValidType, rank = ArraySectionInfo::rank + ArraySectionInfo::rank + ArraySectionInfo::rank + ArraySectionInfo::rank + ArraySectionInfo::rank + ArraySectionInfo::rank + ArraySectionInfo::rank + ArraySectionInfo::rank + ArraySectionInfo::rank + ArraySectionInfo::rank + ArraySectionInfo::rank, isPick = ArraySectionInfo::isPick + ArraySectionInfo::isPick + ArraySectionInfo::isPick + ArraySectionInfo::isPick + ArraySectionInfo::isPick + ArraySectionInfo::isPick + ArraySectionInfo::isPick + ArraySectionInfo::isPick + ArraySectionInfo::isPick + ArraySectionInfo::isPick + ArraySectionInfo::isPick; typedef Array T_array; typedef Array T_slice; }; BZ_NAMESPACE_END #endif // BZ_ARRAYSLICE_H