⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rect_indexer.h

📁 MTL C++ Numeric Library
💻 H
字号:
// -*- c++ -*-//// Copyright 1997, 1998, 1999 University of Notre Dame.// Authors: Andrew Lumsdaine, Jeremy G. Siek, Lie-Quan Lee//// This file is part of the Matrix Template Library//// You should have received a copy of the License Agreement for the// Matrix Template Library along with the software;  see the// file LICENSE.  If not, contact Office of Research, University of Notre// Dame, Notre Dame, IN  46556.//// Permission to modify the code and to distribute modified code is// granted, provided the text of this NOTICE is retained, a notice that// the code was modified is included with the above COPYRIGHT NOTICE and// with the COPYRIGHT NOTICE in the LICENSE file, and that the LICENSE// file is distributed with the modified code.//// LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED.// By way of example, but not limitation, Licensor MAKES NO// REPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY// PARTICULAR PURPOSE OR THAT THE USE OF THE LICENSED SOFTWARE COMPONENTS// OR DOCUMENTATION WILL NOT INFRINGE ANY PATENTS, COPYRIGHTS, TRADEMARKS// OR OTHER RIGHTS.////===========================================================================#ifndef _MTL_RECT_INDEXER_#define _MTL_RECT_INDEXER_#include <utility>#include "mtl/matrix_traits.h"#include "mtl/dimension.h"#include "mtl/orien.h"namespace mtl {template <class size_type, class Orien, int MM, int NN>class rect_indexer {public:  enum { M = MM, N = NN };  typedef dimension<size_type, M, N> dim_type;  typedef dimension<size_type> dyn_dim;  typedef dimension<int> band_type;  /* JGS KCC friend transpose broken */  dim_type dim;  typedef typename Orien::orientation orientation;  typedef rectangle_tag shape;  typedef rect_indexer<size_type,                     typename Orien::transpose_type, MM, NN> transpose_type;  typedef rect_indexer<size_type,                     typename Orien::transpose_type, NN, MM> strided_type;  //VC++ doesn't like   //friend class transpose_type;  typedef Orien orienter;  class OneDIndexer {  public:    inline OneDIndexer() { }    inline OneDIndexer(size_type majornum) : major_num(majornum) { }    inline OneDIndexer(const OneDIndexer& x) : major_num(x.major_num) { }    template <class OneDIterator> inline    size_type row(OneDIterator i) const { return Orien::row(coords(i)); }    template <class OneDIterator> inline    size_type column(OneDIterator i) const { return Orien::column(coords(i)); }    template <class OneDIterator> inline    size_type minor(OneDIterator i) const { return coords(i).second(); }    template <class OneDIterator> inline    OneDIterator begin(OneDIterator i) const { return i; }    inline size_type at(size_type i) const { return i; }  protected:    template <class OneDIterator> inline    dyn_dim coords(OneDIterator i) const {       return dyn_dim(major_num, i.index());     }    size_type major_num;  };  inline rect_indexer() { }  inline rect_indexer(dim_type d) : dim(d) { }  inline rect_indexer(dim_type d, band_type) : dim(d) { }  inline rect_indexer(const rect_indexer& x) : dim(x.dim) { } #if !defined( _MSVCPP_ )  template <class Indexer> inline   rect_indexer(const Indexer& x) : dim(x.dim) { }#endif  inline rect_indexer(const strided_type& x, strideable)    : dim(x.dim.transpose()) { }  inline rect_indexer(const transpose_type& x, not_strideable)     : dim(x.dim) { }  template <class TwoDIterator> inline   OneDIndexer deref(TwoDIterator i) const { return OneDIndexer(i.index()); }  inline OneDIndexer deref(size_type i) const {    return OneDIndexer(i);   }#if 0  inline dyn_dim at(dim_type p) const { return Orien::map(p); }#endif  /* for dynamic dim types (M = 0, N = 0) *///#if !defined( _MSVCPP_ )#if 1  template <class Dim> inline   Dim at(Dim p) const { return Orien::map(p); }#endif  /* used in constructor of matrix_implementation */  inline static dim_type twod_dim(dim_type dim) { return dim; }  inline static dim_type twod_dim(dim_type dim, band_type) { return dim; }  inline static band_type twod_band(dim_type , band_type bw) { return bw; }    inline size_type nrows() const{ return Orien::row(dim); }  inline size_type ncols() const { return Orien::column(dim); }  inline int sub() const { return nrows() - 1; }  inline int super() const { return ncols() - 1; }};//: blah//!noindex:template <class Orien, int MM, int NN, class size_type>struct gen_rect_indexer {  // static equivalent to twod_dim#if 0  // bad for VC++  typedef typename Orien::template dims<MM,NN> oriendim;  enum { M = oriendim::M, N = oriendim::N };#else  enum { M = MM, N = NN };#endif  typedef dimension<char, M, N> twod_dim_type;  typedef gen_rect_indexer< typename Orien::transpose_type, MM, NN, size_type>    transpose_type;  typedef gen_rect_indexer< typename Orien::transpose_type, NN, MM, size_type>    strided_type;  typedef rect_indexer<size_type, Orien, M, N> type;  template <class ST>  struct bind {    typedef gen_rect_indexer<Orien, MM, NN, ST> other;  };  typedef Orien orienter;};} /* namespace mtl */#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -