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
31namespace cxsc {
32
34 void accumulate(cidotprecision &dp, const cvector & rv1, const ivector &rv2)
35#if(CXSC_INDEX_CHECK)
36;
37#else
38 noexcept;
39#endif
41 void accumulate(cidotprecision &dp, const ivector & rv1, const cvector &rv2)
42#if(CXSC_INDEX_CHECK)
43;
44#else
45 noexcept;
46#endif
48 void accumulate(cidotprecision &dp, const cvector_slice & sl, const ivector &rv)
49#if(CXSC_INDEX_CHECK)
50;
51#else
52 noexcept;
53#endif
55 void accumulate(cidotprecision &dp,const ivector_slice &sl,const cvector &rv)
56#if(CXSC_INDEX_CHECK)
57;
58#else
59 noexcept;
60#endif
62 void accumulate(cidotprecision &dp, const cvector &rv, const ivector_slice &sl)
63#if(CXSC_INDEX_CHECK)
64;
65#else
66 noexcept;
67#endif
69 void accumulate(cidotprecision &dp,const ivector &rv,const cvector_slice &sl)
70#if(CXSC_INDEX_CHECK)
71;
72#else
73 noexcept;
74#endif
76 void accumulate(cidotprecision &dp, const ivector_slice & sl1, const cvector_slice &sl2)
77#if(CXSC_INDEX_CHECK)
78;
79#else
80 noexcept;
81#endif
83 void accumulate(cidotprecision &dp, const cvector_slice & sl1, const ivector_slice &sl2)
84#if(CXSC_INDEX_CHECK)
85;
86#else
87 noexcept;
88#endif
89
91 INLINE cinterval operator *(const cvector & rv1, const ivector &rv2)
92#if(CXSC_INDEX_CHECK)
93;
94#else
95 noexcept;
96#endif
98 INLINE cinterval operator *(const cvector_slice &sl, const ivector &rv)
99#if(CXSC_INDEX_CHECK)
100;
101#else
102 noexcept;
103#endif
105 INLINE cinterval operator *(const cvector &rv, const ivector_slice &sl)
106#if(CXSC_INDEX_CHECK)
107;
108#else
109 noexcept;
110#endif
112 INLINE cinterval operator *(const cvector_slice & sl1, const ivector_slice &sl2)
113#if(CXSC_INDEX_CHECK)
114;
115#else
116 noexcept;
117#endif
118
120 INLINE cinterval operator *(const ivector & rv1, const cvector &rv2)
121#if(CXSC_INDEX_CHECK)
122;
123#else
124 noexcept;
125#endif
127 INLINE cinterval operator *(const ivector_slice &sl, const cvector &rv)
128#if(CXSC_INDEX_CHECK)
129;
130#else
131 noexcept;
132#endif
134 INLINE cinterval operator *(const ivector &rv, const cvector_slice &sl)
135#if(CXSC_INDEX_CHECK)
136;
137#else
138 noexcept;
139#endif
141 INLINE cinterval operator *(const ivector_slice & sl1, const cvector_slice &sl2)
142#if(CXSC_INDEX_CHECK)
143;
144#else
145 noexcept;
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) noexcept
Implementation of multiplication operation.
Definition cimatrix.inl:731