Stokhos Package Browser (Single Doxygen Collection)
Version of the Day
Toggle main menu visibility
Loading...
Searching...
No Matches
src
sacado
Sacado_PCE_OrthogPolyTraits.hpp
Go to the documentation of this file.
1
// @HEADER
2
// ***********************************************************************
3
//
4
// Stokhos Package
5
// Copyright (2009) Sandia Corporation
6
//
7
// Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive
8
// license for use of this work by or on behalf of the U.S. Government.
9
//
10
// Redistribution and use in source and binary forms, with or without
11
// modification, are permitted provided that the following conditions are
12
// met:
13
//
14
// 1. Redistributions of source code must retain the above copyright
15
// notice, this list of conditions and the following disclaimer.
16
//
17
// 2. Redistributions in binary form must reproduce the above copyright
18
// notice, this list of conditions and the following disclaimer in the
19
// documentation and/or other materials provided with the distribution.
20
//
21
// 3. Neither the name of the Corporation nor the names of the
22
// contributors may be used to endorse or promote products derived from
23
// this software without specific prior written permission.
24
//
25
// THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
26
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
29
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
30
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
31
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
32
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36
//
37
// Questions? Contact Eric T. Phipps (etphipp@sandia.gov).
38
//
39
// ***********************************************************************
40
// @HEADER
41
42
#ifndef SACADO_PCE_ORTHOGPOLYTRAITS_HPP
43
#define SACADO_PCE_ORTHOGPOLYTRAITS_HPP
44
45
#include "Sacado_Traits.hpp"
46
47
// Forward declarations
48
namespace
Sacado
{
49
namespace
PCE
{
50
template
<
typename
T,
typename
S>
class
OrthogPoly
;
51
}
52
}
53
54
namespace
Sacado
{
55
57
SACADO_AD_PROMOTE_SPEC2(
PCE
, OrthogPoly )
58
59
60
template
<
typename
T,
typename
S>
61
struct
ScalarType<
PCE
::OrthogPoly<T,S> > {
62
typedef
typename
ScalarType<typename PCE::OrthogPoly<T,S>::value_type>
::type
type
;
63
};
64
66
template
<
typename
T,
typename
S>
67
struct
ValueType<
PCE
::OrthogPoly<T,S> > {
68
typedef
typename
PCE::OrthogPoly<T,S>::value_type
type
;
69
};
70
72
template
<
typename
T,
typename
S>
73
struct
IsADType<
PCE
::OrthogPoly<T,S> > {
74
static
const
bool
value
=
true
;
75
};
76
78
template
<
typename
T,
typename
S>
79
struct
IsScalarType<
PCE
::OrthogPoly<T,S> > {
80
static
const
bool
value
=
false
;
81
};
82
84
template
<
typename
T,
typename
S>
85
struct
Value<
PCE
::OrthogPoly<T,S> > {
86
typedef
typename
ValueType< PCE::OrthogPoly<T,S> >::type
value_type
;
87
static
const
value_type
&
eval
(
const
PCE::OrthogPoly<T,S>
& x) {
88
return
x.val(); }
89
};
90
92
template
<
typename
T,
typename
S>
93
struct
ScalarValue<
PCE
::OrthogPoly<T,S> > {
94
typedef
typename
ValueType< PCE::OrthogPoly<T,S> >::type
value_type
;
95
typedef
typename
ScalarType< PCE::OrthogPoly<T,S> >::type
scalar_type
;
96
static
const
scalar_type
&
eval
(
const
PCE::OrthogPoly<T,S>
& x) {
97
return
ScalarValue<value_type>::eval(x.val()); }
98
};
99
101
template
<
typename
T,
typename
S>
102
struct
StringName<
PCE
::OrthogPoly<T,S> > {
103
static
std::string
eval
() {
104
return
std::string(
"Sacado::PCE::OrthogPoly< "
) +
105
StringName<T>::eval() +
" >"
; }
106
};
107
109
template
<
typename
T,
typename
S>
110
struct
IsEqual<
PCE
::OrthogPoly<T,S> > {
111
static
bool
eval
(
const
PCE::OrthogPoly<T,S>
& x,
112
const
PCE::OrthogPoly<T,S>
& y) {
113
return
x.isEqualTo(y);
114
}
115
};
116
118
template
<
typename
T,
typename
S>
119
struct
IsStaticallySized<
PCE
::OrthogPoly<T,S> > {
120
static
const
bool
value
=
false
;
121
};
122
123
}
// namespace Sacado
124
125
// Define Teuchos traits classes
126
// Note Stokhos has required dependency on all Teuchos sub-packages
127
#include "Teuchos_PromotionTraits.hpp"
128
#include "Teuchos_ScalarTraits.hpp"
129
#include "
Sacado_PCE_ScalarTraitsImp.hpp
"
130
#include "Teuchos_SerializationTraits.hpp"
131
132
namespace
Teuchos
{
133
135
template
<
typename
T,
typename
S>
136
struct
PromotionTraits<
Sacado
::PCE::OrthogPoly<T,S>,
137
Sacado::PCE::OrthogPoly
<T,S> > {
138
typedef
typename
Sacado::Promote< Sacado::PCE::OrthogPoly<T,S>,
139
Sacado::PCE::OrthogPoly<T,S>
>::type
140
promote
;
141
};
142
144
template
<
typename
T,
typename
S,
typename
R>
145
struct
PromotionTraits<
Sacado
::PCE::OrthogPoly<T,S>, R > {
146
typedef
typename
Sacado::Promote< Sacado::PCE::OrthogPoly<T,S>, R >::type
147
promote
;
148
};
149
151
template
<
typename
L,
typename
T,
typename
S>
152
struct
PromotionTraits< L,
Sacado
::PCE::OrthogPoly<T,S> > {
153
public
:
154
typedef
typename
Sacado::Promote< L, Sacado::PCE::OrthogPoly<T,S> >::type
155
promote
;
156
};
157
159
template
<
typename
T,
typename
S>
160
struct
ScalarTraits<
Sacado
::PCE::OrthogPoly<T,S> > :
161
public
Sacado::PCE::ScalarTraitsImp
< Sacado::PCE::OrthogPoly<T,S> > {};
162
164
template
<
typename
TypeTo,
typename
T,
typename
S>
165
struct
ValueTypeConversionTraits< TypeTo,
Sacado
::PCE::OrthogPoly<T,S> > :
166
public
Sacado::PCE::ValueTypeConversionTraitsImp
< TypeTo,
167
Sacado::PCE::OrthogPoly<T,S> > {};
168
170
template
<
typename
Ordinal,
typename
T,
typename
S>
171
struct
SerializationTraits<Ordinal,
Sacado
::PCE::OrthogPoly<T,S> > :
172
public
Sacado::PCE::SerializationTraitsImp
< Ordinal,
173
Sacado::PCE::OrthogPoly<T,S> >
174
{};
175
177
template
<
typename
Ordinal,
typename
T,
typename
S>
178
struct
ValueTypeSerializer
<Ordinal,
Sacado
::PCE::OrthogPoly<T,S> > :
179
public
Sacado::PCE::SerializerImp
< Ordinal,
180
Sacado::PCE::OrthogPoly<T,S>,
181
ValueTypeSerializer<Ordinal,T> >
182
{
183
typedef
Sacado::PCE::OrthogPoly<T,S>
PCEType
;
184
typedef
ValueTypeSerializer<Ordinal,T>
ValueSerializer
;
185
typedef
Sacado::PCE::SerializerImp< Ordinal,PCEType,ValueSerializer>
Base
;
186
typedef
typename
Base::expansion_type
expansion_type
;
187
ValueTypeSerializer
(
const
Teuchos::RCP<expansion_type>&
expansion
,
188
const
Teuchos::RCP<const ValueSerializer>&
vs
) :
189
Base
(
expansion
,
vs
) {}
190
};
191
192
}
193
194
#endif
// SACADO_PCE_UNIVARIATEHERMITETRAITS_HPP
Sacado_PCE_ScalarTraitsImp.hpp
Sacado::PCE::OrthogPoly
Definition
Sacado_PCE_OrthogPolyTraits.hpp:50
Sacado::PCE::SerializationTraitsImp
Implementation of Teuchos::SerializationTraits for all PCE types.
Definition
Sacado_PCE_ScalarTraitsImp.hpp:240
Sacado::PCE::SerializerImp
Serializer object for all PCE types.
Definition
Sacado_PCE_ScalarTraitsImp.hpp:351
Sacado::PCE::SerializerImp::expansion_type
PCEType::expansion_type expansion_type
Typename of expansion.
Definition
Sacado_PCE_ScalarTraitsImp.hpp:359
Sacado::PCE::SerializerImp< Ordinal, Sacado::PCE::OrthogPoly< T, S >, ValueTypeSerializer< Ordinal, T > >::expansion
Teuchos::RCP< expansion_type > expansion
Definition
Sacado_PCE_ScalarTraitsImp.hpp:367
Sacado::PCE::SerializerImp< Ordinal, Sacado::PCE::OrthogPoly< T, S >, ValueTypeSerializer< Ordinal, T > >::vs
Teuchos::RCP< const ValueTypeSerializer< Ordinal, T > > vs
Definition
Sacado_PCE_ScalarTraitsImp.hpp:368
Sacado::PCE
Definition
Sacado_PCE_OrthogPolyImp.hpp:47
Sacado
Definition
Kokkos_View_UQ_PCE_Fwd.hpp:62
Teuchos
Definition
Sacado_UQ_PCE_Traits.hpp:136
Sacado::IsADType< PCE::OrthogPoly< T, S > >::value
static const bool value
Definition
Sacado_PCE_OrthogPolyTraits.hpp:74
Sacado::IsEqual< PCE::OrthogPoly< T, S > >::eval
static bool eval(const PCE::OrthogPoly< T, S > &x, const PCE::OrthogPoly< T, S > &y)
Definition
Sacado_PCE_OrthogPolyTraits.hpp:111
Sacado::IsScalarType< PCE::OrthogPoly< T, S > >::value
static const bool value
Definition
Sacado_PCE_OrthogPolyTraits.hpp:80
Sacado::IsStaticallySized< PCE::OrthogPoly< T, S > >::value
static const bool value
Definition
Sacado_PCE_OrthogPolyTraits.hpp:120
Sacado::PCE::ScalarTraitsImp
Implementation for Teuchos::ScalarTraits for all PCE types.
Definition
Sacado_PCE_ScalarTraitsImp.hpp:58
Sacado::PCE::ValueTypeConversionTraitsImp
Implementation for Teuchos::ValueTypeConversionTraits for all PCE types.
Definition
Sacado_PCE_ScalarTraitsImp.hpp:226
Sacado::ScalarType< PCE::OrthogPoly< T, S > >::type
ScalarType< typenamePCE::OrthogPoly< T, S >::value_type >::type type
Definition
Sacado_PCE_OrthogPolyTraits.hpp:62
Sacado::ScalarValue< PCE::OrthogPoly< T, S > >::value_type
ValueType< PCE::OrthogPoly< T, S > >::type value_type
Definition
Sacado_PCE_OrthogPolyTraits.hpp:94
Sacado::ScalarValue< PCE::OrthogPoly< T, S > >::scalar_type
ScalarType< PCE::OrthogPoly< T, S > >::type scalar_type
Definition
Sacado_PCE_OrthogPolyTraits.hpp:95
Sacado::ScalarValue< PCE::OrthogPoly< T, S > >::eval
static const scalar_type & eval(const PCE::OrthogPoly< T, S > &x)
Definition
Sacado_PCE_OrthogPolyTraits.hpp:96
Sacado::StringName< PCE::OrthogPoly< T, S > >::eval
static std::string eval()
Definition
Sacado_PCE_OrthogPolyTraits.hpp:103
Sacado::ValueType< PCE::OrthogPoly< T, S > >::type
PCE::OrthogPoly< T, S >::value_type type
Definition
Sacado_PCE_OrthogPolyTraits.hpp:68
Sacado::Value< PCE::OrthogPoly< T, S > >::eval
static const value_type & eval(const PCE::OrthogPoly< T, S > &x)
Definition
Sacado_PCE_OrthogPolyTraits.hpp:87
Sacado::Value< PCE::OrthogPoly< T, S > >::value_type
ValueType< PCE::OrthogPoly< T, S > >::type value_type
Definition
Sacado_PCE_OrthogPolyTraits.hpp:86
Teuchos::PromotionTraits< L, Sacado::PCE::OrthogPoly< T, S > >::promote
Sacado::Promote< L, Sacado::PCE::OrthogPoly< T, S > >::type promote
Definition
Sacado_PCE_OrthogPolyTraits.hpp:155
Teuchos::PromotionTraits< Sacado::PCE::OrthogPoly< T, S >, R >::promote
Sacado::Promote< Sacado::PCE::OrthogPoly< T, S >, R >::type promote
Definition
Sacado_PCE_OrthogPolyTraits.hpp:147
Teuchos::PromotionTraits< Sacado::PCE::OrthogPoly< T, S >, Sacado::PCE::OrthogPoly< T, S > >::promote
Sacado::Promote< Sacado::PCE::OrthogPoly< T, S >, Sacado::PCE::OrthogPoly< T, S > >::type promote
Definition
Sacado_PCE_OrthogPolyTraits.hpp:140
Teuchos::ValueTypeSerializer< Ordinal, Sacado::PCE::OrthogPoly< T, S > >::PCEType
Sacado::PCE::OrthogPoly< T, S > PCEType
Definition
Sacado_PCE_OrthogPolyTraits.hpp:183
Teuchos::ValueTypeSerializer< Ordinal, Sacado::PCE::OrthogPoly< T, S > >::ValueSerializer
ValueTypeSerializer< Ordinal, T > ValueSerializer
Definition
Sacado_PCE_OrthogPolyTraits.hpp:184
Teuchos::ValueTypeSerializer< Ordinal, Sacado::PCE::OrthogPoly< T, S > >::expansion_type
Base::expansion_type expansion_type
Definition
Sacado_PCE_OrthogPolyTraits.hpp:186
Teuchos::ValueTypeSerializer< Ordinal, Sacado::PCE::OrthogPoly< T, S > >::Base
Sacado::PCE::SerializerImp< Ordinal, PCEType, ValueSerializer > Base
Definition
Sacado_PCE_OrthogPolyTraits.hpp:185
Teuchos::ValueTypeSerializer< Ordinal, Sacado::PCE::OrthogPoly< T, S > >::ValueTypeSerializer
ValueTypeSerializer(const Teuchos::RCP< expansion_type > &expansion, const Teuchos::RCP< const ValueSerializer > &vs)
Definition
Sacado_PCE_OrthogPolyTraits.hpp:187
Generated by
1.17.0