Dune Core Modules (2.7.0)

binaryfunctions.hh
Go to the documentation of this file.
1// -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2// vi: set et ts=4 sw=2 sts=2:
3#ifndef DUNE_BINARYFUNCTIONS_HH
4#define DUNE_BINARYFUNCTIONS_HH
5
10#include <algorithm>
11
12namespace Dune
13{
14 template<typename Type>
15 struct Min
16 {
17 using first_argument_type [[deprecated("This type alias is deprecated following similar deprecations in C++17")]] = Type;
18
19 using second_argument_type [[deprecated("This type alias is deprecated following similar deprecations in C++17")]] = Type;
20
21 using result_type [[deprecated("This type alias is deprecated following similar deprecations in C++17")]] = Type;
22
23 Type operator()(const Type& t1, const Type& t2) const
24 {
25 using std::min;
26 return min(t1,t2);
27 }
28 };
29
30 template<typename Type>
31 struct Max
32 {
33 using first_argument_type [[deprecated("This type alias is deprecated following similar deprecations in C++17")]] = Type;
34
35 using second_argument_type [[deprecated("This type alias is deprecated following similar deprecations in C++17")]] = Type;
36
37 using result_type [[deprecated("This type alias is deprecated following similar deprecations in C++17")]] = Type;
38
39 Type operator()(const Type& t1, const Type& t2) const
40 {
41 using std::max;
42 return max(t1,t2);
43 }
44 };
45}
46
47#endif
auto min(ADLTag< 0 >, const V &v1, const V &v2)
implements binary Simd::min()
Definition: defaults.hh:87
auto max(ADLTag< 0 >, const V &v1, const V &v2)
implements binary Simd::max()
Definition: defaults.hh:79
Dune namespace.
Definition: alignedallocator.hh:14
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden  |  generated with Hugo v0.111.3 (Jul 15, 22:36, 2024)