Chemical Data Processing Library C++ API - Version 1.4.0
VectorAssignment.hpp
Go to the documentation of this file.
1 /*
2  * VectorAssignment.hpp
3  *
4  * Copyright (C) 2003 Thomas Seidel <thomas.seidel@univie.ac.at>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with this library; see the file COPYING. If not, write to
18  * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21 
27 #ifndef CDPL_MATH_VECTORASSIGNMENT_HPP
28 #define CDPL_MATH_VECTORASSIGNMENT_HPP
29 
30 #include <utility>
31 
32 #include "CDPL/Math/Check.hpp"
33 #include "CDPL/Math/CommonType.hpp"
34 #include "CDPL/Base/Exceptions.hpp"
35 
36 
37 namespace CDPL
38 {
39 
40  namespace Math
41  {
42 
43  template <typename E>
44  class VectorExpression;
45 
55  template <template <typename T1, typename T2> class F, typename V, typename E>
57  {
59 
60  SizeType size = CDPL_MATH_CHECK_SIZE_EQUALITY(SizeType(v.getSize()), SizeType(e().getSize()), Base::SizeError);
61 
62  typedef F<typename V::Reference, typename E::ValueType> FunctorType;
63 
64  for (SizeType i = 0; i < size; i++)
65  FunctorType::apply(v(i), e()(i));
66  }
67 
76  template <template <typename T1, typename T2> class F, typename V, typename T>
77  void vectorAssignScalar(V& v, const T& t)
78  {
79  typedef F<typename V::Reference, T> FunctorType;
80  typedef typename V::SizeType SizeType;
81 
82  SizeType size = v.getSize();
83 
84  for (SizeType i = 0; i < size; i++)
85  FunctorType::apply(v(i), t);
86  }
87 
96  template <typename V, typename E>
98  {
100 
101  SizeType size = CDPL_MATH_CHECK_SIZE_EQUALITY(SizeType(v.getSize()), SizeType(e().getSize()), Base::SizeError);
102 
103  for (SizeType i = 0; i < size; i++)
104  std::swap(v(i), e()(i));
105  }
106  } // namespace Math
107 } // namespace CDPL
108 
109 #endif // CDPL_MATH_VECTORASSIGNMENT_HPP
Definition of exception classes.
Definition of various preprocessor macros for error checking.
#define CDPL_MATH_CHECK_SIZE_EQUALITY(size1, size2, e)
Throws the exception e if size1 differs from size2, otherwise returns std::min(size1,...
Definition: Check.hpp:84
Common type deduction.
Thrown to indicate that the size of a (multidimensional) array is not correct.
Definition: Base/Exceptions.hpp:133
CRTP base class for all vector expression types.
Definition: Expression.hpp:66
constexpr unsigned int V
Specifies Vanadium.
Definition: AtomType.hpp:177
constexpr unsigned int T
Specifies Hydrogen (Tritium).
Definition: AtomType.hpp:67
constexpr unsigned int F
Specifies Fluorine.
Definition: AtomType.hpp:107
constexpr unsigned int E
Specifies that the stereocenter has E configuration.
Definition: CIPDescriptor.hpp:96
void vectorAssignVector(V &v, const VectorExpression< E > &e)
Applies the element-wise functor F to every (vector element, source element) pair,...
Definition: VectorAssignment.hpp:56
void vectorSwap(V &v, VectorExpression< E > &e)
Swaps the elements of two equally sized vector expressions element by element.
Definition: VectorAssignment.hpp:97
void vectorAssignScalar(V &v, const T &t)
Applies the element-wise functor F to every (vector element, scalar) pair, i.e. F::apply(v(i),...
Definition: VectorAssignment.hpp:77
The namespace of the Chemical Data Processing Library.
std::common_type< T1, T2 >::type Type
The common type.
Definition: CommonType.hpp:49