Skip to content
Snippets Groups Projects
Commit 4a9a3e91 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

clang-format ParameterLib

parent 785afdaa
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,7 @@
*/
#include "ConstantParameter.h"
#include "BaseLib/ConfigTree.h"
#include "BaseLib/Error.h"
#include "BaseLib/Logging.h"
......
......@@ -17,7 +17,7 @@
namespace ParameterLib
{
static double const tolerance = 1.e-15;
static const char*const error_info =
static const char* const error_info =
"The determinant of the coordinate system transformation matrix is "
"'{:g}', which is not sufficiently close to unity with the tolerance of "
"'{:g}'. Please adjust the accuracy of the local system bases";
......
......@@ -9,6 +9,7 @@
*/
#include "CurveScaledParameter.h"
#include "Utils.h"
namespace ParameterLib
......
......@@ -9,6 +9,7 @@
*/
#include "MeshElementParameter.h"
#include "BaseLib/ConfigTree.h"
#include "MeshLib/Mesh.h"
......
......@@ -9,6 +9,7 @@
*/
#include "MeshNodeParameter.h"
#include "BaseLib/ConfigTree.h"
#include "MeshLib/Mesh.h"
......
......@@ -9,9 +9,9 @@
*/
#include "Parameter.h"
#include "BaseLib/ConfigTree.h"
#include "BaseLib/Error.h"
#include "ConstantParameter.h"
#include "CurveScaledParameter.h"
#include "FunctionParameter.h"
......
......@@ -10,10 +10,11 @@
#include "RandomFieldMeshElementParameter.h"
#include <functional>
#include <random>
#include "BaseLib/ConfigTree.h"
#include "MeshLib/Mesh.h"
#include <random>
#include <functional>
namespace ParameterLib
{
......
......@@ -121,7 +121,7 @@ std::unique_ptr<ParameterBase> createTimeDependentHeterogeneousParameter(
//! \ogs_file_param{prj__parameters__parameter__TimeDependentHeterogeneousParameter__time_series__pair__time}
auto time = p.getConfigParameter<double>("time");
auto parameter_name =
//! \ogs_file_param{prj__parameters__parameter__TimeDependentHeterogeneousParameter__time_series__pair__parameter_name}
//! \ogs_file_param{prj__parameters__parameter__TimeDependentHeterogeneousParameter__time_series__pair__parameter_name}
p.getConfigParameter<std::string>("parameter_name");
time_series.emplace_back(time, parameter_name);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment