C-XSC - A C++ Class Library for Extended Scientific Computing  2.5.4
iveccvec.hpp
1 /*
2 ** CXSC is a C++ library for eXtended Scientific Computing (V 2.5.4)
3 **
4 ** Copyright (C) 1990-2000 Institut fuer Angewandte Mathematik,
5 ** Universitaet Karlsruhe, Germany
6 ** (C) 2000-2014 Wiss. Rechnen/Softwaretechnologie
7 ** Universitaet Wuppertal, Germany
8 **
9 ** This library is free software; you can redistribute it and/or
10 ** modify it under the terms of the GNU Library General Public
11 ** License as published by the Free Software Foundation; either
12 ** version 2 of the License, or (at your option) any later version.
13 **
14 ** This library is distributed in the hope that it will be useful,
15 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 ** Library General Public License for more details.
18 **
19 ** You should have received a copy of the GNU Library General Public
20 ** License along with this library; if not, write to the Free
21 ** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 */
23 
24 /* CVS $Id: iveccvec.hpp,v 1.26 2014/01/30 17:23:45 cxsc Exp $ */
25 
26 #ifndef _CXSC_IVECCVEC_HPP_INCLUDED
27 #define _CXSC_IVECCVEC_HPP_INCLUDED
28 
29 #include "cinterval.hpp"
30 
31 namespace cxsc {
32 
34  void accumulate(cidotprecision &dp, const cvector & rv1, const ivector &rv2)
35 #if(CXSC_INDEX_CHECK)
36  throw(OP_WITH_WRONG_DIM);
37 #else
38  throw();
39 #endif
40  void accumulate(cidotprecision &dp, const ivector & rv1, const cvector &rv2)
42 #if(CXSC_INDEX_CHECK)
43  throw(OP_WITH_WRONG_DIM);
44 #else
45  throw();
46 #endif
47  void accumulate(cidotprecision &dp, const cvector_slice & sl, const ivector &rv)
49 #if(CXSC_INDEX_CHECK)
50  throw(OP_WITH_WRONG_DIM);
51 #else
52  throw();
53 #endif
54  void accumulate(cidotprecision &dp,const ivector_slice &sl,const cvector &rv)
56 #if(CXSC_INDEX_CHECK)
57  throw(OP_WITH_WRONG_DIM);
58 #else
59  throw();
60 #endif
61  void accumulate(cidotprecision &dp, const cvector &rv, const ivector_slice &sl)
63 #if(CXSC_INDEX_CHECK)
64  throw(OP_WITH_WRONG_DIM);
65 #else
66  throw();
67 #endif
68  void accumulate(cidotprecision &dp,const ivector &rv,const cvector_slice &sl)
70 #if(CXSC_INDEX_CHECK)
71  throw(OP_WITH_WRONG_DIM);
72 #else
73  throw();
74 #endif
75  void accumulate(cidotprecision &dp, const ivector_slice & sl1, const cvector_slice &sl2)
77 #if(CXSC_INDEX_CHECK)
78  throw(OP_WITH_WRONG_DIM);
79 #else
80  throw();
81 #endif
82  void accumulate(cidotprecision &dp, const cvector_slice & sl1, const ivector_slice &sl2)
84 #if(CXSC_INDEX_CHECK)
85  throw(OP_WITH_WRONG_DIM);
86 #else
87  throw();
88 #endif
89 
91  INLINE cinterval operator *(const cvector & rv1, const ivector &rv2)
92 #if(CXSC_INDEX_CHECK)
93  throw(ERROR__OP_WITH_WRONG_DIM<civector>);
94 #else
95  throw();
96 #endif
97  INLINE cinterval operator *(const cvector_slice &sl, const ivector &rv)
99 #if(CXSC_INDEX_CHECK)
100  throw(ERROR__OP_WITH_WRONG_DIM<civector>);
101 #else
102  throw();
103 #endif
104  INLINE cinterval operator *(const cvector &rv, const ivector_slice &sl)
106 #if(CXSC_INDEX_CHECK)
107  throw(ERROR__OP_WITH_WRONG_DIM<civector>);
108 #else
109  throw();
110 #endif
111  INLINE cinterval operator *(const cvector_slice & sl1, const ivector_slice &sl2)
113 #if(CXSC_INDEX_CHECK)
114  throw(ERROR__OP_WITH_WRONG_DIM<civector>);
115 #else
116  throw();
117 #endif
118 
120  INLINE cinterval operator *(const ivector & rv1, const cvector &rv2)
121 #if(CXSC_INDEX_CHECK)
122  throw(ERROR__OP_WITH_WRONG_DIM<civector>);
123 #else
124  throw();
125 #endif
126  INLINE cinterval operator *(const ivector_slice &sl, const cvector &rv)
128 #if(CXSC_INDEX_CHECK)
129  throw(ERROR__OP_WITH_WRONG_DIM<civector>);
130 #else
131  throw();
132 #endif
133  INLINE cinterval operator *(const ivector &rv, const cvector_slice &sl)
135 #if(CXSC_INDEX_CHECK)
136  throw(ERROR__OP_WITH_WRONG_DIM<civector>);
137 #else
138  throw();
139 #endif
140  INLINE cinterval operator *(const ivector_slice & sl1, const cvector_slice &sl2)
142 #if(CXSC_INDEX_CHECK)
143  throw(ERROR__OP_WITH_WRONG_DIM<civector>);
144 #else
145  throw();
146 #endif
147 
148 } // namespace cxsc
149 
150 #endif
151 
The namespace cxsc, providing all functionality of the class library C-XSC.
Definition: cdot.cpp:29
civector operator*(const cimatrix_subv &rv, const cinterval &s)
Implementation of multiplication operation.
Definition: cimatrix.inl:731