123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112 |
- //
- // Copyright (c) 2000-2009
- // Joerg Walter, Mathias Koch, Gunter Winkler
- //
- // 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_FUNCTIONAL_
- #define _BOOST_UBLAS_FUNCTIONAL_
- #include <functional>
- #include <boost/core/ignore_unused.hpp>
- #include <boost/numeric/ublas/traits.hpp>
- #ifdef BOOST_UBLAS_USE_DUFF_DEVICE
- #include <boost/numeric/ublas/detail/duff.hpp>
- #endif
- #ifdef BOOST_UBLAS_USE_SIMD
- #include <boost/numeric/ublas/detail/raw.hpp>
- #else
- namespace boost { namespace numeric { namespace ublas { namespace raw {
- }}}}
- #endif
- #ifdef BOOST_UBLAS_HAVE_BINDINGS
- #include <boost/numeric/bindings/traits/std_vector.hpp>
- #include <boost/numeric/bindings/traits/ublas_vector.hpp>
- #include <boost/numeric/bindings/traits/ublas_matrix.hpp>
- #include <boost/numeric/bindings/atlas/cblas.hpp>
- #endif
- #include <boost/numeric/ublas/detail/definitions.hpp>
- namespace boost { namespace numeric { namespace ublas {
- // Scalar functors
- // Unary
- template<class T>
- struct scalar_unary_functor {
- typedef T value_type;
- typedef typename type_traits<T>::const_reference argument_type;
- typedef typename type_traits<T>::value_type result_type;
- };
- template<class T>
- struct scalar_identity:
- public scalar_unary_functor<T> {
- typedef typename scalar_unary_functor<T>::argument_type argument_type;
- typedef typename scalar_unary_functor<T>::result_type result_type;
- static BOOST_UBLAS_INLINE
- result_type apply (argument_type t) {
- return t;
- }
- };
- template<class T>
- struct scalar_negate:
- public scalar_unary_functor<T> {
- typedef typename scalar_unary_functor<T>::argument_type argument_type;
- typedef typename scalar_unary_functor<T>::result_type result_type;
- static BOOST_UBLAS_INLINE
- result_type apply (argument_type t) {
- return - t;
- }
- };
- template<class T>
- struct scalar_conj:
- public scalar_unary_functor<T> {
- typedef typename scalar_unary_functor<T>::value_type value_type;
- typedef typename scalar_unary_functor<T>::argument_type argument_type;
- typedef typename scalar_unary_functor<T>::result_type result_type;
- static BOOST_UBLAS_INLINE
- result_type apply (argument_type t) {
- return type_traits<value_type>::conj (t);
- }
- };
- // Unary returning real
- template<class T>
- struct scalar_real_unary_functor {
- typedef T value_type;
- typedef typename type_traits<T>::const_reference argument_type;
- typedef typename type_traits<T>::real_type result_type;
- };
- template<class T>
- struct scalar_real:
- public scalar_real_unary_functor<T> {
- typedef typename scalar_real_unary_functor<T>::value_type value_type;
- typedef typename scalar_real_unary_functor<T>::argument_type argument_type;
- typedef typename scalar_real_unary_functor<T>::result_type result_type;
- static BOOST_UBLAS_INLINE
- result_type apply (argument_type t) {
- return type_traits<value_type>::real (t);
- }
- };
- template<class T>
- struct scalar_imag:
- public scalar_real_unary_functor<T> {
- typedef typename scalar_real_unary_functor<T>::value_type value_type;
- typedef typename scalar_real_unary_functor<T>::argument_type argument_type;
- typedef typename scalar_real_unary_functor<T>::result_type result_type;
- static BOOST_UBLAS_INLINE
- result_type apply (argument_type t) {
- return type_traits<value_type>::imag (t);
- }
- };
- // Binary
- template<class T1, class T2>
- struct scalar_binary_functor {
- typedef typename type_traits<T1>::const_reference argument1_type;
- typedef typename type_traits<T2>::const_reference argument2_type;
- typedef typename promote_traits<T1, T2>::promote_type result_type;
- };
- template<class T1, class T2>
- struct scalar_plus:
- public scalar_binary_functor<T1, T2> {
- typedef typename scalar_binary_functor<T1, T2>::argument1_type argument1_type;
- typedef typename scalar_binary_functor<T1, T2>::argument2_type argument2_type;
- typedef typename scalar_binary_functor<T1, T2>::result_type result_type;
- static BOOST_UBLAS_INLINE
- result_type apply (argument1_type t1, argument2_type t2) {
- return t1 + t2;
- }
- };
- template<class T1, class T2>
- struct scalar_minus:
- public scalar_binary_functor<T1, T2> {
- typedef typename scalar_binary_functor<T1, T2>::argument1_type argument1_type;
- typedef typename scalar_binary_functor<T1, T2>::argument2_type argument2_type;
- typedef typename scalar_binary_functor<T1, T2>::result_type result_type;
- static BOOST_UBLAS_INLINE
- result_type apply (argument1_type t1, argument2_type t2) {
- return t1 - t2;
- }
- };
- template<class T1, class T2>
- struct scalar_multiplies:
- public scalar_binary_functor<T1, T2> {
- typedef typename scalar_binary_functor<T1, T2>::argument1_type argument1_type;
- typedef typename scalar_binary_functor<T1, T2>::argument2_type argument2_type;
- typedef typename scalar_binary_functor<T1, T2>::result_type result_type;
- static BOOST_UBLAS_INLINE
- result_type apply (argument1_type t1, argument2_type t2) {
- return t1 * t2;
- }
- };
- template<class T1, class T2>
- struct scalar_divides:
- public scalar_binary_functor<T1, T2> {
- typedef typename scalar_binary_functor<T1, T2>::argument1_type argument1_type;
- typedef typename scalar_binary_functor<T1, T2>::argument2_type argument2_type;
- typedef typename scalar_binary_functor<T1, T2>::result_type result_type;
- static BOOST_UBLAS_INLINE
- result_type apply (argument1_type t1, argument2_type t2) {
- return t1 / t2;
- }
- };
- template<class T1, class T2>
- struct scalar_binary_assign_functor {
- // ISSUE Remove reference to avoid reference to reference problems
- typedef typename type_traits<typename boost::remove_reference<T1>::type>::reference argument1_type;
- typedef typename type_traits<T2>::const_reference argument2_type;
- };
- struct assign_tag {};
- struct computed_assign_tag {};
- template<class T1, class T2>
- struct scalar_assign:
- public scalar_binary_assign_functor<T1, T2> {
- typedef typename scalar_binary_assign_functor<T1, T2>::argument1_type argument1_type;
- typedef typename scalar_binary_assign_functor<T1, T2>::argument2_type argument2_type;
- #if BOOST_WORKAROUND( __IBMCPP__, <=600 )
- static const bool computed ;
- #else
- static const bool computed = false ;
- #endif
- static BOOST_UBLAS_INLINE
- void apply (argument1_type t1, argument2_type t2) {
- t1 = t2;
- }
- template<class U1, class U2>
- struct rebind {
- typedef scalar_assign<U1, U2> other;
- };
- };
- #if BOOST_WORKAROUND( __IBMCPP__, <=600 )
- template<class T1, class T2>
- const bool scalar_assign<T1,T2>::computed = false;
- #endif
- template<class T1, class T2>
- struct scalar_plus_assign:
- public scalar_binary_assign_functor<T1, T2> {
- typedef typename scalar_binary_assign_functor<T1, T2>::argument1_type argument1_type;
- typedef typename scalar_binary_assign_functor<T1, T2>::argument2_type argument2_type;
- #if BOOST_WORKAROUND( __IBMCPP__, <=600 )
- static const bool computed ;
- #else
- static const bool computed = true ;
- #endif
- static BOOST_UBLAS_INLINE
- void apply (argument1_type t1, argument2_type t2) {
- t1 += t2;
- }
- template<class U1, class U2>
- struct rebind {
- typedef scalar_plus_assign<U1, U2> other;
- };
- };
- #if BOOST_WORKAROUND( __IBMCPP__, <=600 )
- template<class T1, class T2>
- const bool scalar_plus_assign<T1,T2>::computed = true;
- #endif
- template<class T1, class T2>
- struct scalar_minus_assign:
- public scalar_binary_assign_functor<T1, T2> {
- typedef typename scalar_binary_assign_functor<T1, T2>::argument1_type argument1_type;
- typedef typename scalar_binary_assign_functor<T1, T2>::argument2_type argument2_type;
- #if BOOST_WORKAROUND( __IBMCPP__, <=600 )
- static const bool computed ;
- #else
- static const bool computed = true ;
- #endif
- static BOOST_UBLAS_INLINE
- void apply (argument1_type t1, argument2_type t2) {
- t1 -= t2;
- }
- template<class U1, class U2>
- struct rebind {
- typedef scalar_minus_assign<U1, U2> other;
- };
- };
- #if BOOST_WORKAROUND( __IBMCPP__, <=600 )
- template<class T1, class T2>
- const bool scalar_minus_assign<T1,T2>::computed = true;
- #endif
- template<class T1, class T2>
- struct scalar_multiplies_assign:
- public scalar_binary_assign_functor<T1, T2> {
- typedef typename scalar_binary_assign_functor<T1, T2>::argument1_type argument1_type;
- typedef typename scalar_binary_assign_functor<T1, T2>::argument2_type argument2_type;
- static const bool computed = true;
- static BOOST_UBLAS_INLINE
- void apply (argument1_type t1, argument2_type t2) {
- t1 *= t2;
- }
- template<class U1, class U2>
- struct rebind {
- typedef scalar_multiplies_assign<U1, U2> other;
- };
- };
- template<class T1, class T2>
- struct scalar_divides_assign:
- public scalar_binary_assign_functor<T1, T2> {
- typedef typename scalar_binary_assign_functor<T1, T2>::argument1_type argument1_type;
- typedef typename scalar_binary_assign_functor<T1, T2>::argument2_type argument2_type;
- static const bool computed ;
- static BOOST_UBLAS_INLINE
- void apply (argument1_type t1, argument2_type t2) {
- t1 /= t2;
- }
- template<class U1, class U2>
- struct rebind {
- typedef scalar_divides_assign<U1, U2> other;
- };
- };
- template<class T1, class T2>
- const bool scalar_divides_assign<T1,T2>::computed = true;
- template<class T1, class T2>
- struct scalar_binary_swap_functor {
- typedef typename type_traits<typename boost::remove_reference<T1>::type>::reference argument1_type;
- typedef typename type_traits<typename boost::remove_reference<T2>::type>::reference argument2_type;
- };
- template<class T1, class T2>
- struct scalar_swap:
- public scalar_binary_swap_functor<T1, T2> {
- typedef typename scalar_binary_swap_functor<T1, T2>::argument1_type argument1_type;
- typedef typename scalar_binary_swap_functor<T1, T2>::argument2_type argument2_type;
- static BOOST_UBLAS_INLINE
- void apply (argument1_type t1, argument2_type t2) {
- std::swap (t1, t2);
- }
- template<class U1, class U2>
- struct rebind {
- typedef scalar_swap<U1, U2> other;
- };
- };
- // Vector functors
- // Unary returning scalar
- template<class V>
- struct vector_scalar_unary_functor {
- typedef typename V::value_type value_type;
- typedef typename V::value_type result_type;
- };
- template<class V>
- struct vector_sum:
- public vector_scalar_unary_functor<V> {
- typedef typename vector_scalar_unary_functor<V>::value_type value_type;
- typedef typename vector_scalar_unary_functor<V>::result_type result_type;
- template<class E>
- static BOOST_UBLAS_INLINE
- result_type apply (const vector_expression<E> &e) {
- result_type t = result_type (0);
- typedef typename E::size_type vector_size_type;
- vector_size_type size (e ().size ());
- for (vector_size_type i = 0; i < size; ++ i)
- t += e () (i);
- return t;
- }
- // Dense case
- template<class D, class I>
- static BOOST_UBLAS_INLINE
- result_type apply (D size, I it) {
- result_type t = result_type (0);
- while (-- size >= 0)
- t += *it, ++ it;
- return t;
- }
- // Sparse case
- template<class I>
- static BOOST_UBLAS_INLINE
- result_type apply (I it, const I &it_end) {
- result_type t = result_type (0);
- while (it != it_end)
- t += *it, ++ it;
- return t;
- }
- };
- // Unary returning real scalar
- template<class V>
- struct vector_scalar_real_unary_functor {
- typedef typename V::value_type value_type;
- typedef typename type_traits<value_type>::real_type real_type;
- typedef real_type result_type;
- };
- template<class V>
- struct vector_norm_1:
- public vector_scalar_real_unary_functor<V> {
- typedef typename vector_scalar_real_unary_functor<V>::value_type value_type;
- typedef typename vector_scalar_real_unary_functor<V>::real_type real_type;
- typedef typename vector_scalar_real_unary_functor<V>::result_type result_type;
- template<class E>
- static BOOST_UBLAS_INLINE
- result_type apply (const vector_expression<E> &e) {
- real_type t = real_type ();
- typedef typename E::size_type vector_size_type;
- vector_size_type size (e ().size ());
- for (vector_size_type i = 0; i < size; ++ i) {
- real_type u (type_traits<value_type>::type_abs (e () (i)));
- t += u;
- }
- return t;
- }
- // Dense case
- template<class D, class I>
- static BOOST_UBLAS_INLINE
- result_type apply (D size, I it) {
- real_type t = real_type ();
- while (-- size >= 0) {
- real_type u (type_traits<value_type>::norm_1 (*it));
- t += u;
- ++ it;
- }
- return t;
- }
- // Sparse case
- template<class I>
- static BOOST_UBLAS_INLINE
- result_type apply (I it, const I &it_end) {
- real_type t = real_type ();
- while (it != it_end) {
- real_type u (type_traits<value_type>::norm_1 (*it));
- t += u;
- ++ it;
- }
- return t;
- }
- };
- template<class V>
- struct vector_norm_2:
- public vector_scalar_real_unary_functor<V> {
- typedef typename vector_scalar_real_unary_functor<V>::value_type value_type;
- typedef typename vector_scalar_real_unary_functor<V>::real_type real_type;
- typedef typename vector_scalar_real_unary_functor<V>::result_type result_type;
- template<class E>
- static BOOST_UBLAS_INLINE
- result_type apply (const vector_expression<E> &e) {
- typedef typename E::size_type vector_size_type;
- vector_size_type size (e ().size ());
- #ifndef BOOST_UBLAS_SCALED_NORM
- real_type t = real_type ();
- for (vector_size_type i = 0; i < size; ++ i) {
- real_type u (type_traits<value_type>::norm_2 (e () (i)));
- t += u * u;
- }
- return static_cast<result_type>(type_traits<real_type>::type_sqrt (t));
- #else
- real_type scale = real_type ();
- real_type sum_squares (1);
- for (vector_size_type i = 0; i < size; ++ i) {
- real_type u (type_traits<value_type>::norm_2 (e () (i)));
- if ( real_type () /* zero */ == u ) continue;
- if (scale < u) {
- real_type v (scale / u);
- sum_squares = sum_squares * v * v + real_type (1);
- scale = u;
- } else {
- real_type v (u / scale);
- sum_squares += v * v;
- }
- }
- return static_cast<result_type>(scale * type_traits<real_type>::type_sqrt (sum_squares));
- #endif
- }
- // Dense case
- template<class D, class I>
- static BOOST_UBLAS_INLINE
- result_type apply (D size, I it) {
- #ifndef BOOST_UBLAS_SCALED_NORM
- real_type t = real_type ();
- while (-- size >= 0) {
- real_type u (type_traits<value_type>::norm_2 (*it));
- t += u * u;
- ++ it;
- }
- return static_cast<result_type>(type_traits<real_type>::type_sqrt (t));
- #else
- real_type scale = real_type ();
- real_type sum_squares (1);
- while (-- size >= 0) {
- real_type u (type_traits<value_type>::norm_2 (*it));
- if (scale < u) {
- real_type v (scale / u);
- sum_squares = sum_squares * v * v + real_type (1);
- scale = u;
- } else {
- real_type v (u / scale);
- sum_squares += v * v;
- }
- ++ it;
- }
- return static_cast<result_type>(scale * type_traits<real_type>::type_sqrt (sum_squares));
- #endif
- }
- // Sparse case
- template<class I>
- static BOOST_UBLAS_INLINE
- result_type apply (I it, const I &it_end) {
- #ifndef BOOST_UBLAS_SCALED_NORM
- real_type t = real_type ();
- while (it != it_end) {
- real_type u (type_traits<value_type>::norm_2 (*it));
- t += u * u;
- ++ it;
- }
- return static_cast<result_type>(type_traits<real_type>::type_sqrt (t));
- #else
- real_type scale = real_type ();
- real_type sum_squares (1);
- while (it != it_end) {
- real_type u (type_traits<value_type>::norm_2 (*it));
- if (scale < u) {
- real_type v (scale / u);
- sum_squares = sum_squares * v * v + real_type (1);
- scale = u;
- } else {
- real_type v (u / scale);
- sum_squares += v * v;
- }
- ++ it;
- }
- return static_cast<result_type>(scale * type_traits<real_type>::type_sqrt (sum_squares));
- #endif
- }
- };
- template<class V>
- struct vector_norm_2_square :
- public vector_scalar_real_unary_functor<V> {
- typedef typename vector_scalar_real_unary_functor<V>::value_type value_type;
- typedef typename vector_scalar_real_unary_functor<V>::real_type real_type;
- typedef typename vector_scalar_real_unary_functor<V>::result_type result_type;
- template<class E>
- static BOOST_UBLAS_INLINE
- result_type apply (const vector_expression<E> &e) {
- real_type t = real_type ();
- typedef typename E::size_type vector_size_type;
- vector_size_type size (e ().size ());
- for (vector_size_type i = 0; i < size; ++ i) {
- real_type u (type_traits<value_type>::norm_2 (e () (i)));
- t += u * u;
- }
- return t;
- }
- // Dense case
- template<class D, class I>
- static BOOST_UBLAS_INLINE
- result_type apply (D size, I it) {
- real_type t = real_type ();
- while (-- size >= 0) {
- real_type u (type_traits<value_type>::norm_2 (*it));
- t += u * u;
- ++ it;
- }
- return t;
- }
- // Sparse case
- template<class I>
- static BOOST_UBLAS_INLINE
- result_type apply (I it, const I &it_end) {
- real_type t = real_type ();
- while (it != it_end) {
- real_type u (type_traits<value_type>::norm_2 (*it));
- t += u * u;
- ++ it;
- }
- return t;
- }
- };
- template<class V>
- struct vector_norm_inf:
- public vector_scalar_real_unary_functor<V> {
- typedef typename vector_scalar_real_unary_functor<V>::value_type value_type;
- typedef typename vector_scalar_real_unary_functor<V>::real_type real_type;
- typedef typename vector_scalar_real_unary_functor<V>::result_type result_type;
- template<class E>
- static BOOST_UBLAS_INLINE
- result_type apply (const vector_expression<E> &e) {
- real_type t = real_type ();
- typedef typename E::size_type vector_size_type;
- vector_size_type size (e ().size ());
- for (vector_size_type i = 0; i < size; ++ i) {
- real_type u (type_traits<value_type>::norm_inf (e () (i)));
- if (u > t)
- t = u;
- }
- return t;
- }
- // Dense case
- template<class D, class I>
- static BOOST_UBLAS_INLINE
- result_type apply (D size, I it) {
- real_type t = real_type ();
- while (-- size >= 0) {
- real_type u (type_traits<value_type>::norm_inf (*it));
- if (u > t)
- t = u;
- ++ it;
- }
- return t;
- }
- // Sparse case
- template<class I>
- static BOOST_UBLAS_INLINE
- result_type apply (I it, const I &it_end) {
- real_type t = real_type ();
- while (it != it_end) {
- real_type u (type_traits<value_type>::norm_inf (*it));
- if (u > t)
- t = u;
- ++ it;
- }
- return t;
- }
- };
- // Unary returning index
- template<class V>
- struct vector_scalar_index_unary_functor {
- typedef typename V::value_type value_type;
- typedef typename type_traits<value_type>::real_type real_type;
- typedef typename V::size_type result_type;
- };
- template<class V>
- struct vector_index_norm_inf:
- public vector_scalar_index_unary_functor<V> {
- typedef typename vector_scalar_index_unary_functor<V>::value_type value_type;
- typedef typename vector_scalar_index_unary_functor<V>::real_type real_type;
- typedef typename vector_scalar_index_unary_functor<V>::result_type result_type;
- template<class E>
- static BOOST_UBLAS_INLINE
- result_type apply (const vector_expression<E> &e) {
- // ISSUE For CBLAS compatibility return 0 index in empty case
- result_type i_norm_inf (0);
- real_type t = real_type ();
- typedef typename E::size_type vector_size_type;
- vector_size_type size (e ().size ());
- for (vector_size_type i = 0; i < size; ++ i) {
- real_type u (type_traits<value_type>::norm_inf (e () (i)));
- if (u > t) {
- i_norm_inf = i;
- t = u;
- }
- }
- return i_norm_inf;
- }
- // Dense case
- template<class D, class I>
- static BOOST_UBLAS_INLINE
- result_type apply (D size, I it) {
- // ISSUE For CBLAS compatibility return 0 index in empty case
- result_type i_norm_inf (0);
- real_type t = real_type ();
- while (-- size >= 0) {
- real_type u (type_traits<value_type>::norm_inf (*it));
- if (u > t) {
- i_norm_inf = it.index ();
- t = u;
- }
- ++ it;
- }
- return i_norm_inf;
- }
- // Sparse case
- template<class I>
- static BOOST_UBLAS_INLINE
- result_type apply (I it, const I &it_end) {
- // ISSUE For CBLAS compatibility return 0 index in empty case
- result_type i_norm_inf (0);
- real_type t = real_type ();
- while (it != it_end) {
- real_type u (type_traits<value_type>::norm_inf (*it));
- if (u > t) {
- i_norm_inf = it.index ();
- t = u;
- }
- ++ it;
- }
- return i_norm_inf;
- }
- };
- // Binary returning scalar
- template<class V1, class V2, class TV>
- struct vector_scalar_binary_functor {
- typedef TV value_type;
- typedef TV result_type;
- };
- template<class V1, class V2, class TV>
- struct vector_inner_prod:
- public vector_scalar_binary_functor<V1, V2, TV> {
- typedef typename vector_scalar_binary_functor<V1, V2, TV>::value_type value_type;
- typedef typename vector_scalar_binary_functor<V1, V2, TV>::result_type result_type;
- template<class C1, class C2>
- static BOOST_UBLAS_INLINE
- result_type apply (const vector_container<C1> &c1,
- const vector_container<C2> &c2) {
- #ifdef BOOST_UBLAS_USE_SIMD
- using namespace raw;
- typedef typename C1::size_type vector_size_type;
- vector_size_type size (BOOST_UBLAS_SAME (c1 ().size (), c2 ().size ()));
- const typename V1::value_type *data1 = data_const (c1 ());
- const typename V1::value_type *data2 = data_const (c2 ());
- vector_size_type s1 = stride (c1 ());
- vector_size_type s2 = stride (c2 ());
- result_type t = result_type (0);
- if (s1 == 1 && s2 == 1) {
- for (vector_size_type i = 0; i < size; ++ i)
- t += data1 [i] * data2 [i];
- } else if (s2 == 1) {
- for (vector_size_type i = 0, i1 = 0; i < size; ++ i, i1 += s1)
- t += data1 [i1] * data2 [i];
- } else if (s1 == 1) {
- for (vector_size_type i = 0, i2 = 0; i < size; ++ i, i2 += s2)
- t += data1 [i] * data2 [i2];
- } else {
- for (vector_size_type i = 0, i1 = 0, i2 = 0; i < size; ++ i, i1 += s1, i2 += s2)
- t += data1 [i1] * data2 [i2];
- }
- return t;
- #elif defined(BOOST_UBLAS_HAVE_BINDINGS)
- return boost::numeric::bindings::atlas::dot (c1 (), c2 ());
- #else
- return apply (static_cast<const vector_expression<C1> > (c1), static_cast<const vector_expression<C2> > (c2));
- #endif
- }
- template<class E1, class E2>
- static BOOST_UBLAS_INLINE
- result_type apply (const vector_expression<E1> &e1,
- const vector_expression<E2> &e2) {
- typedef typename E1::size_type vector_size_type;
- vector_size_type size (BOOST_UBLAS_SAME (e1 ().size (), e2 ().size ()));
- result_type t = result_type (0);
- #ifndef BOOST_UBLAS_USE_DUFF_DEVICE
- for (vector_size_type i = 0; i < size; ++ i)
- t += e1 () (i) * e2 () (i);
- #else
- vector_size_type i (0);
- DD (size, 4, r, (t += e1 () (i) * e2 () (i), ++ i));
- #endif
- return t;
- }
- // Dense case
- template<class D, class I1, class I2>
- static BOOST_UBLAS_INLINE
- result_type apply (D size, I1 it1, I2 it2) {
- result_type t = result_type (0);
- #ifndef BOOST_UBLAS_USE_DUFF_DEVICE
- while (-- size >= 0)
- t += *it1 * *it2, ++ it1, ++ it2;
- #else
- DD (size, 4, r, (t += *it1 * *it2, ++ it1, ++ it2));
- #endif
- return t;
- }
- // Packed case
- template<class I1, class I2>
- static BOOST_UBLAS_INLINE
- result_type apply (I1 it1, const I1 &it1_end, I2 it2, const I2 &it2_end) {
- result_type t = result_type (0);
- typedef typename I1::difference_type vector_difference_type;
- vector_difference_type it1_size (it1_end - it1);
- vector_difference_type it2_size (it2_end - it2);
- vector_difference_type diff (0);
- if (it1_size > 0 && it2_size > 0)
- diff = it2.index () - it1.index ();
- if (diff != 0) {
- vector_difference_type size = (std::min) (diff, it1_size);
- if (size > 0) {
- it1 += size;
- it1_size -= size;
- diff -= size;
- }
- size = (std::min) (- diff, it2_size);
- if (size > 0) {
- it2 += size;
- it2_size -= size;
- diff += size;
- }
- }
- vector_difference_type size ((std::min) (it1_size, it2_size));
- while (-- size >= 0)
- t += *it1 * *it2, ++ it1, ++ it2;
- return t;
- }
- // Sparse case
- template<class I1, class I2>
- static BOOST_UBLAS_INLINE
- result_type apply (I1 it1, const I1 &it1_end, I2 it2, const I2 &it2_end, sparse_bidirectional_iterator_tag) {
- result_type t = result_type (0);
- if (it1 != it1_end && it2 != it2_end) {
- for (;;) {
- if (it1.index () == it2.index ()) {
- t += *it1 * *it2, ++ it1, ++ it2;
- if (it1 == it1_end || it2 == it2_end)
- break;
- } else if (it1.index () < it2.index ()) {
- increment (it1, it1_end, it2.index () - it1.index ());
- if (it1 == it1_end)
- break;
- } else if (it1.index () > it2.index ()) {
- increment (it2, it2_end, it1.index () - it2.index ());
- if (it2 == it2_end)
- break;
- }
- }
- }
- return t;
- }
- };
- // Matrix functors
- // Binary returning vector
- template<class M1, class M2, class TV>
- struct matrix_vector_binary_functor {
- typedef typename M1::size_type size_type;
- typedef typename M1::difference_type difference_type;
- typedef TV value_type;
- typedef TV result_type;
- };
- template<class M1, class M2, class TV>
- struct matrix_vector_prod1:
- public matrix_vector_binary_functor<M1, M2, TV> {
- typedef typename matrix_vector_binary_functor<M1, M2, TV>::size_type size_type;
- typedef typename matrix_vector_binary_functor<M1, M2, TV>::difference_type difference_type;
- typedef typename matrix_vector_binary_functor<M1, M2, TV>::value_type value_type;
- typedef typename matrix_vector_binary_functor<M1, M2, TV>::result_type result_type;
- template<class C1, class C2>
- static BOOST_UBLAS_INLINE
- result_type apply (const matrix_container<C1> &c1,
- const vector_container<C2> &c2,
- size_type i) {
- #ifdef BOOST_UBLAS_USE_SIMD
- using namespace raw;
- size_type size = BOOST_UBLAS_SAME (c1 ().size2 (), c2 ().size ());
- const typename M1::value_type *data1 = data_const (c1 ()) + i * stride1 (c1 ());
- const typename M2::value_type *data2 = data_const (c2 ());
- size_type s1 = stride2 (c1 ());
- size_type s2 = stride (c2 ());
- result_type t = result_type (0);
- if (s1 == 1 && s2 == 1) {
- for (size_type j = 0; j < size; ++ j)
- t += data1 [j] * data2 [j];
- } else if (s2 == 1) {
- for (size_type j = 0, j1 = 0; j < size; ++ j, j1 += s1)
- t += data1 [j1] * data2 [j];
- } else if (s1 == 1) {
- for (size_type j = 0, j2 = 0; j < size; ++ j, j2 += s2)
- t += data1 [j] * data2 [j2];
- } else {
- for (size_type j = 0, j1 = 0, j2 = 0; j < size; ++ j, j1 += s1, j2 += s2)
- t += data1 [j1] * data2 [j2];
- }
- return t;
- #elif defined(BOOST_UBLAS_HAVE_BINDINGS)
- return boost::numeric::bindings::atlas::dot (c1 ().row (i), c2 ());
- #else
- return apply (static_cast<const matrix_expression<C1> > (c1), static_cast<const vector_expression<C2> > (c2, i));
- #endif
- }
- template<class E1, class E2>
- static BOOST_UBLAS_INLINE
- result_type apply (const matrix_expression<E1> &e1,
- const vector_expression<E2> &e2,
- size_type i) {
- size_type size = BOOST_UBLAS_SAME (e1 ().size2 (), e2 ().size ());
- result_type t = result_type (0);
- #ifndef BOOST_UBLAS_USE_DUFF_DEVICE
- for (size_type j = 0; j < size; ++ j)
- t += e1 () (i, j) * e2 () (j);
- #else
- size_type j (0);
- DD (size, 4, r, (t += e1 () (i, j) * e2 () (j), ++ j));
- #endif
- return t;
- }
- // Dense case
- template<class I1, class I2>
- static BOOST_UBLAS_INLINE
- result_type apply (difference_type size, I1 it1, I2 it2) {
- result_type t = result_type (0);
- #ifndef BOOST_UBLAS_USE_DUFF_DEVICE
- while (-- size >= 0)
- t += *it1 * *it2, ++ it1, ++ it2;
- #else
- DD (size, 4, r, (t += *it1 * *it2, ++ it1, ++ it2));
- #endif
- return t;
- }
- // Packed case
- template<class I1, class I2>
- static BOOST_UBLAS_INLINE
- result_type apply (I1 it1, const I1 &it1_end, I2 it2, const I2 &it2_end) {
- result_type t = result_type (0);
- difference_type it1_size (it1_end - it1);
- difference_type it2_size (it2_end - it2);
- difference_type diff (0);
- if (it1_size > 0 && it2_size > 0)
- diff = it2.index () - it1.index2 ();
- if (diff != 0) {
- difference_type size = (std::min) (diff, it1_size);
- if (size > 0) {
- it1 += size;
- it1_size -= size;
- diff -= size;
- }
- size = (std::min) (- diff, it2_size);
- if (size > 0) {
- it2 += size;
- it2_size -= size;
- diff += size;
- }
- }
- difference_type size ((std::min) (it1_size, it2_size));
- while (-- size >= 0)
- t += *it1 * *it2, ++ it1, ++ it2;
- return t;
- }
- // Sparse case
- template<class I1, class I2>
- static BOOST_UBLAS_INLINE
- result_type apply (I1 it1, const I1 &it1_end, I2 it2, const I2 &it2_end,
- sparse_bidirectional_iterator_tag, sparse_bidirectional_iterator_tag) {
- result_type t = result_type (0);
- if (it1 != it1_end && it2 != it2_end) {
- size_type it1_index = it1.index2 (), it2_index = it2.index ();
- for (;;) {
- difference_type compare = it1_index - it2_index;
- if (compare == 0) {
- t += *it1 * *it2, ++ it1, ++ it2;
- if (it1 != it1_end && it2 != it2_end) {
- it1_index = it1.index2 ();
- it2_index = it2.index ();
- } else
- break;
- } else if (compare < 0) {
- increment (it1, it1_end, - compare);
- if (it1 != it1_end)
- it1_index = it1.index2 ();
- else
- break;
- } else if (compare > 0) {
- increment (it2, it2_end, compare);
- if (it2 != it2_end)
- it2_index = it2.index ();
- else
- break;
- }
- }
- }
- return t;
- }
- // Sparse packed case
- template<class I1, class I2>
- static BOOST_UBLAS_INLINE
- result_type apply (I1 it1, const I1 &it1_end, I2 it2, const I2 &/* it2_end */,
- sparse_bidirectional_iterator_tag, packed_random_access_iterator_tag) {
- result_type t = result_type (0);
- while (it1 != it1_end) {
- t += *it1 * it2 () (it1.index2 ());
- ++ it1;
- }
- return t;
- }
- // Packed sparse case
- template<class I1, class I2>
- static BOOST_UBLAS_INLINE
- result_type apply (I1 it1, const I1 &/* it1_end */, I2 it2, const I2 &it2_end,
- packed_random_access_iterator_tag, sparse_bidirectional_iterator_tag) {
- result_type t = result_type (0);
- while (it2 != it2_end) {
- t += it1 () (it1.index1 (), it2.index ()) * *it2;
- ++ it2;
- }
- return t;
- }
- // Another dispatcher
- template<class I1, class I2>
- static BOOST_UBLAS_INLINE
- result_type apply (I1 it1, const I1 &it1_end, I2 it2, const I2 &it2_end,
- sparse_bidirectional_iterator_tag) {
- typedef typename I1::iterator_category iterator1_category;
- typedef typename I2::iterator_category iterator2_category;
- return apply (it1, it1_end, it2, it2_end, iterator1_category (), iterator2_category ());
- }
- };
- template<class M1, class M2, class TV>
- struct matrix_vector_prod2:
- public matrix_vector_binary_functor<M1, M2, TV> {
- typedef typename matrix_vector_binary_functor<M1, M2, TV>::size_type size_type;
- typedef typename matrix_vector_binary_functor<M1, M2, TV>::difference_type difference_type;
- typedef typename matrix_vector_binary_functor<M1, M2, TV>::value_type value_type;
- typedef typename matrix_vector_binary_functor<M1, M2, TV>::result_type result_type;
- template<class C1, class C2>
- static BOOST_UBLAS_INLINE
- result_type apply (const vector_container<C1> &c1,
- const matrix_container<C2> &c2,
- size_type i) {
- #ifdef BOOST_UBLAS_USE_SIMD
- using namespace raw;
- size_type size = BOOST_UBLAS_SAME (c1 ().size (), c2 ().size1 ());
- const typename M1::value_type *data1 = data_const (c1 ());
- const typename M2::value_type *data2 = data_const (c2 ()) + i * stride2 (c2 ());
- size_type s1 = stride (c1 ());
- size_type s2 = stride1 (c2 ());
- result_type t = result_type (0);
- if (s1 == 1 && s2 == 1) {
- for (size_type j = 0; j < size; ++ j)
- t += data1 [j] * data2 [j];
- } else if (s2 == 1) {
- for (size_type j = 0, j1 = 0; j < size; ++ j, j1 += s1)
- t += data1 [j1] * data2 [j];
- } else if (s1 == 1) {
- for (size_type j = 0, j2 = 0; j < size; ++ j, j2 += s2)
- t += data1 [j] * data2 [j2];
- } else {
- for (size_type j = 0, j1 = 0, j2 = 0; j < size; ++ j, j1 += s1, j2 += s2)
- t += data1 [j1] * data2 [j2];
- }
- return t;
- #elif defined(BOOST_UBLAS_HAVE_BINDINGS)
- return boost::numeric::bindings::atlas::dot (c1 (), c2 ().column (i));
- #else
- return apply (static_cast<const vector_expression<C1> > (c1), static_cast<const matrix_expression<C2> > (c2, i));
- #endif
- }
- template<class E1, class E2>
- static BOOST_UBLAS_INLINE
- result_type apply (const vector_expression<E1> &e1,
- const matrix_expression<E2> &e2,
- size_type i) {
- size_type size = BOOST_UBLAS_SAME (e1 ().size (), e2 ().size1 ());
- result_type t = result_type (0);
- #ifndef BOOST_UBLAS_USE_DUFF_DEVICE
- for (size_type j = 0; j < size; ++ j)
- t += e1 () (j) * e2 () (j, i);
- #else
- size_type j (0);
- DD (size, 4, r, (t += e1 () (j) * e2 () (j, i), ++ j));
- #endif
- return t;
- }
- // Dense case
- template<class I1, class I2>
- static BOOST_UBLAS_INLINE
- result_type apply (difference_type size, I1 it1, I2 it2) {
- result_type t = result_type (0);
- #ifndef BOOST_UBLAS_USE_DUFF_DEVICE
- while (-- size >= 0)
- t += *it1 * *it2, ++ it1, ++ it2;
- #else
- DD (size, 4, r, (t += *it1 * *it2, ++ it1, ++ it2));
- #endif
- return t;
- }
- // Packed case
- template<class I1, class I2>
- static BOOST_UBLAS_INLINE
- result_type apply (I1 it1, const I1 &it1_end, I2 it2, const I2 &it2_end) {
- result_type t = result_type (0);
- difference_type it1_size (it1_end - it1);
- difference_type it2_size (it2_end - it2);
- difference_type diff (0);
- if (it1_size > 0 && it2_size > 0)
- diff = it2.index1 () - it1.index ();
- if (diff != 0) {
- difference_type size = (std::min) (diff, it1_size);
- if (size > 0) {
- it1 += size;
- it1_size -= size;
- diff -= size;
- }
- size = (std::min) (- diff, it2_size);
- if (size > 0) {
- it2 += size;
- it2_size -= size;
- diff += size;
- }
- }
- difference_type size ((std::min) (it1_size, it2_size));
- while (-- size >= 0)
- t += *it1 * *it2, ++ it1, ++ it2;
- return t;
- }
- // Sparse case
- template<class I1, class I2>
- static BOOST_UBLAS_INLINE
- result_type apply (I1 it1, const I1 &it1_end, I2 it2, const I2 &it2_end,
- sparse_bidirectional_iterator_tag, sparse_bidirectional_iterator_tag) {
- result_type t = result_type (0);
- if (it1 != it1_end && it2 != it2_end) {
- size_type it1_index = it1.index (), it2_index = it2.index1 ();
- for (;;) {
- difference_type compare = it1_index - it2_index;
- if (compare == 0) {
- t += *it1 * *it2, ++ it1, ++ it2;
- if (it1 != it1_end && it2 != it2_end) {
- it1_index = it1.index ();
- it2_index = it2.index1 ();
- } else
- break;
- } else if (compare < 0) {
- increment (it1, it1_end, - compare);
- if (it1 != it1_end)
- it1_index = it1.index ();
- else
- break;
- } else if (compare > 0) {
- increment (it2, it2_end, compare);
- if (it2 != it2_end)
- it2_index = it2.index1 ();
- else
- break;
- }
- }
- }
- return t;
- }
- // Packed sparse case
- template<class I1, class I2>
- static BOOST_UBLAS_INLINE
- result_type apply (I1 it1, const I1 &/* it1_end */, I2 it2, const I2 &it2_end,
- packed_random_access_iterator_tag, sparse_bidirectional_iterator_tag) {
- result_type t = result_type (0);
- while (it2 != it2_end) {
- t += it1 () (it2.index1 ()) * *it2;
- ++ it2;
- }
- return t;
- }
- // Sparse packed case
- template<class I1, class I2>
- static BOOST_UBLAS_INLINE
- result_type apply (I1 it1, const I1 &it1_end, I2 it2, const I2 &/* it2_end */,
- sparse_bidirectional_iterator_tag, packed_random_access_iterator_tag) {
- result_type t = result_type (0);
- while (it1 != it1_end) {
- t += *it1 * it2 () (it1.index (), it2.index2 ());
- ++ it1;
- }
- return t;
- }
- // Another dispatcher
- template<class I1, class I2>
- static BOOST_UBLAS_INLINE
- result_type apply (I1 it1, const I1 &it1_end, I2 it2, const I2 &it2_end,
- sparse_bidirectional_iterator_tag) {
- typedef typename I1::iterator_category iterator1_category;
- typedef typename I2::iterator_category iterator2_category;
- return apply (it1, it1_end, it2, it2_end, iterator1_category (), iterator2_category ());
- }
- };
- // Binary returning matrix
- template<class M1, class M2, class TV>
- struct matrix_matrix_binary_functor {
- typedef typename M1::size_type size_type;
- typedef typename M1::difference_type difference_type;
- typedef TV value_type;
- typedef TV result_type;
- };
- template<class M1, class M2, class TV>
- struct matrix_matrix_prod:
- public matrix_matrix_binary_functor<M1, M2, TV> {
- typedef typename matrix_matrix_binary_functor<M1, M2, TV>::size_type size_type;
- typedef typename matrix_matrix_binary_functor<M1, M2, TV>::difference_type difference_type;
- typedef typename matrix_matrix_binary_functor<M1, M2, TV>::value_type value_type;
- typedef typename matrix_matrix_binary_functor<M1, M2, TV>::result_type result_type;
- template<class C1, class C2>
- static BOOST_UBLAS_INLINE
- result_type apply (const matrix_container<C1> &c1,
- const matrix_container<C2> &c2,
- size_type i, size_type j) {
- #ifdef BOOST_UBLAS_USE_SIMD
- using namespace raw;
- size_type size = BOOST_UBLAS_SAME (c1 ().size2 (), c2 ().sizc1 ());
- const typename M1::value_type *data1 = data_const (c1 ()) + i * stride1 (c1 ());
- const typename M2::value_type *data2 = data_const (c2 ()) + j * stride2 (c2 ());
- size_type s1 = stride2 (c1 ());
- size_type s2 = stride1 (c2 ());
- result_type t = result_type (0);
- if (s1 == 1 && s2 == 1) {
- for (size_type k = 0; k < size; ++ k)
- t += data1 [k] * data2 [k];
- } else if (s2 == 1) {
- for (size_type k = 0, k1 = 0; k < size; ++ k, k1 += s1)
- t += data1 [k1] * data2 [k];
- } else if (s1 == 1) {
- for (size_type k = 0, k2 = 0; k < size; ++ k, k2 += s2)
- t += data1 [k] * data2 [k2];
- } else {
- for (size_type k = 0, k1 = 0, k2 = 0; k < size; ++ k, k1 += s1, k2 += s2)
- t += data1 [k1] * data2 [k2];
- }
- return t;
- #elif defined(BOOST_UBLAS_HAVE_BINDINGS)
- return boost::numeric::bindings::atlas::dot (c1 ().row (i), c2 ().column (j));
- #else
- boost::ignore_unused(j);
- return apply (static_cast<const matrix_expression<C1> > (c1), static_cast<const matrix_expression<C2> > (c2, i));
- #endif
- }
- template<class E1, class E2>
- static BOOST_UBLAS_INLINE
- result_type apply (const matrix_expression<E1> &e1,
- const matrix_expression<E2> &e2,
- size_type i, size_type j) {
- size_type size = BOOST_UBLAS_SAME (e1 ().size2 (), e2 ().size1 ());
- result_type t = result_type (0);
- #ifndef BOOST_UBLAS_USE_DUFF_DEVICE
- for (size_type k = 0; k < size; ++ k)
- t += e1 () (i, k) * e2 () (k, j);
- #else
- size_type k (0);
- DD (size, 4, r, (t += e1 () (i, k) * e2 () (k, j), ++ k));
- #endif
- return t;
- }
- // Dense case
- template<class I1, class I2>
- static BOOST_UBLAS_INLINE
- result_type apply (difference_type size, I1 it1, I2 it2) {
- result_type t = result_type (0);
- #ifndef BOOST_UBLAS_USE_DUFF_DEVICE
- while (-- size >= 0)
- t += *it1 * *it2, ++ it1, ++ it2;
- #else
- DD (size, 4, r, (t += *it1 * *it2, ++ it1, ++ it2));
- #endif
- return t;
- }
- // Packed case
- template<class I1, class I2>
- static BOOST_UBLAS_INLINE
- result_type apply (I1 it1, const I1 &it1_end, I2 it2, const I2 &it2_end, packed_random_access_iterator_tag) {
- result_type t = result_type (0);
- difference_type it1_size (it1_end - it1);
- difference_type it2_size (it2_end - it2);
- difference_type diff (0);
- if (it1_size > 0 && it2_size > 0)
- diff = it2.index1 () - it1.index2 ();
- if (diff != 0) {
- difference_type size = (std::min) (diff, it1_size);
- if (size > 0) {
- it1 += size;
- it1_size -= size;
- diff -= size;
- }
- size = (std::min) (- diff, it2_size);
- if (size > 0) {
- it2 += size;
- it2_size -= size;
- diff += size;
- }
- }
- difference_type size ((std::min) (it1_size, it2_size));
- while (-- size >= 0)
- t += *it1 * *it2, ++ it1, ++ it2;
- return t;
- }
- // Sparse case
- template<class I1, class I2>
- static BOOST_UBLAS_INLINE
- result_type apply (I1 it1, const I1 &it1_end, I2 it2, const I2 &it2_end, sparse_bidirectional_iterator_tag) {
- result_type t = result_type (0);
- if (it1 != it1_end && it2 != it2_end) {
- size_type it1_index = it1.index2 (), it2_index = it2.index1 ();
- for (;;) {
- difference_type compare = difference_type (it1_index - it2_index);
- if (compare == 0) {
- t += *it1 * *it2, ++ it1, ++ it2;
- if (it1 != it1_end && it2 != it2_end) {
- it1_index = it1.index2 ();
- it2_index = it2.index1 ();
- } else
- break;
- } else if (compare < 0) {
- increment (it1, it1_end, - compare);
- if (it1 != it1_end)
- it1_index = it1.index2 ();
- else
- break;
- } else if (compare > 0) {
- increment (it2, it2_end, compare);
- if (it2 != it2_end)
- it2_index = it2.index1 ();
- else
- break;
- }
- }
- }
- return t;
- }
- };
- // Unary returning scalar norm
- template<class M>
- struct matrix_scalar_real_unary_functor {
- typedef typename M::value_type value_type;
- typedef typename type_traits<value_type>::real_type real_type;
- typedef real_type result_type;
- };
- template<class M>
- struct matrix_norm_1:
- public matrix_scalar_real_unary_functor<M> {
- typedef typename matrix_scalar_real_unary_functor<M>::value_type value_type;
- typedef typename matrix_scalar_real_unary_functor<M>::real_type real_type;
- typedef typename matrix_scalar_real_unary_functor<M>::result_type result_type;
- template<class E>
- static BOOST_UBLAS_INLINE
- result_type apply (const matrix_expression<E> &e) {
- real_type t = real_type ();
- typedef typename E::size_type matrix_size_type;
- matrix_size_type size2 (e ().size2 ());
- for (matrix_size_type j = 0; j < size2; ++ j) {
- real_type u = real_type ();
- matrix_size_type size1 (e ().size1 ());
- for (matrix_size_type i = 0; i < size1; ++ i) {
- real_type v (type_traits<value_type>::norm_1 (e () (i, j)));
- u += v;
- }
- if (u > t)
- t = u;
- }
- return t;
- }
- };
- template<class M>
- struct matrix_norm_frobenius:
- public matrix_scalar_real_unary_functor<M> {
- typedef typename matrix_scalar_real_unary_functor<M>::value_type value_type;
- typedef typename matrix_scalar_real_unary_functor<M>::real_type real_type;
- typedef typename matrix_scalar_real_unary_functor<M>::result_type result_type;
- template<class E>
- static BOOST_UBLAS_INLINE
- result_type apply (const matrix_expression<E> &e) {
- real_type t = real_type ();
- typedef typename E::size_type matrix_size_type;
- matrix_size_type size1 (e ().size1 ());
- for (matrix_size_type i = 0; i < size1; ++ i) {
- matrix_size_type size2 (e ().size2 ());
- for (matrix_size_type j = 0; j < size2; ++ j) {
- real_type u (type_traits<value_type>::norm_2 (e () (i, j)));
- t += u * u;
- }
- }
- return type_traits<real_type>::type_sqrt (t);
- }
- };
- template<class M>
- struct matrix_norm_inf:
- public matrix_scalar_real_unary_functor<M> {
- typedef typename matrix_scalar_real_unary_functor<M>::value_type value_type;
- typedef typename matrix_scalar_real_unary_functor<M>::real_type real_type;
- typedef typename matrix_scalar_real_unary_functor<M>::result_type result_type;
- template<class E>
- static BOOST_UBLAS_INLINE
- result_type apply (const matrix_expression<E> &e) {
- real_type t = real_type ();
- typedef typename E::size_type matrix_size_type;
- matrix_size_type size1 (e ().size1 ());
- for (matrix_size_type i = 0; i < size1; ++ i) {
- real_type u = real_type ();
- matrix_size_type size2 (e ().size2 ());
- for (matrix_size_type j = 0; j < size2; ++ j) {
- real_type v (type_traits<value_type>::norm_inf (e () (i, j)));
- u += v;
- }
- if (u > t)
- t = u;
- }
- return t;
- }
- };
- // forward declaration
- template <class Z, class D> struct basic_column_major;
- // This functor defines storage layout and it's properties
- // matrix (i,j) -> storage [i * size_i + j]
- template <class Z, class D>
- struct basic_row_major {
- typedef Z size_type;
- typedef D difference_type;
- typedef row_major_tag orientation_category;
- typedef basic_column_major<Z,D> transposed_layout;
- static
- BOOST_UBLAS_INLINE
- size_type storage_size (size_type size_i, size_type size_j) {
- // Guard against size_type overflow
- BOOST_UBLAS_CHECK (size_j == 0 || size_i <= (std::numeric_limits<size_type>::max) () / size_j, bad_size ());
- return size_i * size_j;
- }
- // Indexing conversion to storage element
- static
- BOOST_UBLAS_INLINE
- size_type element (size_type i, size_type size_i, size_type j, size_type size_j) {
- BOOST_UBLAS_CHECK (i < size_i, bad_index ());
- BOOST_UBLAS_CHECK (j < size_j, bad_index ());
- detail::ignore_unused_variable_warning(size_i);
- // Guard against size_type overflow
- BOOST_UBLAS_CHECK (i <= ((std::numeric_limits<size_type>::max) () - j) / size_j, bad_index ());
- return i * size_j + j;
- }
- static
- BOOST_UBLAS_INLINE
- size_type address (size_type i, size_type size_i, size_type j, size_type size_j) {
- BOOST_UBLAS_CHECK (i <= size_i, bad_index ());
- BOOST_UBLAS_CHECK (j <= size_j, bad_index ());
- // Guard against size_type overflow - address may be size_j past end of storage
- BOOST_UBLAS_CHECK (size_j == 0 || i <= ((std::numeric_limits<size_type>::max) () - j) / size_j, bad_index ());
- detail::ignore_unused_variable_warning(size_i);
- return i * size_j + j;
- }
- // Storage element to index conversion
- static
- BOOST_UBLAS_INLINE
- difference_type distance_i (difference_type k, size_type /* size_i */, size_type size_j) {
- return size_j != 0 ? k / size_j : 0;
- }
- static
- BOOST_UBLAS_INLINE
- difference_type distance_j (difference_type k, size_type /* size_i */, size_type /* size_j */) {
- return k;
- }
- static
- BOOST_UBLAS_INLINE
- size_type index_i (difference_type k, size_type /* size_i */, size_type size_j) {
- return size_j != 0 ? k / size_j : 0;
- }
- static
- BOOST_UBLAS_INLINE
- size_type index_j (difference_type k, size_type /* size_i */, size_type size_j) {
- return size_j != 0 ? k % size_j : 0;
- }
- static
- BOOST_UBLAS_INLINE
- bool fast_i () {
- return false;
- }
- static
- BOOST_UBLAS_INLINE
- bool fast_j () {
- return true;
- }
- // Iterating storage elements
- template<class I>
- static
- BOOST_UBLAS_INLINE
- void increment_i (I &it, size_type /* size_i */, size_type size_j) {
- it += size_j;
- }
- template<class I>
- static
- BOOST_UBLAS_INLINE
- void increment_i (I &it, difference_type n, size_type /* size_i */, size_type size_j) {
- it += n * size_j;
- }
- template<class I>
- static
- BOOST_UBLAS_INLINE
- void decrement_i (I &it, size_type /* size_i */, size_type size_j) {
- it -= size_j;
- }
- template<class I>
- static
- BOOST_UBLAS_INLINE
- void decrement_i (I &it, difference_type n, size_type /* size_i */, size_type size_j) {
- it -= n * size_j;
- }
- template<class I>
- static
- BOOST_UBLAS_INLINE
- void increment_j (I &it, size_type /* size_i */, size_type /* size_j */) {
- ++ it;
- }
- template<class I>
- static
- BOOST_UBLAS_INLINE
- void increment_j (I &it, difference_type n, size_type /* size_i */, size_type /* size_j */) {
- it += n;
- }
- template<class I>
- static
- BOOST_UBLAS_INLINE
- void decrement_j (I &it, size_type /* size_i */, size_type /* size_j */) {
- -- it;
- }
- template<class I>
- static
- BOOST_UBLAS_INLINE
- void decrement_j (I &it, difference_type n, size_type /* size_i */, size_type /* size_j */) {
- it -= n;
- }
- // Triangular access
- static
- BOOST_UBLAS_INLINE
- size_type triangular_size (size_type size_i, size_type size_j) {
- size_type size = (std::max) (size_i, size_j);
- // Guard against size_type overflow - simplified
- BOOST_UBLAS_CHECK (size == 0 || size / 2 < (std::numeric_limits<size_type>::max) () / size /* +1/2 */, bad_size ());
- return ((size + 1) * size) / 2;
- }
- static
- BOOST_UBLAS_INLINE
- size_type lower_element (size_type i, size_type size_i, size_type j, size_type size_j) {
- BOOST_UBLAS_CHECK (i < size_i, bad_index ());
- BOOST_UBLAS_CHECK (j < size_j, bad_index ());
- BOOST_UBLAS_CHECK (i >= j, bad_index ());
- detail::ignore_unused_variable_warning(size_i);
- detail::ignore_unused_variable_warning(size_j);
- // FIXME size_type overflow
- // sigma_i (i + 1) = (i + 1) * i / 2
- // i = 0 1 2 3, sigma = 0 1 3 6
- return ((i + 1) * i) / 2 + j;
- }
- static
- BOOST_UBLAS_INLINE
- size_type upper_element (size_type i, size_type size_i, size_type j, size_type size_j) {
- BOOST_UBLAS_CHECK (i < size_i, bad_index ());
- BOOST_UBLAS_CHECK (j < size_j, bad_index ());
- BOOST_UBLAS_CHECK (i <= j, bad_index ());
- // FIXME size_type overflow
- // sigma_i (size - i) = size * i - i * (i - 1) / 2
- // i = 0 1 2 3, sigma = 0 4 7 9
- return (i * (2 * (std::max) (size_i, size_j) - i + 1)) / 2 + j - i;
- }
- // Major and minor indices
- static
- BOOST_UBLAS_INLINE
- size_type index_M (size_type index1, size_type /* index2 */) {
- return index1;
- }
- static
- BOOST_UBLAS_INLINE
- size_type index_m (size_type /* index1 */, size_type index2) {
- return index2;
- }
- static
- BOOST_UBLAS_INLINE
- size_type size_M (size_type size_i, size_type /* size_j */) {
- return size_i;
- }
- static
- BOOST_UBLAS_INLINE
- size_type size_m (size_type /* size_i */, size_type size_j) {
- return size_j;
- }
- };
- // This functor defines storage layout and it's properties
- // matrix (i,j) -> storage [i + j * size_i]
- template <class Z, class D>
- struct basic_column_major {
- typedef Z size_type;
- typedef D difference_type;
- typedef column_major_tag orientation_category;
- typedef basic_row_major<Z,D> transposed_layout;
- static
- BOOST_UBLAS_INLINE
- size_type storage_size (size_type size_i, size_type size_j) {
- // Guard against size_type overflow
- BOOST_UBLAS_CHECK (size_i == 0 || size_j <= (std::numeric_limits<size_type>::max) () / size_i, bad_size ());
- return size_i * size_j;
- }
- // Indexing conversion to storage element
- static
- BOOST_UBLAS_INLINE
- size_type element (size_type i, size_type size_i, size_type j, size_type size_j) {
- BOOST_UBLAS_CHECK (i < size_i, bad_index ());
- BOOST_UBLAS_CHECK (j < size_j, bad_index ());
- detail::ignore_unused_variable_warning(size_j);
- // Guard against size_type overflow
- BOOST_UBLAS_CHECK (j <= ((std::numeric_limits<size_type>::max) () - i) / size_i, bad_index ());
- return i + j * size_i;
- }
- static
- BOOST_UBLAS_INLINE
- size_type address (size_type i, size_type size_i, size_type j, size_type size_j) {
- BOOST_UBLAS_CHECK (i <= size_i, bad_index ());
- BOOST_UBLAS_CHECK (j <= size_j, bad_index ());
- detail::ignore_unused_variable_warning(size_j);
- // Guard against size_type overflow - address may be size_i past end of storage
- BOOST_UBLAS_CHECK (size_i == 0 || j <= ((std::numeric_limits<size_type>::max) () - i) / size_i, bad_index ());
- return i + j * size_i;
- }
- // Storage element to index conversion
- static
- BOOST_UBLAS_INLINE
- difference_type distance_i (difference_type k, size_type /* size_i */, size_type /* size_j */) {
- return k;
- }
- static
- BOOST_UBLAS_INLINE
- difference_type distance_j (difference_type k, size_type size_i, size_type /* size_j */) {
- return size_i != 0 ? k / size_i : 0;
- }
- static
- BOOST_UBLAS_INLINE
- size_type index_i (difference_type k, size_type size_i, size_type /* size_j */) {
- return size_i != 0 ? k % size_i : 0;
- }
- static
- BOOST_UBLAS_INLINE
- size_type index_j (difference_type k, size_type size_i, size_type /* size_j */) {
- return size_i != 0 ? k / size_i : 0;
- }
- static
- BOOST_UBLAS_INLINE
- bool fast_i () {
- return true;
- }
- static
- BOOST_UBLAS_INLINE
- bool fast_j () {
- return false;
- }
- // Iterating
- template<class I>
- static
- BOOST_UBLAS_INLINE
- void increment_i (I &it, size_type /* size_i */, size_type /* size_j */) {
- ++ it;
- }
- template<class I>
- static
- BOOST_UBLAS_INLINE
- void increment_i (I &it, difference_type n, size_type /* size_i */, size_type /* size_j */) {
- it += n;
- }
- template<class I>
- static
- BOOST_UBLAS_INLINE
- void decrement_i (I &it, size_type /* size_i */, size_type /* size_j */) {
- -- it;
- }
- template<class I>
- static
- BOOST_UBLAS_INLINE
- void decrement_i (I &it, difference_type n, size_type /* size_i */, size_type /* size_j */) {
- it -= n;
- }
- template<class I>
- static
- BOOST_UBLAS_INLINE
- void increment_j (I &it, size_type size_i, size_type /* size_j */) {
- it += size_i;
- }
- template<class I>
- static
- BOOST_UBLAS_INLINE
- void increment_j (I &it, difference_type n, size_type size_i, size_type /* size_j */) {
- it += n * size_i;
- }
- template<class I>
- static
- BOOST_UBLAS_INLINE
- void decrement_j (I &it, size_type size_i, size_type /* size_j */) {
- it -= size_i;
- }
- template<class I>
- static
- BOOST_UBLAS_INLINE
- void decrement_j (I &it, difference_type n, size_type size_i, size_type /* size_j */) {
- it -= n* size_i;
- }
- // Triangular access
- static
- BOOST_UBLAS_INLINE
- size_type triangular_size (size_type size_i, size_type size_j) {
- size_type size = (std::max) (size_i, size_j);
- // Guard against size_type overflow - simplified
- BOOST_UBLAS_CHECK (size == 0 || size / 2 < (std::numeric_limits<size_type>::max) () / size /* +1/2 */, bad_size ());
- return ((size + 1) * size) / 2;
- }
- static
- BOOST_UBLAS_INLINE
- size_type lower_element (size_type i, size_type size_i, size_type j, size_type size_j) {
- BOOST_UBLAS_CHECK (i < size_i, bad_index ());
- BOOST_UBLAS_CHECK (j < size_j, bad_index ());
- BOOST_UBLAS_CHECK (i >= j, bad_index ());
- // FIXME size_type overflow
- // sigma_j (size - j) = size * j - j * (j - 1) / 2
- // j = 0 1 2 3, sigma = 0 4 7 9
- return i - j + (j * (2 * (std::max) (size_i, size_j) - j + 1)) / 2;
- }
- static
- BOOST_UBLAS_INLINE
- size_type upper_element (size_type i, size_type size_i, size_type j, size_type size_j) {
- BOOST_UBLAS_CHECK (i < size_i, bad_index ());
- BOOST_UBLAS_CHECK (j < size_j, bad_index ());
- BOOST_UBLAS_CHECK (i <= j, bad_index ());
- boost::ignore_unused(size_i, size_j);
- // FIXME size_type overflow
- // sigma_j (j + 1) = (j + 1) * j / 2
- // j = 0 1 2 3, sigma = 0 1 3 6
- return i + ((j + 1) * j) / 2;
- }
- // Major and minor indices
- static
- BOOST_UBLAS_INLINE
- size_type index_M (size_type /* index1 */, size_type index2) {
- return index2;
- }
- static
- BOOST_UBLAS_INLINE
- size_type index_m (size_type index1, size_type /* index2 */) {
- return index1;
- }
- static
- BOOST_UBLAS_INLINE
- size_type size_M (size_type /* size_i */, size_type size_j) {
- return size_j;
- }
- static
- BOOST_UBLAS_INLINE
- size_type size_m (size_type size_i, size_type /* size_j */) {
- return size_i;
- }
- };
- template <class Z>
- struct basic_full {
- typedef Z size_type;
- template<class L>
- static
- BOOST_UBLAS_INLINE
- size_type packed_size (L, size_type size_i, size_type size_j) {
- return L::storage_size (size_i, size_j);
- }
- static
- BOOST_UBLAS_INLINE
- bool zero (size_type /* i */, size_type /* j */) {
- return false;
- }
- static
- BOOST_UBLAS_INLINE
- bool one (size_type /* i */, size_type /* j */) {
- return false;
- }
- static
- BOOST_UBLAS_INLINE
- bool other (size_type /* i */, size_type /* j */) {
- return true;
- }
- // FIXME: this should not be used at all
- static
- BOOST_UBLAS_INLINE
- size_type restrict1 (size_type i, size_type /* j */) {
- return i;
- }
- static
- BOOST_UBLAS_INLINE
- size_type restrict2 (size_type /* i */, size_type j) {
- return j;
- }
- static
- BOOST_UBLAS_INLINE
- size_type mutable_restrict1 (size_type i, size_type /* j */) {
- return i;
- }
- static
- BOOST_UBLAS_INLINE
- size_type mutable_restrict2 (size_type /* i */, size_type j) {
- return j;
- }
- };
- namespace detail {
- template < class L >
- struct transposed_structure {
- typedef typename L::size_type size_type;
- template<class LAYOUT>
- static
- BOOST_UBLAS_INLINE
- size_type packed_size (LAYOUT l, size_type size_i, size_type size_j) {
- return L::packed_size(l, size_j, size_i);
- }
- static
- BOOST_UBLAS_INLINE
- bool zero (size_type i, size_type j) {
- return L::zero(j, i);
- }
- static
- BOOST_UBLAS_INLINE
- bool one (size_type i, size_type j) {
- return L::one(j, i);
- }
- static
- BOOST_UBLAS_INLINE
- bool other (size_type i, size_type j) {
- return L::other(j, i);
- }
- template<class LAYOUT>
- static
- BOOST_UBLAS_INLINE
- size_type element (LAYOUT /* l */, size_type i, size_type size_i, size_type j, size_type size_j) {
- return L::element(typename LAYOUT::transposed_layout(), j, size_j, i, size_i);
- }
- static
- BOOST_UBLAS_INLINE
- size_type restrict1 (size_type i, size_type j, size_type size1, size_type size2) {
- return L::restrict2(j, i, size2, size1);
- }
- static
- BOOST_UBLAS_INLINE
- size_type restrict2 (size_type i, size_type j, size_type size1, size_type size2) {
- return L::restrict1(j, i, size2, size1);
- }
- static
- BOOST_UBLAS_INLINE
- size_type mutable_restrict1 (size_type i, size_type j, size_type size1, size_type size2) {
- return L::mutable_restrict2(j, i, size2, size1);
- }
- static
- BOOST_UBLAS_INLINE
- size_type mutable_restrict2 (size_type i, size_type j, size_type size1, size_type size2) {
- return L::mutable_restrict1(j, i, size2, size1);
- }
- static
- BOOST_UBLAS_INLINE
- size_type global_restrict1 (size_type index1, size_type size1, size_type index2, size_type size2) {
- return L::global_restrict2(index2, size2, index1, size1);
- }
- static
- BOOST_UBLAS_INLINE
- size_type global_restrict2 (size_type index1, size_type size1, size_type index2, size_type size2) {
- return L::global_restrict1(index2, size2, index1, size1);
- }
- static
- BOOST_UBLAS_INLINE
- size_type global_mutable_restrict1 (size_type index1, size_type size1, size_type index2, size_type size2) {
- return L::global_mutable_restrict2(index2, size2, index1, size1);
- }
- static
- BOOST_UBLAS_INLINE
- size_type global_mutable_restrict2 (size_type index1, size_type size1, size_type index2, size_type size2) {
- return L::global_mutable_restrict1(index2, size2, index1, size1);
- }
- };
- }
- template <class Z>
- struct basic_lower {
- typedef Z size_type;
- typedef lower_tag triangular_type;
- template<class L>
- static
- BOOST_UBLAS_INLINE
- size_type packed_size (L, size_type size_i, size_type size_j) {
- return L::triangular_size (size_i, size_j);
- }
- static
- BOOST_UBLAS_INLINE
- bool zero (size_type i, size_type j) {
- return j > i;
- }
- static
- BOOST_UBLAS_INLINE
- bool one (size_type /* i */, size_type /* j */) {
- return false;
- }
- static
- BOOST_UBLAS_INLINE
- bool other (size_type i, size_type j) {
- return j <= i;
- }
- template<class L>
- static
- BOOST_UBLAS_INLINE
- size_type element (L, size_type i, size_type size_i, size_type j, size_type size_j) {
- return L::lower_element (i, size_i, j, size_j);
- }
- // return nearest valid index in column j
- static
- BOOST_UBLAS_INLINE
- size_type restrict1 (size_type i, size_type j, size_type size1, size_type /* size2 */) {
- return (std::max)(j, (std::min) (size1, i));
- }
- // return nearest valid index in row i
- static
- BOOST_UBLAS_INLINE
- size_type restrict2 (size_type i, size_type j, size_type /* size1 */, size_type /* size2 */) {
- return (std::max)(size_type(0), (std::min) (i+1, j));
- }
- // return nearest valid mutable index in column j
- static
- BOOST_UBLAS_INLINE
- size_type mutable_restrict1 (size_type i, size_type j, size_type size1, size_type /* size2 */) {
- return (std::max)(j, (std::min) (size1, i));
- }
- // return nearest valid mutable index in row i
- static
- BOOST_UBLAS_INLINE
- size_type mutable_restrict2 (size_type i, size_type j, size_type /* size1 */, size_type /* size2 */) {
- return (std::max)(size_type(0), (std::min) (i+1, j));
- }
- // return an index between the first and (1+last) filled row
- static
- BOOST_UBLAS_INLINE
- size_type global_restrict1 (size_type index1, size_type size1, size_type /* index2 */, size_type /* size2 */) {
- return (std::max)(size_type(0), (std::min)(size1, index1) );
- }
- // return an index between the first and (1+last) filled column
- static
- BOOST_UBLAS_INLINE
- size_type global_restrict2 (size_type /* index1 */, size_type /* size1 */, size_type index2, size_type size2) {
- return (std::max)(size_type(0), (std::min)(size2, index2) );
- }
- // return an index between the first and (1+last) filled mutable row
- static
- BOOST_UBLAS_INLINE
- size_type global_mutable_restrict1 (size_type index1, size_type size1, size_type /* index2 */, size_type /* size2 */) {
- return (std::max)(size_type(0), (std::min)(size1, index1) );
- }
- // return an index between the first and (1+last) filled mutable column
- static
- BOOST_UBLAS_INLINE
- size_type global_mutable_restrict2 (size_type /* index1 */, size_type /* size1 */, size_type index2, size_type size2) {
- return (std::max)(size_type(0), (std::min)(size2, index2) );
- }
- };
- // the first row only contains a single 1. Thus it is not stored.
- template <class Z>
- struct basic_unit_lower : public basic_lower<Z> {
- typedef Z size_type;
- typedef unit_lower_tag triangular_type;
- template<class L>
- static
- BOOST_UBLAS_INLINE
- size_type packed_size (L, size_type size_i, size_type size_j) {
- // Zero size strict triangles are bad at this point
- BOOST_UBLAS_CHECK (size_i != 0 && size_j != 0, bad_index ());
- return L::triangular_size (size_i - 1, size_j - 1);
- }
- static
- BOOST_UBLAS_INLINE
- bool one (size_type i, size_type j) {
- return j == i;
- }
- static
- BOOST_UBLAS_INLINE
- bool other (size_type i, size_type j) {
- return j < i;
- }
- template<class L>
- static
- BOOST_UBLAS_INLINE
- size_type element (L, size_type i, size_type size_i, size_type j, size_type size_j) {
- // Zero size strict triangles are bad at this point
- BOOST_UBLAS_CHECK (size_i != 0 && size_j != 0 && i != 0, bad_index ());
- return L::lower_element (i-1, size_i - 1, j, size_j - 1);
- }
- static
- BOOST_UBLAS_INLINE
- size_type mutable_restrict1 (size_type i, size_type j, size_type size1, size_type /* size2 */) {
- return (std::max)(j+1, (std::min) (size1, i));
- }
- static
- BOOST_UBLAS_INLINE
- size_type mutable_restrict2 (size_type i, size_type j, size_type /* size1 */, size_type /* size2 */) {
- return (std::max)(size_type(0), (std::min) (i, j));
- }
- // return an index between the first and (1+last) filled mutable row
- static
- BOOST_UBLAS_INLINE
- size_type global_mutable_restrict1 (size_type index1, size_type size1, size_type /* index2 */, size_type /* size2 */) {
- return (std::max)(size_type(1), (std::min)(size1, index1) );
- }
- // return an index between the first and (1+last) filled mutable column
- static
- BOOST_UBLAS_INLINE
- size_type global_mutable_restrict2 (size_type /* index1 */, size_type /* size1 */, size_type index2, size_type size2) {
- BOOST_UBLAS_CHECK( size2 >= 1 , external_logic() );
- return (std::max)(size_type(0), (std::min)(size2-1, index2) );
- }
- };
- // the first row only contains no element. Thus it is not stored.
- template <class Z>
- struct basic_strict_lower : public basic_unit_lower<Z> {
- typedef Z size_type;
- typedef strict_lower_tag triangular_type;
- template<class L>
- static
- BOOST_UBLAS_INLINE
- size_type packed_size (L, size_type size_i, size_type size_j) {
- // Zero size strict triangles are bad at this point
- BOOST_UBLAS_CHECK (size_i != 0 && size_j != 0, bad_index ());
- return L::triangular_size (size_i - 1, size_j - 1);
- }
- static
- BOOST_UBLAS_INLINE
- bool zero (size_type i, size_type j) {
- return j >= i;
- }
- static
- BOOST_UBLAS_INLINE
- bool one (size_type /*i*/, size_type /*j*/) {
- return false;
- }
- static
- BOOST_UBLAS_INLINE
- bool other (size_type i, size_type j) {
- return j < i;
- }
- template<class L>
- static
- BOOST_UBLAS_INLINE
- size_type element (L, size_type i, size_type size_i, size_type j, size_type size_j) {
- // Zero size strict triangles are bad at this point
- BOOST_UBLAS_CHECK (size_i != 0 && size_j != 0 && i != 0, bad_index ());
- return L::lower_element (i-1, size_i - 1, j, size_j - 1);
- }
- static
- BOOST_UBLAS_INLINE
- size_type restrict1 (size_type i, size_type j, size_type size1, size_type size2) {
- return basic_unit_lower<Z>::mutable_restrict1(i, j, size1, size2);
- }
- static
- BOOST_UBLAS_INLINE
- size_type restrict2 (size_type i, size_type j, size_type size1, size_type size2) {
- return basic_unit_lower<Z>::mutable_restrict2(i, j, size1, size2);
- }
- // return an index between the first and (1+last) filled row
- static
- BOOST_UBLAS_INLINE
- size_type global_restrict1 (size_type index1, size_type size1, size_type index2, size_type size2) {
- return basic_unit_lower<Z>::global_mutable_restrict1(index1, size1, index2, size2);
- }
- // return an index between the first and (1+last) filled column
- static
- BOOST_UBLAS_INLINE
- size_type global_restrict2 (size_type index1, size_type size1, size_type index2, size_type size2) {
- return basic_unit_lower<Z>::global_mutable_restrict2(index1, size1, index2, size2);
- }
- };
- template <class Z>
- struct basic_upper : public detail::transposed_structure<basic_lower<Z> >
- {
- typedef upper_tag triangular_type;
- };
- template <class Z>
- struct basic_unit_upper : public detail::transposed_structure<basic_unit_lower<Z> >
- {
- typedef unit_upper_tag triangular_type;
- };
- template <class Z>
- struct basic_strict_upper : public detail::transposed_structure<basic_strict_lower<Z> >
- {
- typedef strict_upper_tag triangular_type;
- };
- }}}
- #endif
|