ug4
transpose.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013-2015: G-CSC, Goethe University Frankfurt
3  * Author: Martin Rupp
4  *
5  * This file is part of UG4.
6  *
7  * UG4 is free software: you can redistribute it and/or modify it under the
8  * terms of the GNU Lesser General Public License version 3 (as published by the
9  * Free Software Foundation) with the following additional attribution
10  * requirements (according to LGPL/GPL v3 §7):
11  *
12  * (1) The following notice must be displayed in the Appropriate Legal Notices
13  * of covered and combined works: "Based on UG4 (www.ug4.org/license)".
14  *
15  * (2) The following notice must be displayed at a prominent place in the
16  * terminal output of covered works: "Based on UG4 (www.ug4.org/license)".
17  *
18  * (3) The following bibliography is recommended for citation and must be
19  * preserved in all covered files:
20  * "Reiter, S., Vogel, A., Heppner, I., Rupp, M., and Wittum, G. A massively
21  * parallel geometric multigrid solver on hierarchically distributed grids.
22  * Computing and visualization in science 16, 4 (2013), 151-164"
23  * "Vogel, A., Reiter, S., Rupp, M., Nägel, A., and Wittum, G. UG4 -- a novel
24  * flexible software system for simulating pde based models on high performance
25  * computers. Computing and visualization in science 16, 4 (2013), 165-179"
26  *
27  * This program is distributed in the hope that it will be useful,
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
30  * GNU Lesser General Public License for more details.
31  */
32 
33 #ifndef __H__UG__COMMON__TRANSPOSE_H_
34 #define __H__UG__COMMON__TRANSPOSE_H_
35 
36 
37 template<typename T>
39 {
40 public:
41  typedef typename T::value_type value_type;
42  TE_TRANSPOSED(const T&_t) : t(_t) {}
43  inline size_t num_rows() const
44  {
45  return t.num_cols();
46  }
47 
48  inline size_t num_cols() const
49  {
50  return t.num_rows();
51  }
52 
53  const value_type &operator() (size_t r, size_t c) const
54  {
55  return t(c, r);
56  }
57 
58  value_type &operator() (size_t r, size_t c)
59  {
60  return t(c, r);
61  }
62 private:
63  const T &t;
64 };
65 
66 template<typename T>
67 inline TE_TRANSPOSED<T> transpose(const T &t)
68 {
69  return TE_TRANSPOSED<T>(t);
70 }
71 
72 inline const double &transpose(const double &t)
73 {
74  return t;
75 }
76 
77 inline double &transpose(double &t)
78 {
79  return t;
80 }
81 
82 #endif /* TRANSPOSE_H_ */
Definition: transpose.h:39
const value_type & operator()(size_t r, size_t c) const
Definition: transpose.h:53
size_t num_cols() const
Definition: transpose.h:48
TE_TRANSPOSED(const T &_t)
Definition: transpose.h:42
const T & t
Definition: transpose.h:63
T::value_type value_type
Definition: transpose.h:41
size_t num_rows() const
Definition: transpose.h:43
T value_type
Definition: sparsematrix_interface.h:2
TE_TRANSPOSED< T > transpose(const T &t)
Definition: transpose.h:67