Chemical Data Processing Library C++ API - Version 1.4.0
MatrixAssignment.hpp
Go to the documentation of this file.
1 /*
2  * MatrixAssignment.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_MATRIXASSIGNMENT_HPP
28 #define CDPL_MATH_MATRIXASSIGNMENT_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 MatrixExpression;
45 
55  template <template <typename T1, typename T2> class F, typename M, typename E>
57  {
59 
60  SizeType size1 = CDPL_MATH_CHECK_SIZE_EQUALITY(SizeType(m.getSize1()), SizeType(e().getSize1()), Base::SizeError);
61  SizeType size2 = CDPL_MATH_CHECK_SIZE_EQUALITY(SizeType(m.getSize2()), SizeType(e().getSize2()), Base::SizeError);
62 
63  typedef F<typename M::Reference, typename E::ValueType> FunctorType;
64 
65  for (SizeType i = 0; i < size1; i++)
66  for (SizeType j = 0; j < size2; j++)
67  FunctorType::apply(m(i, j), e()(i, j));
68  }
69 
78  template <template <typename T1, typename T2> class F, typename M, typename T>
79  void matrixAssignScalar(M& m, const T& t)
80  {
81  typedef F<typename M::Reference, T> FunctorType;
82  typedef typename M::SizeType SizeType;
83 
84  SizeType size1 = m.getSize1();
85  SizeType size2 = m.getSize2();
86 
87  for (SizeType i = 0; i < size1; i++)
88  for (SizeType j = 0; j < size2; j++)
89  FunctorType::apply(m(i, j), t);
90  }
91 
100  template <typename M, typename E>
102  {
104 
105  SizeType size1 = CDPL_MATH_CHECK_SIZE_EQUALITY(SizeType(m.getSize1()), SizeType(e().getSize1()), Base::SizeError);
106  SizeType size2 = CDPL_MATH_CHECK_SIZE_EQUALITY(SizeType(m.getSize2()), SizeType(e().getSize2()), Base::SizeError);
107 
108  for (SizeType i = 0; i < size1; i++)
109  for (SizeType j = 0; j < size2; j++)
110  std::swap(m(i, j), e()(i, j));
111  }
112  } // namespace Math
113 } // namespace CDPL
114 
115 #endif // CDPL_MATH_MATRIXASSIGNMENT_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 matrix expression types.
Definition: Expression.hpp:104
constexpr unsigned int M
Generic type that covers any element that is a metal.
Definition: AtomType.hpp:657
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
constexpr unsigned int m
Specifies that the stereocenter has m configuration.
Definition: CIPDescriptor.hpp:116
void matrixAssignScalar(M &m, const T &t)
Applies the element-wise functor F to every (matrix element, scalar) pair, i.e. F::apply(m(i,...
Definition: MatrixAssignment.hpp:79
void matrixAssignMatrix(M &m, const MatrixExpression< E > &e)
Applies the element-wise functor F to every (matrix element, source element) pair,...
Definition: MatrixAssignment.hpp:56
void matrixSwap(M &m, MatrixExpression< E > &e)
Swaps the elements of two equally sized matrix expressions element by element.
Definition: MatrixAssignment.hpp:101
The namespace of the Chemical Data Processing Library.
std::common_type< T1, T2 >::type Type
The common type.
Definition: CommonType.hpp:49