Smith  0.1
Smith is an implicit thermal structural mechanics simulation code.
common.hpp
Go to the documentation of this file.
1 // Copyright (c) Lawrence Livermore National Security, LLC and
2 // other Smith 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 smith {
15 
20 template <typename... T>
21 struct Parameters {
22  static constexpr int n = sizeof...(T);
23 };
24 
25 } // namespace smith
Accelerator functionality.
Definition: smith.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