Serac  0.1
Serac is an implicit thermal strucural mechanics simulation code.
common.hpp
Go to the documentation of this file.
1 // Copyright (c) Lawrence Livermore National Security, LLC and
2 // other Serac Project Developers. See the top-level LICENSE file for
3 // details.
4 //
5 // SPDX-License-Identifier: (BSD-3-Clause)
6 
12 #pragma once
13 
14 namespace serac {
15 
20 template <typename... T>
21 struct Parameters {
22  static constexpr int n = sizeof...(T);
23 };
24 
25 } // namespace serac
Accelerator functionality.
Definition: serac.cpp:36
a struct that is used in the physics modules to clarify which template arguments are user-controlled ...
Definition: common.hpp:21
static constexpr int n
how many parameters were specified
Definition: common.hpp:22