Skip to content
Snippets Groups Projects
Commit 6312cab6 authored by Lisa Julia Nebel's avatar Lisa Julia Nebel
Browse files

Make the variable 'resultPath' in cosserat-continuum.cc const and remove obsolete blank line

parent 9b8897e6
No related branches found
No related tags found
1 merge request!121Fixes
...@@ -153,7 +153,7 @@ int main (int argc, char *argv[]) try ...@@ -153,7 +153,7 @@ int main (int argc, char *argv[]) try
const double baseTolerance = parameterSet.get<double>("baseTolerance"); const double baseTolerance = parameterSet.get<double>("baseTolerance");
const bool instrumented = parameterSet.get<bool>("instrumented"); const bool instrumented = parameterSet.get<bool>("instrumented");
const bool adolcScalarMode = parameterSet.get<bool>("adolcScalarMode", false); const bool adolcScalarMode = parameterSet.get<bool>("adolcScalarMode", false);
std::string resultPath = parameterSet.get("resultPath", ""); const std::string resultPath = parameterSet.get("resultPath", "");
// /////////////////////////////////////// // ///////////////////////////////////////
// Create the grid // Create the grid
...@@ -262,7 +262,6 @@ int main (int argc, char *argv[]) try ...@@ -262,7 +262,6 @@ int main (int argc, char *argv[]) try
DeformationFEBasis deformationFEBasis(gridView); DeformationFEBasis deformationFEBasis(gridView);
OrientationFEBasis orientationFEBasis(gridView); OrientationFEBasis orientationFEBasis(gridView);
// ///////////////////////////////////////// // /////////////////////////////////////////
// Read Dirichlet values // Read Dirichlet values
// ///////////////////////////////////////// // /////////////////////////////////////////
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment