| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373 |
- //
- // Copyright (c) 2000-2013
- // Joerg Walter, Mathias Koch, Athanasios Iliopoulos
- //
- // Distributed under the Boost Software License, Version 1.0. (See
- // accompanying file LICENSE_1_0.txt or copy at
- // http://www.boost.org/LICENSE_1_0.txt)
- //
- // The authors gratefully acknowledge the support of
- // GeNeSys mbH & Co. KG in producing this work.
- //
- #ifndef _BOOST_UBLAS_BANDED_
- #define _BOOST_UBLAS_BANDED_
- #include <boost/numeric/ublas/matrix.hpp>
- #include <boost/numeric/ublas/detail/temporary.hpp>
- // Iterators based on ideas of Jeremy Siek
- namespace boost { namespace numeric { namespace ublas {
- namespace hidden {
- /** \brief A helper for band_matrix indexing.
- *
- * The indexing happens as per the netlib description: http://www.netlib.org/lapack/lug/node124.html.
- * In the case of a row_major matrix a different approach is followed;
- */
- template <class LayoutType>
- class banded_indexing { };
- /** \brief A helper for indexing column major banded matrices.
- *
- */
- template <>
- class banded_indexing<column_major_tag> {
- public:
- template <class T>
- BOOST_UBLAS_INLINE static T size(T /*size1*/, T size2) {
- return size2;
- }
- // template <class T>
- // BOOST_UBLAS_INLINE static bool valid_index(T size1, T /*size2*/, T lower, T upper, T i, T j) {
- // return (upper+i >= j) && i <= std::min(size1 - 1, j + lower); // upper + i is used by get_index. Maybe find a way to consolidate the operations to increase performance
- // }
- template <class T>
- BOOST_UBLAS_INLINE static T get_index(T /*size1*/, T size2, T lower, T upper, T i, T j) {
- return column_major::element (upper + i - j, lower + 1 + upper, j, size2);
- }
- };
- /** \brief A helper for indexing row major banded matrices.
- *
- */
- template <>
- class banded_indexing<row_major_tag> {
- public:
- template <class T>
- BOOST_UBLAS_INLINE static T size(T size1, T /*size2*/) {
- return size1;
- }
- // template <class T>
- // BOOST_UBLAS_INLINE static bool valid_index(T /*size1*/, T size2, T lower, T upper, T i, T j) {
- // return (lower+j >= i) && j <= std::min(size2 - 1, i + upper); // lower + j is used by get_index. Maybe find a way to consolidate the operations to increase performance
- // }
- template <class T>
- BOOST_UBLAS_INLINE static T get_index(T size1, T /*size2*/, T lower, T upper, T i, T j) {
- return row_major::element (i, size1, lower + j - i, lower + 1 + upper);
- }
- };
- }
- /** \brief A banded matrix of values of type \c T.
- *
- * For a \f$(mxn)\f$-dimensional banded matrix with \f$l\f$ lower and \f$u\f$ upper diagonals and
- * \f$0 \leq i < m\f$ and \f$0 \leq j < n\f$, if \f$i>j+l\f$ or \f$i<j-u\f$ then \f$b_{i,j}=0\f$.
- * The default storage for banded matrices is packed. Orientation and storage can also be specified.
- * Default is \c row_major and and unbounded_array. It is \b not required by the storage to initialize
- * elements of the matrix.
- *
- * \tparam T the type of object stored in the matrix (like double, float, complex, etc...)
- * \tparam L the storage organization. It can be either \c row_major or \c column_major. Default is \c row_major
- * \tparam A the type of Storage array. Default is \c unbounded_array
- */
- template<class T, class L, class A>
- class banded_matrix:
- public matrix_container<banded_matrix<T, L, A> > {
- typedef T *pointer;
- typedef L layout_type;
- typedef banded_matrix<T, L, A> self_type;
- public:
- #ifdef BOOST_UBLAS_ENABLE_PROXY_SHORTCUTS
- using matrix_container<self_type>::operator ();
- #endif
- typedef typename A::size_type size_type;
- typedef typename A::difference_type difference_type;
- typedef T value_type;
- typedef const T &const_reference;
- typedef T &reference;
- typedef A array_type;
- typedef const matrix_reference<const self_type> const_closure_type;
- typedef matrix_reference<self_type> closure_type;
- typedef vector<T, A> vector_temporary_type;
- typedef matrix<T, L, A> matrix_temporary_type; // general sub-matrix
- typedef packed_tag storage_category;
- typedef typename L::orientation_category orientation_category;
- private:
- public:
- // Construction and destruction
- BOOST_UBLAS_INLINE
- banded_matrix ():
- matrix_container<self_type> (),
- size1_ (0), size2_ (0),
- lower_ (0), upper_ (0), data_ (0) {}
- BOOST_UBLAS_INLINE
- banded_matrix (size_type size1, size_type size2, size_type lower = 0, size_type upper = 0):
- matrix_container<self_type> (),
- size1_ (size1), size2_ (size2),
- lower_ (lower), upper_ (upper),
- #if defined(BOOST_UBLAS_OWN_BANDED) || (BOOST_UBLAS_LEGACY_BANDED)
- data_ ((std::max) (size1, size2) * (lower + 1 + upper))
- #else
- data_ ( hidden::banded_indexing<orientation_category>::size(size1, size2) * (lower + 1 + upper)) // This is the netlib layout as described here: http://www.netlib.org/lapack/lug/node124.html
- #endif
- {
- }
- BOOST_UBLAS_INLINE
- banded_matrix (size_type size1, size_type size2, size_type lower, size_type upper, const array_type &data):
- matrix_container<self_type> (),
- size1_ (size1), size2_ (size2),
- lower_ (lower), upper_ (upper), data_ (data) {}
- BOOST_UBLAS_INLINE
- banded_matrix (const banded_matrix &m):
- matrix_container<self_type> (),
- size1_ (m.size1_), size2_ (m.size2_),
- lower_ (m.lower_), upper_ (m.upper_), data_ (m.data_) {}
- template<class AE>
- BOOST_UBLAS_INLINE
- banded_matrix (const matrix_expression<AE> &ae, size_type lower = 0, size_type upper = 0):
- matrix_container<self_type> (),
- size1_ (ae ().size1 ()), size2_ (ae ().size2 ()),
- lower_ (lower), upper_ (upper),
- #if defined(BOOST_UBLAS_OWN_BANDED) || (BOOST_UBLAS_LEGACY_BANDED)
- data_ ((std::max) (size1_, size2_) * (lower_ + 1 + upper_))
- #else
- data_ ( hidden::banded_indexing<orientation_category>::size(size1_, size2_) * (lower_ + 1 + upper_)) // This is the netlib layout as described here: http://www.netlib.org/lapack/lug/node124.html
- #endif
- {
- matrix_assign<scalar_assign> (*this, ae);
- }
- // Accessors
- BOOST_UBLAS_INLINE
- size_type size1 () const {
- return size1_;
- }
- BOOST_UBLAS_INLINE
- size_type size2 () const {
- return size2_;
- }
- BOOST_UBLAS_INLINE
- size_type lower () const {
- return lower_;
- }
- BOOST_UBLAS_INLINE
- size_type upper () const {
- return upper_;
- }
- // Storage accessors
- BOOST_UBLAS_INLINE
- const array_type &data () const {
- return data_;
- }
- BOOST_UBLAS_INLINE
- array_type &data () {
- return data_;
- }
- #if !defined (BOOST_UBLAS_OWN_BANDED)||(BOOST_UBLAS_LEGACY_BANDED)
- BOOST_UBLAS_INLINE
- bool is_element_in_band(size_type i, size_type j) const{
- //return (upper_+i >= j) && i <= std::min(size1() - 1, j + lower_); // We don't need to check if i is outside because it is checked anyway in the accessors.
- return (upper_+i >= j) && i <= ( j + lower_); // Essentially this band has "infinite" positive dimensions
- }
- #endif
- // Resizing
- BOOST_UBLAS_INLINE
- void resize (size_type size1, size_type size2, size_type lower = 0, size_type upper = 0, bool preserve = true) {
- if (preserve) {
- self_type temporary (size1, size2, lower, upper);
- detail::matrix_resize_preserve<layout_type> (*this, temporary);
- }
- else {
- data ().resize ((std::max) (size1, size2) * (lower + 1 + upper));
- size1_ = size1;
- size2_ = size2;
- lower_ = lower;
- upper_ = upper;
- }
- }
- BOOST_UBLAS_INLINE
- void resize_packed_preserve (size_type size1, size_type size2, size_type lower = 0, size_type upper = 0) {
- size1_ = size1;
- size2_ = size2;
- lower_ = lower;
- upper_ = upper;
- data ().resize ((std::max) (size1, size2) * (lower + 1 + upper), value_type ());
- }
- // Element access
- BOOST_UBLAS_INLINE
- const_reference operator () (size_type i, size_type j) const {
- BOOST_UBLAS_CHECK (i < size1_, bad_index ());
- BOOST_UBLAS_CHECK (j < size2_, bad_index ());
- #ifdef BOOST_UBLAS_OWN_BANDED
- const size_type k = (std::max) (i, j);
- const size_type l = lower_ + j - i;
- if (k < (std::max) (size1_, size2_) && // TODO: probably use BOOST_UBLAS_CHECK here instead of if
- l < lower_ + 1 + upper_)
- return data () [layout_type::element (k, (std::max) (size1_, size2_),
- l, lower_ + 1 + upper_)];
- #elif BOOST_UBLAS_LEGACY_BANDED // Prior to version: TODO: add version this is actually incorporated in
- const size_type k = j;
- const size_type l = upper_ + i - j;
- if (k < size2_ &&
- l < lower_ + 1 + upper_)
- return data () [layout_type::element (k, size2_,
- l, lower_ + 1 + upper_)];
- #else // New default
- // This is the netlib layout as described here: http://www.netlib.org/lapack/lug/node124.html
- if ( is_element_in_band( i, j) ) {
- return data () [hidden::banded_indexing<orientation_category>::get_index(size1_, size2_, lower_, upper_, i, j)];
- }
- #endif
- return zero_;
- }
- BOOST_UBLAS_INLINE
- reference at_element (size_type i, size_type j) {
- BOOST_UBLAS_CHECK (i < size1_, bad_index ());
- BOOST_UBLAS_CHECK (j < size2_, bad_index ());
- #ifdef BOOST_UBLAS_OWN_BANDED
- const size_type k = (std::max) (i, j);
- const size_type l = lower_ + j - i; // TODO: Don't we need an if or BOOST_UBLAS_CHECK HERE?
- return data () [layout_type::element (k, (std::max) (size1_, size2_),
- l, lower_ + 1 + upper_)];
- #elif BOOST_UBLAS_LEGACY_BANDED // Prior to version: TODO: add version this is actually incorporated in
- const size_type k = j;
- const size_type l = upper_ + i - j;
- if (! (k < size2_ &&
- l < lower_ + 1 + upper_) ) {
- bad_index ().raise ();
- // NEVER reached
- }
- return data () [layout_type::element (k, size2_,
- l, lower_ + 1 + upper_)];
- #else
- // This is the netlib layout as described here: http://www.netlib.org/lapack/lug/node124.html
- BOOST_UBLAS_CHECK(is_element_in_band( i, j) , bad_index());
- return data () [hidden::banded_indexing<orientation_category>::get_index(size1_, size2_, lower_, upper_, i, j)];
- #endif
- }
- BOOST_UBLAS_INLINE
- reference operator () (size_type i, size_type j) {
- BOOST_UBLAS_CHECK (i < size1_, bad_index ());
- BOOST_UBLAS_CHECK (j < size2_, bad_index ());
- #ifdef BOOST_UBLAS_OWN_BANDED
- const size_type k = (std::max) (i, j);
- const size_type l = lower_ + j - i;
- if (! (k < (std::max) (size1_, size2_) && // TODO: probably use BOOST_UBLAS_CHECK here instead of if
- l < lower_ + 1 + upper_) ) {
- bad_index ().raise ();
- // NEVER reached
- }
- return data () [layout_type::element (k, (std::max) (size1_, size2_),
- l, lower_ + 1 + upper_)];
- #elif BOOST_UBLAS_LEGACY_BANDED // Prior to version: TODO: add version this is actually incorporated in
- const size_type k = j;
- const size_type l = upper_ + i - j;
- if (! (k < size2_ &&
- l < lower_ + 1 + upper_) ) {
- bad_index ().raise ();
- // NEVER reached
- }
- return data () [layout_type::element (k, size2_,
- l, lower_ + 1 + upper_)];
- #else
- // This is the netlib layout as described here: http://www.netlib.org/lapack/lug/node124.html
- BOOST_UBLAS_CHECK( is_element_in_band( i, j) , bad_index());
- return data () [hidden::banded_indexing<orientation_category>::get_index(size1_, size2_, lower_, upper_, i, j)];
- #endif
- }
- // Element assignment
- BOOST_UBLAS_INLINE
- reference insert_element (size_type i, size_type j, const_reference t) {
- return (operator () (i, j) = t);
- }
- BOOST_UBLAS_INLINE
- void erase_element (size_type i, size_type j) {
- operator () (i, j) = value_type/*zero*/();
- }
- // Zeroing
- BOOST_UBLAS_INLINE
- void clear () {
- std::fill (data ().begin (), data ().end (), value_type/*zero*/());
- }
- // Assignment
- BOOST_UBLAS_INLINE
- banded_matrix &operator = (const banded_matrix &m) {
- size1_ = m.size1_;
- size2_ = m.size2_;
- lower_ = m.lower_;
- upper_ = m.upper_;
- data () = m.data ();
- return *this;
- }
- BOOST_UBLAS_INLINE
- banded_matrix &assign_temporary (banded_matrix &m) {
- swap (m);
- return *this;
- }
- template<class AE>
- BOOST_UBLAS_INLINE
- banded_matrix &operator = (const matrix_expression<AE> &ae) {
- self_type temporary (ae, lower_, upper_);
- return assign_temporary (temporary);
- }
- template<class AE>
- BOOST_UBLAS_INLINE
- banded_matrix &assign (const matrix_expression<AE> &ae) {
- matrix_assign<scalar_assign> (*this, ae);
- return *this;
- }
- template<class AE>
- BOOST_UBLAS_INLINE
- banded_matrix& operator += (const matrix_expression<AE> &ae) {
- self_type temporary (*this + ae, lower_, upper_);
- return assign_temporary (temporary);
- }
- template<class AE>
- BOOST_UBLAS_INLINE
- banded_matrix &plus_assign (const matrix_expression<AE> &ae) {
- matrix_assign<scalar_plus_assign> (*this, ae);
- return *this;
- }
- template<class AE>
- BOOST_UBLAS_INLINE
- banded_matrix& operator -= (const matrix_expression<AE> &ae) {
- self_type temporary (*this - ae, lower_, upper_);
- return assign_temporary (temporary);
- }
- template<class AE>
- BOOST_UBLAS_INLINE
- banded_matrix &minus_assign (const matrix_expression<AE> &ae) {
- matrix_assign<scalar_minus_assign> (*this, ae);
- return *this;
- }
- template<class AT>
- BOOST_UBLAS_INLINE
- banded_matrix& operator *= (const AT &at) {
- matrix_assign_scalar<scalar_multiplies_assign> (*this, at);
- return *this;
- }
- template<class AT>
- BOOST_UBLAS_INLINE
- banded_matrix& operator /= (const AT &at) {
- matrix_assign_scalar<scalar_divides_assign> (*this, at);
- return *this;
- }
- // Swapping
- BOOST_UBLAS_INLINE
- void swap (banded_matrix &m) {
- if (this != &m) {
- std::swap (size1_, m.size1_);
- std::swap (size2_, m.size2_);
- std::swap (lower_, m.lower_);
- std::swap (upper_, m.upper_);
- data ().swap (m.data ());
- }
- }
- BOOST_UBLAS_INLINE
- friend void swap (banded_matrix &m1, banded_matrix &m2) {
- m1.swap (m2);
- }
- // Iterator types
- #ifdef BOOST_UBLAS_USE_INDEXED_ITERATOR
- typedef indexed_iterator1<self_type, packed_random_access_iterator_tag> iterator1;
- typedef indexed_iterator2<self_type, packed_random_access_iterator_tag> iterator2;
- typedef indexed_const_iterator1<self_type, packed_random_access_iterator_tag> const_iterator1;
- typedef indexed_const_iterator2<self_type, packed_random_access_iterator_tag> const_iterator2;
- #else
- class const_iterator1;
- class iterator1;
- class const_iterator2;
- class iterator2;
- #endif
- typedef reverse_iterator_base1<const_iterator1> const_reverse_iterator1;
- typedef reverse_iterator_base1<iterator1> reverse_iterator1;
- typedef reverse_iterator_base2<const_iterator2> const_reverse_iterator2;
- typedef reverse_iterator_base2<iterator2> reverse_iterator2;
- // Element lookup
- BOOST_UBLAS_INLINE
- const_iterator1 find1 (int rank, size_type i, size_type j) const {
- if (rank == 1) {
- size_type lower_i = (std::max) (difference_type (j - upper_), difference_type (0));
- i = (std::max) (i, lower_i);
- size_type upper_i = (std::min) (j + 1 + lower_, size1_);
- i = (std::min) (i, upper_i);
- }
- return const_iterator1 (*this, i, j);
- }
- BOOST_UBLAS_INLINE
- iterator1 find1 (int rank, size_type i, size_type j) {
- if (rank == 1) {
- size_type lower_i = (std::max) (difference_type (j - upper_), difference_type (0));
- i = (std::max) (i, lower_i);
- size_type upper_i = (std::min) (j + 1 + lower_, size1_);
- i = (std::min) (i, upper_i);
- }
- return iterator1 (*this, i, j);
- }
- BOOST_UBLAS_INLINE
- const_iterator2 find2 (int rank, size_type i, size_type j) const {
- if (rank == 1) {
- size_type lower_j = (std::max) (difference_type (i - lower_), difference_type (0));
- j = (std::max) (j, lower_j);
- size_type upper_j = (std::min) (i + 1 + upper_, size2_);
- j = (std::min) (j, upper_j);
- }
- return const_iterator2 (*this, i, j);
- }
- BOOST_UBLAS_INLINE
- iterator2 find2 (int rank, size_type i, size_type j) {
- if (rank == 1) {
- size_type lower_j = (std::max) (difference_type (i - lower_), difference_type (0));
- j = (std::max) (j, lower_j);
- size_type upper_j = (std::min) (i + 1 + upper_, size2_);
- j = (std::min) (j, upper_j);
- }
- return iterator2 (*this, i, j);
- }
- // Iterators simply are indices.
- #ifndef BOOST_UBLAS_USE_INDEXED_ITERATOR
- class const_iterator1:
- public container_const_reference<banded_matrix>,
- public random_access_iterator_base<packed_random_access_iterator_tag,
- const_iterator1, value_type> {
- public:
- typedef typename banded_matrix::value_type value_type;
- typedef typename banded_matrix::difference_type difference_type;
- typedef typename banded_matrix::const_reference reference;
- typedef const typename banded_matrix::pointer pointer;
- typedef const_iterator2 dual_iterator_type;
- typedef const_reverse_iterator2 dual_reverse_iterator_type;
- // Construction and destruction
- BOOST_UBLAS_INLINE
- const_iterator1 ():
- container_const_reference<self_type> (), it1_ (), it2_ () {}
- BOOST_UBLAS_INLINE
- const_iterator1 (const self_type &m, size_type it1, size_type it2):
- container_const_reference<self_type> (m), it1_ (it1), it2_ (it2) {}
- BOOST_UBLAS_INLINE
- const_iterator1 (const iterator1 &it):
- container_const_reference<self_type> (it ()), it1_ (it.it1_), it2_ (it.it2_) {}
- // Arithmetic
- BOOST_UBLAS_INLINE
- const_iterator1 &operator ++ () {
- ++ it1_;
- return *this;
- }
- BOOST_UBLAS_INLINE
- const_iterator1 &operator -- () {
- -- it1_;
- return *this;
- }
- BOOST_UBLAS_INLINE
- const_iterator1 &operator += (difference_type n) {
- it1_ += n;
- return *this;
- }
- BOOST_UBLAS_INLINE
- const_iterator1 &operator -= (difference_type n) {
- it1_ -= n;
- return *this;
- }
- BOOST_UBLAS_INLINE
- difference_type operator - (const const_iterator1 &it) const {
- BOOST_UBLAS_CHECK (&(*this) () == &it (), external_logic ());
- BOOST_UBLAS_CHECK (it2_ == it.it2_, external_logic ());
- return it1_ - it.it1_;
- }
- // Dereference
- BOOST_UBLAS_INLINE
- const_reference operator * () const {
- return (*this) () (it1_, it2_);
- }
- BOOST_UBLAS_INLINE
- const_reference operator [] (difference_type n) const {
- return *(*this + n);
- }
- #ifndef BOOST_UBLAS_NO_NESTED_CLASS_RELATION
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- const_iterator2 begin () const {
- return (*this) ().find2 (1, it1_, 0);
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- const_iterator2 cbegin () const {
- return begin ();
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- const_iterator2 end () const {
- return (*this) ().find2 (1, it1_, (*this) ().size2 ());
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- const_iterator2 cend () const {
- return end ();
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- const_reverse_iterator2 rbegin () const {
- return const_reverse_iterator2 (end ());
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- const_reverse_iterator2 crbegin () const {
- return rbegin ();
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- const_reverse_iterator2 rend () const {
- return const_reverse_iterator2 (begin ());
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- const_reverse_iterator2 crend () const {
- return rend ();
- }
- #endif
- // Indices
- BOOST_UBLAS_INLINE
- size_type index1 () const {
- return it1_;
- }
- BOOST_UBLAS_INLINE
- size_type index2 () const {
- return it2_;
- }
- // Assignment
- BOOST_UBLAS_INLINE
- const_iterator1 &operator = (const const_iterator1 &it) {
- container_const_reference<self_type>::assign (&it ());
- it1_ = it.it1_;
- it2_ = it.it2_;
- return *this;
- }
- // Comparison
- BOOST_UBLAS_INLINE
- bool operator == (const const_iterator1 &it) const {
- BOOST_UBLAS_CHECK (&(*this) () == &it (), external_logic ());
- BOOST_UBLAS_CHECK (it2_ == it.it2_, external_logic ());
- return it1_ == it.it1_;
- }
- BOOST_UBLAS_INLINE
- bool operator < (const const_iterator1 &it) const {
- BOOST_UBLAS_CHECK (&(*this) () == &it (), external_logic ());
- BOOST_UBLAS_CHECK (it2_ == it.it2_, external_logic ());
- return it1_ < it.it1_;
- }
- private:
- size_type it1_;
- size_type it2_;
- };
- #endif
- BOOST_UBLAS_INLINE
- const_iterator1 begin1 () const {
- return find1 (0, 0, 0);
- }
- BOOST_UBLAS_INLINE
- const_iterator1 cbegin1 () const {
- return begin1 ();
- }
- BOOST_UBLAS_INLINE
- const_iterator1 end1 () const {
- return find1 (0, size1_, 0);
- }
- BOOST_UBLAS_INLINE
- const_iterator1 cend1 () const {
- return end1 ();
- }
- #ifndef BOOST_UBLAS_USE_INDEXED_ITERATOR
- class iterator1:
- public container_reference<banded_matrix>,
- public random_access_iterator_base<packed_random_access_iterator_tag,
- iterator1, value_type> {
- public:
- typedef typename banded_matrix::value_type value_type;
- typedef typename banded_matrix::difference_type difference_type;
- typedef typename banded_matrix::reference reference;
- typedef typename banded_matrix::pointer pointer;
- typedef iterator2 dual_iterator_type;
- typedef reverse_iterator2 dual_reverse_iterator_type;
- // Construction and destruction
- BOOST_UBLAS_INLINE
- iterator1 ():
- container_reference<self_type> (), it1_ (), it2_ () {}
- BOOST_UBLAS_INLINE
- iterator1 (self_type &m, size_type it1, size_type it2):
- container_reference<self_type> (m), it1_ (it1), it2_ (it2) {}
- // Arithmetic
- BOOST_UBLAS_INLINE
- iterator1 &operator ++ () {
- ++ it1_;
- return *this;
- }
- BOOST_UBLAS_INLINE
- iterator1 &operator -- () {
- -- it1_;
- return *this;
- }
- BOOST_UBLAS_INLINE
- iterator1 &operator += (difference_type n) {
- it1_ += n;
- return *this;
- }
- BOOST_UBLAS_INLINE
- iterator1 &operator -= (difference_type n) {
- it1_ -= n;
- return *this;
- }
- BOOST_UBLAS_INLINE
- difference_type operator - (const iterator1 &it) const {
- BOOST_UBLAS_CHECK (&(*this) () == &it (), external_logic ());
- BOOST_UBLAS_CHECK (it2_ == it.it2_, external_logic ());
- return it1_ - it.it1_;
- }
- // Dereference
- BOOST_UBLAS_INLINE
- reference operator * () const {
- return (*this) ().at_element (it1_, it2_);
- }
- BOOST_UBLAS_INLINE
- reference operator [] (difference_type n) const {
- return *(*this + n);
- }
- #ifndef BOOST_UBLAS_NO_NESTED_CLASS_RELATION
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- iterator2 begin () const {
- return (*this) ().find2 (1, it1_, 0);
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- iterator2 end () const {
- return (*this) ().find2 (1, it1_, (*this) ().size2 ());
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- reverse_iterator2 rbegin () const {
- return reverse_iterator2 (end ());
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- reverse_iterator2 rend () const {
- return reverse_iterator2 (begin ());
- }
- #endif
- // Indices
- BOOST_UBLAS_INLINE
- size_type index1 () const {
- return it1_;
- }
- BOOST_UBLAS_INLINE
- size_type index2 () const {
- return it2_;
- }
- // Assignment
- BOOST_UBLAS_INLINE
- iterator1 &operator = (const iterator1 &it) {
- container_reference<self_type>::assign (&it ());
- it1_ = it.it1_;
- it2_ = it.it2_;
- return *this;
- }
- // Comparison
- BOOST_UBLAS_INLINE
- bool operator == (const iterator1 &it) const {
- BOOST_UBLAS_CHECK (&(*this) () == &it (), external_logic ());
- BOOST_UBLAS_CHECK (it2_ == it.it2_, external_logic ());
- return it1_ == it.it1_;
- }
- BOOST_UBLAS_INLINE
- bool operator < (const iterator1 &it) const {
- BOOST_UBLAS_CHECK (&(*this) () == &it (), external_logic ());
- BOOST_UBLAS_CHECK (it2_ == it.it2_, external_logic ());
- return it1_ < it.it1_;
- }
- private:
- size_type it1_;
- size_type it2_;
- friend class const_iterator1;
- };
- #endif
- BOOST_UBLAS_INLINE
- iterator1 begin1 () {
- return find1 (0, 0, 0);
- }
- BOOST_UBLAS_INLINE
- iterator1 end1 () {
- return find1 (0, size1_, 0);
- }
- #ifndef BOOST_UBLAS_USE_INDEXED_ITERATOR
- class const_iterator2:
- public container_const_reference<banded_matrix>,
- public random_access_iterator_base<packed_random_access_iterator_tag,
- const_iterator2, value_type> {
- public:
- typedef typename banded_matrix::value_type value_type;
- typedef typename banded_matrix::difference_type difference_type;
- typedef typename banded_matrix::const_reference reference;
- typedef const typename banded_matrix::pointer pointer;
- typedef const_iterator1 dual_iterator_type;
- typedef const_reverse_iterator1 dual_reverse_iterator_type;
- // Construction and destruction
- BOOST_UBLAS_INLINE
- const_iterator2 ():
- container_const_reference<self_type> (), it1_ (), it2_ () {}
- BOOST_UBLAS_INLINE
- const_iterator2 (const self_type &m, size_type it1, size_type it2):
- container_const_reference<self_type> (m), it1_ (it1), it2_ (it2) {}
- BOOST_UBLAS_INLINE
- const_iterator2 (const iterator2 &it):
- container_const_reference<self_type> (it ()), it1_ (it.it1_), it2_ (it.it2_) {}
- // Arithmetic
- BOOST_UBLAS_INLINE
- const_iterator2 &operator ++ () {
- ++ it2_;
- return *this;
- }
- BOOST_UBLAS_INLINE
- const_iterator2 &operator -- () {
- -- it2_;
- return *this;
- }
- BOOST_UBLAS_INLINE
- const_iterator2 &operator += (difference_type n) {
- it2_ += n;
- return *this;
- }
- BOOST_UBLAS_INLINE
- const_iterator2 &operator -= (difference_type n) {
- it2_ -= n;
- return *this;
- }
- BOOST_UBLAS_INLINE
- difference_type operator - (const const_iterator2 &it) const {
- BOOST_UBLAS_CHECK (&(*this) () == &it (), external_logic ());
- BOOST_UBLAS_CHECK (it1_ == it.it1_, external_logic ());
- return it2_ - it.it2_;
- }
- // Dereference
- BOOST_UBLAS_INLINE
- const_reference operator * () const {
- return (*this) () (it1_, it2_);
- }
- BOOST_UBLAS_INLINE
- const_reference operator [] (difference_type n) const {
- return *(*this + n);
- }
- #ifndef BOOST_UBLAS_NO_NESTED_CLASS_RELATION
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- const_iterator1 begin () const {
- return (*this) ().find1 (1, 0, it2_);
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- const_iterator1 cbegin () const {
- return begin ();
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- const_iterator1 end () const {
- return (*this) ().find1 (1, (*this) ().size1 (), it2_);
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- const_iterator1 cend () const {
- return end();
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- const_reverse_iterator1 rbegin () const {
- return const_reverse_iterator1 (end ());
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- const_reverse_iterator1 crbegin () const {
- return rbegin ();
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- const_reverse_iterator1 rend () const {
- return const_reverse_iterator1 (begin ());
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- const_reverse_iterator1 crend () const {
- return rend ();
- }
- #endif
- // Indices
- BOOST_UBLAS_INLINE
- size_type index1 () const {
- return it1_;
- }
- BOOST_UBLAS_INLINE
- size_type index2 () const {
- return it2_;
- }
- // Assignment
- BOOST_UBLAS_INLINE
- const_iterator2 &operator = (const const_iterator2 &it) {
- container_const_reference<self_type>::assign (&it ());
- it1_ = it.it1_;
- it2_ = it.it2_;
- return *this;
- }
- // Comparison
- BOOST_UBLAS_INLINE
- bool operator == (const const_iterator2 &it) const {
- BOOST_UBLAS_CHECK (&(*this) () == &it (), external_logic ());
- BOOST_UBLAS_CHECK (it1_ == it.it1_, external_logic ());
- return it2_ == it.it2_;
- }
- BOOST_UBLAS_INLINE
- bool operator < (const const_iterator2 &it) const {
- BOOST_UBLAS_CHECK (&(*this) () == &it (), external_logic ());
- BOOST_UBLAS_CHECK (it1_ == it.it1_, external_logic ());
- return it2_ < it.it2_;
- }
- private:
- size_type it1_;
- size_type it2_;
- };
- #endif
- BOOST_UBLAS_INLINE
- const_iterator2 begin2 () const {
- return find2 (0, 0, 0);
- }
- BOOST_UBLAS_INLINE
- const_iterator2 cbegin2 () const {
- return begin2 ();
- }
- BOOST_UBLAS_INLINE
- const_iterator2 end2 () const {
- return find2 (0, 0, size2_);
- }
- BOOST_UBLAS_INLINE
- const_iterator2 cend2 () const {
- return end2 ();
- }
- #ifndef BOOST_UBLAS_USE_INDEXED_ITERATOR
- class iterator2:
- public container_reference<banded_matrix>,
- public random_access_iterator_base<packed_random_access_iterator_tag,
- iterator2, value_type> {
- public:
- typedef typename banded_matrix::value_type value_type;
- typedef typename banded_matrix::difference_type difference_type;
- typedef typename banded_matrix::reference reference;
- typedef typename banded_matrix::pointer pointer;
- typedef iterator1 dual_iterator_type;
- typedef reverse_iterator1 dual_reverse_iterator_type;
- // Construction and destruction
- BOOST_UBLAS_INLINE
- iterator2 ():
- container_reference<self_type> (), it1_ (), it2_ () {}
- BOOST_UBLAS_INLINE
- iterator2 (self_type &m, size_type it1, size_type it2):
- container_reference<self_type> (m), it1_ (it1), it2_ (it2) {}
- // Arithmetic
- BOOST_UBLAS_INLINE
- iterator2 &operator ++ () {
- ++ it2_;
- return *this;
- }
- BOOST_UBLAS_INLINE
- iterator2 &operator -- () {
- -- it2_;
- return *this;
- }
- BOOST_UBLAS_INLINE
- iterator2 &operator += (difference_type n) {
- it2_ += n;
- return *this;
- }
- BOOST_UBLAS_INLINE
- iterator2 &operator -= (difference_type n) {
- it2_ -= n;
- return *this;
- }
- BOOST_UBLAS_INLINE
- difference_type operator - (const iterator2 &it) const {
- BOOST_UBLAS_CHECK (&(*this) () == &it (), external_logic ());
- BOOST_UBLAS_CHECK (it1_ == it.it1_, external_logic ());
- return it2_ - it.it2_;
- }
- // Dereference
- BOOST_UBLAS_INLINE
- reference operator * () const {
- return (*this) ().at_element (it1_, it2_);
- }
- BOOST_UBLAS_INLINE
- reference operator [] (difference_type n) const {
- return *(*this + n);
- }
- #ifndef BOOST_UBLAS_NO_NESTED_CLASS_RELATION
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- iterator1 begin () const {
- return (*this) ().find1 (1, 0, it2_);
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- iterator1 end () const {
- return (*this) ().find1 (1, (*this) ().size1 (), it2_);
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- reverse_iterator1 rbegin () const {
- return reverse_iterator1 (end ());
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- reverse_iterator1 rend () const {
- return reverse_iterator1 (begin ());
- }
- #endif
- // Indices
- BOOST_UBLAS_INLINE
- size_type index1 () const {
- return it1_;
- }
- BOOST_UBLAS_INLINE
- size_type index2 () const {
- return it2_;
- }
- // Assignment
- BOOST_UBLAS_INLINE
- iterator2 &operator = (const iterator2 &it) {
- container_reference<self_type>::assign (&it ());
- it1_ = it.it1_;
- it2_ = it.it2_;
- return *this;
- }
- // Comparison
- BOOST_UBLAS_INLINE
- bool operator == (const iterator2 &it) const {
- BOOST_UBLAS_CHECK (&(*this) () == &it (), external_logic ());
- BOOST_UBLAS_CHECK (it1_ == it.it1_, external_logic ());
- return it2_ == it.it2_;
- }
- BOOST_UBLAS_INLINE
- bool operator < (const iterator2 &it) const {
- BOOST_UBLAS_CHECK (&(*this) () == &it (), external_logic ());
- BOOST_UBLAS_CHECK (it1_ == it.it1_, external_logic ());
- return it2_ < it.it2_;
- }
- private:
- size_type it1_;
- size_type it2_;
- friend class const_iterator2;
- };
- #endif
- BOOST_UBLAS_INLINE
- iterator2 begin2 () {
- return find2 (0, 0, 0);
- }
- BOOST_UBLAS_INLINE
- iterator2 end2 () {
- return find2 (0, 0, size2_);
- }
- // Reverse iterators
- BOOST_UBLAS_INLINE
- const_reverse_iterator1 rbegin1 () const {
- return const_reverse_iterator1 (end1 ());
- }
- BOOST_UBLAS_INLINE
- const_reverse_iterator1 crbegin1 () const {
- return rbegin1 ();
- }
- BOOST_UBLAS_INLINE
- const_reverse_iterator1 rend1 () const {
- return const_reverse_iterator1 (begin1 ());
- }
- BOOST_UBLAS_INLINE
- const_reverse_iterator1 crend1 () const {
- return rend1 ();
- }
- BOOST_UBLAS_INLINE
- reverse_iterator1 rbegin1 () {
- return reverse_iterator1 (end1 ());
- }
- BOOST_UBLAS_INLINE
- reverse_iterator1 rend1 () {
- return reverse_iterator1 (begin1 ());
- }
- BOOST_UBLAS_INLINE
- const_reverse_iterator2 rbegin2 () const {
- return const_reverse_iterator2 (end2 ());
- }
- BOOST_UBLAS_INLINE
- const_reverse_iterator2 crbegin2 () const {
- return rbegin2 ();
- }
- BOOST_UBLAS_INLINE
- const_reverse_iterator2 rend2 () const {
- return const_reverse_iterator2 (begin2 ());
- }
- BOOST_UBLAS_INLINE
- const_reverse_iterator2 crend2 () const {
- return rend2 ();
- }
- BOOST_UBLAS_INLINE
- reverse_iterator2 rbegin2 () {
- return reverse_iterator2 (end2 ());
- }
- BOOST_UBLAS_INLINE
- reverse_iterator2 rend2 () {
- return reverse_iterator2 (begin2 ());
- }
- private:
- size_type size1_;
- size_type size2_;
- size_type lower_;
- size_type upper_;
- array_type data_;
- typedef const value_type const_value_type;
- static const_value_type zero_;
- };
- template<class T, class L, class A>
- typename banded_matrix<T, L, A>::const_value_type banded_matrix<T, L, A>::zero_ = value_type/*zero*/();
- /** \brief A diagonal matrix of values of type \c T, which is a specialization of a banded matrix
- *
- * For a \f$(m\times m)\f$-dimensional diagonal matrix, \f$0 \leq i < m\f$ and \f$0 \leq j < m\f$,
- * if \f$i\neq j\f$ then \f$b_{i,j}=0\f$. The default storage for diagonal matrices is packed.
- * Orientation and storage can also be specified. Default is \c row major \c unbounded_array.
- *
- * As a specialization of a banded matrix, the constructor of the diagonal matrix creates
- * a banded matrix with 0 upper and lower diagonals around the main diagonal and the matrix is
- * obviously a square matrix. Operations are optimized based on these 2 assumptions. It is
- * \b not required by the storage to initialize elements of the matrix.
- *
- * \tparam T the type of object stored in the matrix (like double, float, complex, etc...)
- * \tparam L the storage organization. It can be either \c row_major or \c column_major. Default is \c row_major
- * \tparam A the type of Storage array. Default is \c unbounded_array
- */
- template<class T, class L, class A>
- class diagonal_matrix:
- public banded_matrix<T, L, A> {
- public:
- typedef typename A::size_type size_type;
- typedef banded_matrix<T, L, A> matrix_type;
- typedef A array_type;
- // Construction and destruction
- BOOST_UBLAS_INLINE
- diagonal_matrix ():
- matrix_type () {}
- BOOST_UBLAS_INLINE
- diagonal_matrix (size_type size):
- matrix_type (size, size) {}
- BOOST_UBLAS_INLINE
- diagonal_matrix (size_type size, const array_type& data):
- matrix_type (size, size, 0, 0, data) {}
- BOOST_UBLAS_INLINE
- diagonal_matrix (size_type size1, size_type size2):
- matrix_type (size1, size2) {}
- template<class AE>
- BOOST_UBLAS_INLINE
- diagonal_matrix (const matrix_expression<AE> &ae):
- matrix_type (ae) {}
- BOOST_UBLAS_INLINE
- ~diagonal_matrix () {}
- // Assignment
- BOOST_UBLAS_INLINE
- diagonal_matrix &operator = (const diagonal_matrix &m) {
- matrix_type::operator = (m);
- return *this;
- }
- template<class AE>
- BOOST_UBLAS_INLINE
- diagonal_matrix &operator = (const matrix_expression<AE> &ae) {
- matrix_type::operator = (ae);
- return *this;
- }
- };
- /** \brief A banded matrix adaptator: convert a any matrix into a banded matrix expression
- *
- * For a \f$(m\times n)\f$-dimensional matrix, the \c banded_adaptor will provide a banded matrix
- * with \f$l\f$ lower and \f$u\f$ upper diagonals and \f$0 \leq i < m\f$ and \f$0 \leq j < n\f$,
- * if \f$i>j+l\f$ or \f$i<j-u\f$ then \f$b_{i,j}=0\f$.
- *
- * Storage and location are based on those of the underlying matrix. This is important because
- * a \c banded_adaptor does not copy the matrix data to a new place. Therefore, modifying values
- * in a \c banded_adaptor matrix will also modify the underlying matrix too.
- *
- * \tparam M the type of matrix used to generate a banded matrix
- */
- template<class M>
- class banded_adaptor:
- public matrix_expression<banded_adaptor<M> > {
- typedef banded_adaptor<M> self_type;
- public:
- #ifdef BOOST_UBLAS_ENABLE_PROXY_SHORTCUTS
- using matrix_expression<self_type>::operator ();
- #endif
- typedef const M const_matrix_type;
- typedef M matrix_type;
- typedef typename M::size_type size_type;
- typedef typename M::difference_type difference_type;
- typedef typename M::value_type value_type;
- typedef typename M::const_reference const_reference;
- typedef typename boost::mpl::if_<boost::is_const<M>,
- typename M::const_reference,
- typename M::reference>::type reference;
- typedef typename boost::mpl::if_<boost::is_const<M>,
- typename M::const_closure_type,
- typename M::closure_type>::type matrix_closure_type;
- typedef const self_type const_closure_type;
- typedef self_type closure_type;
- // Replaced by _temporary_traits to avoid type requirements on M
- //typedef typename M::vector_temporary_type vector_temporary_type;
- //typedef typename M::matrix_temporary_type matrix_temporary_type;
- typedef typename storage_restrict_traits<typename M::storage_category,
- packed_proxy_tag>::storage_category storage_category;
- typedef typename M::orientation_category orientation_category;
- // Construction and destruction
- BOOST_UBLAS_INLINE
- banded_adaptor (matrix_type &data, size_type lower = 0, size_type upper = 0):
- matrix_expression<self_type> (),
- data_ (data), lower_ (lower), upper_ (upper) {}
- BOOST_UBLAS_INLINE
- banded_adaptor (const banded_adaptor &m):
- matrix_expression<self_type> (),
- data_ (m.data_), lower_ (m.lower_), upper_ (m.upper_) {}
- // Accessors
- BOOST_UBLAS_INLINE
- size_type size1 () const {
- return data_.size1 ();
- }
- BOOST_UBLAS_INLINE
- size_type size2 () const {
- return data_.size2 ();
- }
- BOOST_UBLAS_INLINE
- size_type lower () const {
- return lower_;
- }
- BOOST_UBLAS_INLINE
- size_type upper () const {
- return upper_;
- }
- // Storage accessors
- BOOST_UBLAS_INLINE
- const matrix_closure_type &data () const {
- return data_;
- }
- BOOST_UBLAS_INLINE
- matrix_closure_type &data () {
- return data_;
- }
- #if !defined (BOOST_UBLAS_OWN_BANDED)||(BOOST_UBLAS_LEGACY_BANDED)
- BOOST_UBLAS_INLINE
- bool is_element_in_band(size_type i, size_type j) const{
- //return (upper_+i >= j) && i <= std::min(size1() - 1, j + lower_); // We don't need to check if i is outside because it is checked anyway in the accessors.
- return (upper_+i >= j) && i <= ( j + lower_); // Essentially this band has "infinite" positive dimensions
- }
- #endif
- // Element access
- #ifndef BOOST_UBLAS_PROXY_CONST_MEMBER
- BOOST_UBLAS_INLINE
- const_reference operator () (size_type i, size_type j) const {
- BOOST_UBLAS_CHECK (i < size1 (), bad_index ());
- BOOST_UBLAS_CHECK (j < size2 (), bad_index ());
- #ifdef BOOST_UBLAS_OWN_BANDED
- size_type k = (std::max) (i, j);
- size_type l = lower_ + j - i;
- if (k < (std::max) (size1 (), size2 ()) &&
- l < lower_ + 1 + upper_)
- return data () (i, j);
- #elif BOOST_UBLAS_LEGACY_BANDED
- size_type k = j;
- size_type l = upper_ + i - j;
- if (k < size2 () &&
- l < lower_ + 1 + upper_)
- return data () (i, j);
- #else
- if (is_element_in_band( i, j))
- return data () (i, j);
- #endif
- return zero_;
- }
- BOOST_UBLAS_INLINE
- reference operator () (size_type i, size_type j) {
- BOOST_UBLAS_CHECK (i < size1 (), bad_index ());
- BOOST_UBLAS_CHECK (j < size2 (), bad_index ());
- #ifdef BOOST_UBLAS_OWN_BANDED
- size_type k = (std::max) (i, j);
- size_type l = lower_ + j - i;
- if (k < (std::max) (size1 (), size2 ()) &&
- l < lower_ + 1 + upper_)
- return data () (i, j);
- #elif BOOST_UBLAS_LEGACY_BANDED
- size_type k = j;
- size_type l = upper_ + i - j;
- if (k < size2 () &&
- l < lower_ + 1 + upper_)
- return data () (i, j);
- #else
- if (is_element_in_band( i, j))
- return data () (i, j);
- #endif
- #ifndef BOOST_UBLAS_REFERENCE_CONST_MEMBER
- bad_index ().raise ();
- #endif
- return const_cast<reference>(zero_);
- }
- #else
- BOOST_UBLAS_INLINE
- reference operator () (size_type i, size_type j) const {
- BOOST_UBLAS_CHECK (i < size1 (), bad_index ());
- BOOST_UBLAS_CHECK (j < size2 (), bad_index ());
- #ifdef BOOST_UBLAS_OWN_BANDED
- size_type k = (std::max) (i, j);
- size_type l = lower_ + j - i;
- if (k < (std::max) (size1 (), size2 ()) &&
- l < lower_ + 1 + upper_)
- return data () (i, j);
- #elif BOOST_UBLAS_LEGACY_BANDED
- size_type k = j;
- size_type l = upper_ + i - j;
- if (k < size2 () &&
- l < lower_ + 1 + upper_)
- return data () (i, j);
- #else
- if (is_element_in_band( i, j))
- return data () (i, j);
- #endif
- #ifndef BOOST_UBLAS_REFERENCE_CONST_MEMBER
- bad_index ().raise ();
- #endif
- return const_cast<reference>(zero_);
- }
- #endif
- // Assignment
- BOOST_UBLAS_INLINE
- banded_adaptor &operator = (const banded_adaptor &m) {
- matrix_assign<scalar_assign> (*this, m);
- return *this;
- }
- BOOST_UBLAS_INLINE
- banded_adaptor &assign_temporary (banded_adaptor &m) {
- *this = m;
- return *this;
- }
- template<class AE>
- BOOST_UBLAS_INLINE
- banded_adaptor &operator = (const matrix_expression<AE> &ae) {
- matrix_assign<scalar_assign> (*this, matrix<value_type> (ae));
- return *this;
- }
- template<class AE>
- BOOST_UBLAS_INLINE
- banded_adaptor &assign (const matrix_expression<AE> &ae) {
- matrix_assign<scalar_assign> (*this, ae);
- return *this;
- }
- template<class AE>
- BOOST_UBLAS_INLINE
- banded_adaptor& operator += (const matrix_expression<AE> &ae) {
- matrix_assign<scalar_assign> (*this, matrix<value_type> (*this + ae));
- return *this;
- }
- template<class AE>
- BOOST_UBLAS_INLINE
- banded_adaptor &plus_assign (const matrix_expression<AE> &ae) {
- matrix_assign<scalar_plus_assign> (*this, ae);
- return *this;
- }
- template<class AE>
- BOOST_UBLAS_INLINE
- banded_adaptor& operator -= (const matrix_expression<AE> &ae) {
- matrix_assign<scalar_assign> (*this, matrix<value_type> (*this - ae));
- return *this;
- }
- template<class AE>
- BOOST_UBLAS_INLINE
- banded_adaptor &minus_assign (const matrix_expression<AE> &ae) {
- matrix_assign<scalar_minus_assign> (*this, ae);
- return *this;
- }
- template<class AT>
- BOOST_UBLAS_INLINE
- banded_adaptor& operator *= (const AT &at) {
- matrix_assign_scalar<scalar_multiplies_assign> (*this, at);
- return *this;
- }
- template<class AT>
- BOOST_UBLAS_INLINE
- banded_adaptor& operator /= (const AT &at) {
- matrix_assign_scalar<scalar_divides_assign> (*this, at);
- return *this;
- }
- // Closure comparison
- BOOST_UBLAS_INLINE
- bool same_closure (const banded_adaptor &ba) const {
- return (*this).data ().same_closure (ba.data ());
- }
- // Swapping
- BOOST_UBLAS_INLINE
- void swap (banded_adaptor &m) {
- if (this != &m) {
- BOOST_UBLAS_CHECK (lower_ == m.lower_, bad_size ());
- BOOST_UBLAS_CHECK (upper_ == m.upper_, bad_size ());
- matrix_swap<scalar_swap> (*this, m);
- }
- }
- BOOST_UBLAS_INLINE
- friend void swap (banded_adaptor &m1, banded_adaptor &m2) {
- m1.swap (m2);
- }
- // Iterator types
- private:
- // Use the matrix iterator
- typedef typename M::const_iterator1 const_subiterator1_type;
- typedef typename boost::mpl::if_<boost::is_const<M>,
- typename M::const_iterator1,
- typename M::iterator1>::type subiterator1_type;
- typedef typename M::const_iterator2 const_subiterator2_type;
- typedef typename boost::mpl::if_<boost::is_const<M>,
- typename M::const_iterator2,
- typename M::iterator2>::type subiterator2_type;
- public:
- #ifdef BOOST_UBLAS_USE_INDEXED_ITERATOR
- typedef indexed_iterator1<self_type, packed_random_access_iterator_tag> iterator1;
- typedef indexed_iterator2<self_type, packed_random_access_iterator_tag> iterator2;
- typedef indexed_const_iterator1<self_type, packed_random_access_iterator_tag> const_iterator1;
- typedef indexed_const_iterator2<self_type, packed_random_access_iterator_tag> const_iterator2;
- #else
- class const_iterator1;
- class iterator1;
- class const_iterator2;
- class iterator2;
- #endif
- typedef reverse_iterator_base1<const_iterator1> const_reverse_iterator1;
- typedef reverse_iterator_base1<iterator1> reverse_iterator1;
- typedef reverse_iterator_base2<const_iterator2> const_reverse_iterator2;
- typedef reverse_iterator_base2<iterator2> reverse_iterator2;
- // Element lookup
- BOOST_UBLAS_INLINE
- const_iterator1 find1 (int rank, size_type i, size_type j) const {
- if (rank == 1) {
- size_type lower_i = (std::max) (difference_type (j - upper_), difference_type (0));
- i = (std::max) (i, lower_i);
- size_type upper_i = (std::min) (j + 1 + lower_, size1 ());
- i = (std::min) (i, upper_i);
- }
- return const_iterator1 (*this, data ().find1 (rank, i, j));
- }
- BOOST_UBLAS_INLINE
- iterator1 find1 (int rank, size_type i, size_type j) {
- if (rank == 1) {
- size_type lower_i = (std::max) (difference_type (j - upper_), difference_type (0));
- i = (std::max) (i, lower_i);
- size_type upper_i = (std::min) (j + 1 + lower_, size1 ());
- i = (std::min) (i, upper_i);
- }
- return iterator1 (*this, data ().find1 (rank, i, j));
- }
- BOOST_UBLAS_INLINE
- const_iterator2 find2 (int rank, size_type i, size_type j) const {
- if (rank == 1) {
- size_type lower_j = (std::max) (difference_type (i - lower_), difference_type (0));
- j = (std::max) (j, lower_j);
- size_type upper_j = (std::min) (i + 1 + upper_, size2 ());
- j = (std::min) (j, upper_j);
- }
- return const_iterator2 (*this, data ().find2 (rank, i, j));
- }
- BOOST_UBLAS_INLINE
- iterator2 find2 (int rank, size_type i, size_type j) {
- if (rank == 1) {
- size_type lower_j = (std::max) (difference_type (i - lower_), difference_type (0));
- j = (std::max) (j, lower_j);
- size_type upper_j = (std::min) (i + 1 + upper_, size2 ());
- j = (std::min) (j, upper_j);
- }
- return iterator2 (*this, data ().find2 (rank, i, j));
- }
- // Iterators simply are indices.
- #ifndef BOOST_UBLAS_USE_INDEXED_ITERATOR
- class const_iterator1:
- public container_const_reference<banded_adaptor>,
- public random_access_iterator_base<typename iterator_restrict_traits<
- typename const_subiterator1_type::iterator_category, packed_random_access_iterator_tag>::iterator_category,
- const_iterator1, value_type> {
- public:
- typedef typename const_subiterator1_type::value_type value_type;
- typedef typename const_subiterator1_type::difference_type difference_type;
- typedef typename const_subiterator1_type::reference reference;
- typedef typename const_subiterator1_type::pointer pointer;
- typedef const_iterator2 dual_iterator_type;
- typedef const_reverse_iterator2 dual_reverse_iterator_type;
- // Construction and destruction
- BOOST_UBLAS_INLINE
- const_iterator1 ():
- container_const_reference<self_type> (), it1_ () {}
- BOOST_UBLAS_INLINE
- const_iterator1 (const self_type &m, const const_subiterator1_type &it1):
- container_const_reference<self_type> (m), it1_ (it1) {}
- BOOST_UBLAS_INLINE
- const_iterator1 (const iterator1 &it):
- container_const_reference<self_type> (it ()), it1_ (it.it1_) {}
- // Arithmetic
- BOOST_UBLAS_INLINE
- const_iterator1 &operator ++ () {
- ++ it1_;
- return *this;
- }
- BOOST_UBLAS_INLINE
- const_iterator1 &operator -- () {
- -- it1_;
- return *this;
- }
- BOOST_UBLAS_INLINE
- const_iterator1 &operator += (difference_type n) {
- it1_ += n;
- return *this;
- }
- BOOST_UBLAS_INLINE
- const_iterator1 &operator -= (difference_type n) {
- it1_ -= n;
- return *this;
- }
- BOOST_UBLAS_INLINE
- difference_type operator - (const const_iterator1 &it) const {
- BOOST_UBLAS_CHECK (&(*this) () == &it (), external_logic ());
- return it1_ - it.it1_;
- }
- // Dereference
- BOOST_UBLAS_INLINE
- const_reference operator * () const {
- size_type i = index1 ();
- size_type j = index2 ();
- BOOST_UBLAS_CHECK (i < (*this) ().size1 (), bad_index ());
- BOOST_UBLAS_CHECK (j < (*this) ().size2 (), bad_index ());
- #ifdef BOOST_UBLAS_OWN_BANDED
- size_type k = (std::max) (i, j);
- size_type l = (*this) ().lower () + j - i;
- if (k < (std::max) ((*this) ().size1 (), (*this) ().size2 ()) &&
- l < (*this) ().lower () + 1 + (*this) ().upper ())
- return *it1_;
- #else
- size_type k = j;
- size_type l = (*this) ().upper () + i - j;
- if (k < (*this) ().size2 () &&
- l < (*this) ().lower () + 1 + (*this) ().upper ())
- return *it1_;
- #endif
- return (*this) () (i, j);
- }
- BOOST_UBLAS_INLINE
- const_reference operator [] (difference_type n) const {
- return *(*this + n);
- }
- #ifndef BOOST_UBLAS_NO_NESTED_CLASS_RELATION
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- const_iterator2 begin () const {
- return (*this) ().find2 (1, index1 (), 0);
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- const_iterator2 cbegin () const {
- return begin ();
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- const_iterator2 end () const {
- return (*this) ().find2 (1, index1 (), (*this) ().size2 ());
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- const_iterator2 cend () const {
- return end ();
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- const_reverse_iterator2 rbegin () const {
- return const_reverse_iterator2 (end ());
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- const_reverse_iterator2 crbegin () const {
- return rbegin ();
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- const_reverse_iterator2 rend () const {
- return const_reverse_iterator2 (begin ());
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- const_reverse_iterator2 crend () const {
- return rend ();
- }
- #endif
- // Indices
- BOOST_UBLAS_INLINE
- size_type index1 () const {
- return it1_.index1 ();
- }
- BOOST_UBLAS_INLINE
- size_type index2 () const {
- return it1_.index2 ();
- }
- // Assignment
- BOOST_UBLAS_INLINE
- const_iterator1 &operator = (const const_iterator1 &it) {
- container_const_reference<self_type>::assign (&it ());
- it1_ = it.it1_;
- return *this;
- }
- // Comparison
- BOOST_UBLAS_INLINE
- bool operator == (const const_iterator1 &it) const {
- BOOST_UBLAS_CHECK (&(*this) () == &it (), external_logic ());
- return it1_ == it.it1_;
- }
- BOOST_UBLAS_INLINE
- bool operator < (const const_iterator1 &it) const {
- BOOST_UBLAS_CHECK (&(*this) () == &it (), external_logic ());
- return it1_ < it.it1_;
- }
- private:
- const_subiterator1_type it1_;
- };
- #endif
- BOOST_UBLAS_INLINE
- const_iterator1 begin1 () const {
- return find1 (0, 0, 0);
- }
- BOOST_UBLAS_INLINE
- const_iterator1 cbegin1 () const {
- return begin1 ();
- }
- BOOST_UBLAS_INLINE
- const_iterator1 end1 () const {
- return find1 (0, size1 (), 0);
- }
- BOOST_UBLAS_INLINE
- const_iterator1 cend1 () const {
- return end1 ();
- }
- #ifndef BOOST_UBLAS_USE_INDEXED_ITERATOR
- class iterator1:
- public container_reference<banded_adaptor>,
- public random_access_iterator_base<typename iterator_restrict_traits<
- typename subiterator1_type::iterator_category, packed_random_access_iterator_tag>::iterator_category,
- iterator1, value_type> {
- public:
- typedef typename subiterator1_type::value_type value_type;
- typedef typename subiterator1_type::difference_type difference_type;
- typedef typename subiterator1_type::reference reference;
- typedef typename subiterator1_type::pointer pointer;
- typedef iterator2 dual_iterator_type;
- typedef reverse_iterator2 dual_reverse_iterator_type;
- // Construction and destruction
- BOOST_UBLAS_INLINE
- iterator1 ():
- container_reference<self_type> (), it1_ () {}
- BOOST_UBLAS_INLINE
- iterator1 (self_type &m, const subiterator1_type &it1):
- container_reference<self_type> (m), it1_ (it1) {}
- // Arithmetic
- BOOST_UBLAS_INLINE
- iterator1 &operator ++ () {
- ++ it1_;
- return *this;
- }
- BOOST_UBLAS_INLINE
- iterator1 &operator -- () {
- -- it1_;
- return *this;
- }
- BOOST_UBLAS_INLINE
- iterator1 &operator += (difference_type n) {
- it1_ += n;
- return *this;
- }
- BOOST_UBLAS_INLINE
- iterator1 &operator -= (difference_type n) {
- it1_ -= n;
- return *this;
- }
- BOOST_UBLAS_INLINE
- difference_type operator - (const iterator1 &it) const {
- BOOST_UBLAS_CHECK (&(*this) () == &it (), external_logic ());
- return it1_ - it.it1_;
- }
- // Dereference
- BOOST_UBLAS_INLINE
- reference operator * () const {
- size_type i = index1 ();
- size_type j = index2 ();
- BOOST_UBLAS_CHECK (i < (*this) ().size1 (), bad_index ());
- BOOST_UBLAS_CHECK (j < (*this) ().size2 (), bad_index ());
- #ifdef BOOST_UBLAS_OWN_BANDED
- size_type k = (std::max) (i, j);
- size_type l = (*this) ().lower () + j - i;
- if (k < (std::max) ((*this) ().size1 (), (*this) ().size2 ()) &&
- l < (*this) ().lower () + 1 + (*this) ().upper ())
- return *it1_;
- #else
- size_type k = j;
- size_type l = (*this) ().upper () + i - j;
- if (k < (*this) ().size2 () &&
- l < (*this) ().lower () + 1 + (*this) ().upper ())
- return *it1_;
- #endif
- return (*this) () (i, j);
- }
- BOOST_UBLAS_INLINE
- reference operator [] (difference_type n) const {
- return *(*this + n);
- }
- #ifndef BOOST_UBLAS_NO_NESTED_CLASS_RELATION
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- iterator2 begin () const {
- return (*this) ().find2 (1, index1 (), 0);
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- iterator2 end () const {
- return (*this) ().find2 (1, index1 (), (*this) ().size2 ());
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- reverse_iterator2 rbegin () const {
- return reverse_iterator2 (end ());
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- reverse_iterator2 rend () const {
- return reverse_iterator2 (begin ());
- }
- #endif
- // Indices
- BOOST_UBLAS_INLINE
- size_type index1 () const {
- return it1_.index1 ();
- }
- BOOST_UBLAS_INLINE
- size_type index2 () const {
- return it1_.index2 ();
- }
- // Assignment
- BOOST_UBLAS_INLINE
- iterator1 &operator = (const iterator1 &it) {
- container_reference<self_type>::assign (&it ());
- it1_ = it.it1_;
- return *this;
- }
- // Comparison
- BOOST_UBLAS_INLINE
- bool operator == (const iterator1 &it) const {
- BOOST_UBLAS_CHECK (&(*this) () == &it (), external_logic ());
- return it1_ == it.it1_;
- }
- BOOST_UBLAS_INLINE
- bool operator < (const iterator1 &it) const {
- BOOST_UBLAS_CHECK (&(*this) () == &it (), external_logic ());
- return it1_ < it.it1_;
- }
- private:
- subiterator1_type it1_;
- friend class const_iterator1;
- };
- #endif
- BOOST_UBLAS_INLINE
- iterator1 begin1 () {
- return find1 (0, 0, 0);
- }
- BOOST_UBLAS_INLINE
- iterator1 end1 () {
- return find1 (0, size1 (), 0);
- }
- #ifndef BOOST_UBLAS_USE_INDEXED_ITERATOR
- class const_iterator2:
- public container_const_reference<banded_adaptor>,
- public random_access_iterator_base<packed_random_access_iterator_tag,
- const_iterator2, value_type> {
- public:
- typedef typename iterator_restrict_traits<typename const_subiterator2_type::iterator_category,
- packed_random_access_iterator_tag>::iterator_category iterator_category;
- typedef typename const_subiterator2_type::value_type value_type;
- typedef typename const_subiterator2_type::difference_type difference_type;
- typedef typename const_subiterator2_type::reference reference;
- typedef typename const_subiterator2_type::pointer pointer;
- typedef const_iterator1 dual_iterator_type;
- typedef const_reverse_iterator1 dual_reverse_iterator_type;
- // Construction and destruction
- BOOST_UBLAS_INLINE
- const_iterator2 ():
- container_const_reference<self_type> (), it2_ () {}
- BOOST_UBLAS_INLINE
- const_iterator2 (const self_type &m, const const_subiterator2_type &it2):
- container_const_reference<self_type> (m), it2_ (it2) {}
- BOOST_UBLAS_INLINE
- const_iterator2 (const iterator2 &it):
- container_const_reference<self_type> (it ()), it2_ (it.it2_) {}
- // Arithmetic
- BOOST_UBLAS_INLINE
- const_iterator2 &operator ++ () {
- ++ it2_;
- return *this;
- }
- BOOST_UBLAS_INLINE
- const_iterator2 &operator -- () {
- -- it2_;
- return *this;
- }
- BOOST_UBLAS_INLINE
- const_iterator2 &operator += (difference_type n) {
- it2_ += n;
- return *this;
- }
- BOOST_UBLAS_INLINE
- const_iterator2 &operator -= (difference_type n) {
- it2_ -= n;
- return *this;
- }
- BOOST_UBLAS_INLINE
- difference_type operator - (const const_iterator2 &it) const {
- BOOST_UBLAS_CHECK (&(*this) () == &it (), external_logic ());
- return it2_ - it.it2_;
- }
- // Dereference
- BOOST_UBLAS_INLINE
- const_reference operator * () const {
- size_type i = index1 ();
- size_type j = index2 ();
- BOOST_UBLAS_CHECK (i < (*this) ().size1 (), bad_index ());
- BOOST_UBLAS_CHECK (j < (*this) ().size2 (), bad_index ());
- #ifdef BOOST_UBLAS_OWN_BANDED
- size_type k = (std::max) (i, j);
- size_type l = (*this) ().lower () + j - i;
- if (k < (std::max) ((*this) ().size1 (), (*this) ().size2 ()) &&
- l < (*this) ().lower () + 1 + (*this) ().upper ())
- return *it2_;
- #else
- size_type k = j;
- size_type l = (*this) ().upper () + i - j;
- if (k < (*this) ().size2 () &&
- l < (*this) ().lower () + 1 + (*this) ().upper ())
- return *it2_;
- #endif
- return (*this) () (i, j);
- }
- BOOST_UBLAS_INLINE
- const_reference operator [] (difference_type n) const {
- return *(*this + n);
- }
- #ifndef BOOST_UBLAS_NO_NESTED_CLASS_RELATION
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- const_iterator1 begin () const {
- return (*this) ().find1 (1, 0, index2 ());
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- const_iterator1 cbegin () const {
- return begin ();
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- const_iterator1 end () const {
- return (*this) ().find1 (1, (*this) ().size1 (), index2 ());
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- const_iterator1 cend () const {
- return end ();
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- const_reverse_iterator1 rbegin () const {
- return const_reverse_iterator1 (end ());
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- const_reverse_iterator1 crbegin () const {
- return rbegin ();
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- const_reverse_iterator1 rend () const {
- return const_reverse_iterator1 (begin ());
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- const_reverse_iterator1 crend () const {
- return rend ();
- }
- #endif
- // Indices
- BOOST_UBLAS_INLINE
- size_type index1 () const {
- return it2_.index1 ();
- }
- BOOST_UBLAS_INLINE
- size_type index2 () const {
- return it2_.index2 ();
- }
- // Assignment
- BOOST_UBLAS_INLINE
- const_iterator2 &operator = (const const_iterator2 &it) {
- container_const_reference<self_type>::assign (&it ());
- it2_ = it.it2_;
- return *this;
- }
- // Comparison
- BOOST_UBLAS_INLINE
- bool operator == (const const_iterator2 &it) const {
- BOOST_UBLAS_CHECK (&(*this) () == &it (), external_logic ());
- return it2_ == it.it2_;
- }
- BOOST_UBLAS_INLINE
- bool operator < (const const_iterator2 &it) const {
- BOOST_UBLAS_CHECK (&(*this) () == &it (), external_logic ());
- return it2_ < it.it2_;
- }
- private:
- const_subiterator2_type it2_;
- };
- #endif
- BOOST_UBLAS_INLINE
- const_iterator2 begin2 () const {
- return find2 (0, 0, 0);
- }
- BOOST_UBLAS_INLINE
- const_iterator2 cbegin2 () const {
- return begin2 ();
- }
- BOOST_UBLAS_INLINE
- const_iterator2 end2 () const {
- return find2 (0, 0, size2 ());
- }
- BOOST_UBLAS_INLINE
- const_iterator2 cend2 () const {
- return end2 ();
- }
- #ifndef BOOST_UBLAS_USE_INDEXED_ITERATOR
- class iterator2:
- public container_reference<banded_adaptor>,
- public random_access_iterator_base<typename iterator_restrict_traits<
- typename subiterator2_type::iterator_category, packed_random_access_iterator_tag>::iterator_category,
- iterator2, value_type> {
- public:
- typedef typename subiterator2_type::value_type value_type;
- typedef typename subiterator2_type::difference_type difference_type;
- typedef typename subiterator2_type::reference reference;
- typedef typename subiterator2_type::pointer pointer;
- typedef iterator1 dual_iterator_type;
- typedef reverse_iterator1 dual_reverse_iterator_type;
- // Construction and destruction
- BOOST_UBLAS_INLINE
- iterator2 ():
- container_reference<self_type> (), it2_ () {}
- BOOST_UBLAS_INLINE
- iterator2 (self_type &m, const subiterator2_type &it2):
- container_reference<self_type> (m), it2_ (it2) {}
- // Arithmetic
- BOOST_UBLAS_INLINE
- iterator2 &operator ++ () {
- ++ it2_;
- return *this;
- }
- BOOST_UBLAS_INLINE
- iterator2 &operator -- () {
- -- it2_;
- return *this;
- }
- BOOST_UBLAS_INLINE
- iterator2 &operator += (difference_type n) {
- it2_ += n;
- return *this;
- }
- BOOST_UBLAS_INLINE
- iterator2 &operator -= (difference_type n) {
- it2_ -= n;
- return *this;
- }
- BOOST_UBLAS_INLINE
- difference_type operator - (const iterator2 &it) const {
- BOOST_UBLAS_CHECK (&(*this) () == &it (), external_logic ());
- return it2_ - it.it2_;
- }
- // Dereference
- BOOST_UBLAS_INLINE
- reference operator * () const {
- size_type i = index1 ();
- size_type j = index2 ();
- BOOST_UBLAS_CHECK (i < (*this) ().size1 (), bad_index ());
- BOOST_UBLAS_CHECK (j < (*this) ().size2 (), bad_index ());
- #ifdef BOOST_UBLAS_OWN_BANDED
- size_type k = (std::max) (i, j);
- size_type l = (*this) ().lower () + j - i;
- if (k < (std::max) ((*this) ().size1 (), (*this) ().size2 ()) &&
- l < (*this) ().lower () + 1 + (*this) ().upper ())
- return *it2_;
- #else
- size_type k = j;
- size_type l = (*this) ().upper () + i - j;
- if (k < (*this) ().size2 () &&
- l < (*this) ().lower () + 1 + (*this) ().upper ())
- return *it2_;
- #endif
- return (*this) () (i, j);
- }
- BOOST_UBLAS_INLINE
- reference operator [] (difference_type n) const {
- return *(*this + n);
- }
- #ifndef BOOST_UBLAS_NO_NESTED_CLASS_RELATION
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- iterator1 begin () const {
- return (*this) ().find1 (1, 0, index2 ());
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- iterator1 end () const {
- return (*this) ().find1 (1, (*this) ().size1 (), index2 ());
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- reverse_iterator1 rbegin () const {
- return reverse_iterator1 (end ());
- }
- BOOST_UBLAS_INLINE
- #ifdef BOOST_UBLAS_MSVC_NESTED_CLASS_RELATION
- typename self_type::
- #endif
- reverse_iterator1 rend () const {
- return reverse_iterator1 (begin ());
- }
- #endif
- // Indices
- BOOST_UBLAS_INLINE
- size_type index1 () const {
- return it2_.index1 ();
- }
- BOOST_UBLAS_INLINE
- size_type index2 () const {
- return it2_.index2 ();
- }
- // Assignment
- BOOST_UBLAS_INLINE
- iterator2 &operator = (const iterator2 &it) {
- container_reference<self_type>::assign (&it ());
- it2_ = it.it2_;
- return *this;
- }
- // Comparison
- BOOST_UBLAS_INLINE
- bool operator == (const iterator2 &it) const {
- BOOST_UBLAS_CHECK (&(*this) () == &it (), external_logic ());
- return it2_ == it.it2_;
- }
- BOOST_UBLAS_INLINE
- bool operator < (const iterator2 &it) const {
- BOOST_UBLAS_CHECK (&(*this) () == &it (), external_logic ());
- return it2_ < it.it2_;
- }
- private:
- subiterator2_type it2_;
- friend class const_iterator2;
- };
- #endif
- BOOST_UBLAS_INLINE
- iterator2 begin2 () {
- return find2 (0, 0, 0);
- }
- BOOST_UBLAS_INLINE
- iterator2 end2 () {
- return find2 (0, 0, size2 ());
- }
- // Reverse iterators
- BOOST_UBLAS_INLINE
- const_reverse_iterator1 rbegin1 () const {
- return const_reverse_iterator1 (end1 ());
- }
- BOOST_UBLAS_INLINE
- const_reverse_iterator1 crbegin1 () const {
- return rbegin1 ();
- }
- BOOST_UBLAS_INLINE
- const_reverse_iterator1 rend1 () const {
- return const_reverse_iterator1 (begin1 ());
- }
- BOOST_UBLAS_INLINE
- const_reverse_iterator1 crend1 () const {
- return rend1 ();
- }
- BOOST_UBLAS_INLINE
- reverse_iterator1 rbegin1 () {
- return reverse_iterator1 (end1 ());
- }
- BOOST_UBLAS_INLINE
- reverse_iterator1 rend1 () {
- return reverse_iterator1 (begin1 ());
- }
- BOOST_UBLAS_INLINE
- const_reverse_iterator2 rbegin2 () const {
- return const_reverse_iterator2 (end2 ());
- }
- BOOST_UBLAS_INLINE
- const_reverse_iterator2 crbegin2 () const {
- return rbegin2 ();
- }
- BOOST_UBLAS_INLINE
- const_reverse_iterator2 rend2 () const {
- return const_reverse_iterator2 (begin2 ());
- }
- BOOST_UBLAS_INLINE
- const_reverse_iterator2 crend2 () const {
- return rend2 ();
- }
- BOOST_UBLAS_INLINE
- reverse_iterator2 rbegin2 () {
- return reverse_iterator2 (end2 ());
- }
- BOOST_UBLAS_INLINE
- reverse_iterator2 rend2 () {
- return reverse_iterator2 (begin2 ());
- }
- private:
- matrix_closure_type data_;
- size_type lower_;
- size_type upper_;
- typedef const value_type const_value_type;
- static const_value_type zero_;
- };
- // Specialization for temporary_traits
- template <class M>
- struct vector_temporary_traits< banded_adaptor<M> >
- : vector_temporary_traits< M > {} ;
- template <class M>
- struct vector_temporary_traits< const banded_adaptor<M> >
- : vector_temporary_traits< M > {} ;
- template <class M>
- struct matrix_temporary_traits< banded_adaptor<M> >
- : matrix_temporary_traits< M > {} ;
- template <class M>
- struct matrix_temporary_traits< const banded_adaptor<M> >
- : matrix_temporary_traits< M > {} ;
- template<class M>
- typename banded_adaptor<M>::const_value_type banded_adaptor<M>::zero_ = value_type/*zero*/();
- /** \brief A diagonal matrix adaptator: convert a any matrix into a diagonal matrix expression
- *
- * For a \f$(m\times m)\f$-dimensional matrix, the \c diagonal_adaptor will provide a diagonal matrix
- * with \f$0 \leq i < m\f$ and \f$0 \leq j < m\f$, if \f$i\neq j\f$ then \f$b_{i,j}=0\f$.
- *
- * Storage and location are based on those of the underlying matrix. This is important because
- * a \c diagonal_adaptor does not copy the matrix data to a new place. Therefore, modifying values
- * in a \c diagonal_adaptor matrix will also modify the underlying matrix too.
- *
- * \tparam M the type of matrix used to generate the diagonal matrix
- */
- template<class M>
- class diagonal_adaptor:
- public banded_adaptor<M> {
- public:
- typedef M matrix_type;
- typedef banded_adaptor<M> adaptor_type;
- // Construction and destruction
- BOOST_UBLAS_INLINE
- diagonal_adaptor ():
- adaptor_type () {}
- BOOST_UBLAS_INLINE
- diagonal_adaptor (matrix_type &data):
- adaptor_type (data) {}
- BOOST_UBLAS_INLINE
- ~diagonal_adaptor () {}
- // Assignment
- BOOST_UBLAS_INLINE
- diagonal_adaptor &operator = (const diagonal_adaptor &m) {
- adaptor_type::operator = (m);
- return *this;
- }
- template<class AE>
- BOOST_UBLAS_INLINE
- diagonal_adaptor &operator = (const matrix_expression<AE> &ae) {
- adaptor_type::operator = (ae);
- return *this;
- }
- };
- }}}
- #endif
|