00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #ifndef _CXSC_LRVECIMAT_INL_INCLUDED
00027 #define _CXSC_LRVECIMAT_INL_INCLUDED
00028
00029 namespace cxsc {
00030
00031 INLINE void accumulate(idotprecision &dp, const imatrix_subv & rv1, const l_rvector &rv2)
00032 #if(CXSC_INDEX_CHECK)
00033 throw(OP_WITH_WRONG_DIM)
00034 #else
00035 throw()
00036 #endif
00037 { _vmvaccu<idotprecision,l_rvector,imatrix_subv>(dp,rv2,rv1); }
00038 INLINE void accumulate(idotprecision &dp, const l_rvector & rv1, const imatrix_subv &rv2)
00039 #if(CXSC_INDEX_CHECK)
00040 throw(OP_WITH_WRONG_DIM)
00041 #else
00042 throw()
00043 #endif
00044 { _vmvaccu<idotprecision,l_rvector,imatrix_subv>(dp,rv1,rv2); }
00045 INLINE void accumulate(idotprecision &dp, const imatrix_subv & rv1, const l_rvector_slice &rv2)
00046 #if(CXSC_INDEX_CHECK)
00047 throw(OP_WITH_WRONG_DIM)
00048 #else
00049 throw()
00050 #endif
00051 { _vmvaccu<idotprecision,l_rvector,imatrix_subv>(dp,l_rvector(rv2),rv1); }
00052 INLINE void accumulate(idotprecision &dp, const l_rvector_slice & rv1, const imatrix_subv &rv2)
00053 #if(CXSC_INDEX_CHECK)
00054 throw(OP_WITH_WRONG_DIM)
00055 #else
00056 throw()
00057 #endif
00058 { _vmvaccu<idotprecision,l_rvector,imatrix_subv>(dp,l_rvector(rv1),rv2); }
00059
00060 }
00061
00062 #endif
00063