Panzer Version of the Day
Loading...
Searching...
No Matches
Panzer_EvaluationTraits.hpp
Go to the documentation of this file.
1// @HEADER
2// *****************************************************************************
3// Panzer: A partial differential equation assembly
4// engine for strongly coupled complex multiphysics systems
5//
6// Copyright 2011 NTESS and the Panzer contributors.
7// SPDX-License-Identifier: BSD-3-Clause
8// *****************************************************************************
9// @HEADER
10
11#ifndef PANZER_EVALUATION_TRAITS_HPP
12#define PANZER_EVALUATION_TRAITS_HPP
13
14namespace panzer {
15
21 template <class T> struct apply {
22 typedef typename T::ScalarT type;
23 };
24 };
25
26}
27
28#endif
Maps evaluation type T to its scalar type, as T::ScalarT.
Traits class used by Sacado::ScalarParameterLibrary (see panzer::ParamLib) to map an evaluation type ...