Skip to content
Snippets Groups Projects
Commit 7485636b authored by Sander, Oliver's avatar Sander, Oliver
Browse files

Fix indentation issues

gcc warns about some of those nowadays.
parent ec734418
No related branches found
No related tags found
No related merge requests found
...@@ -325,15 +325,15 @@ int main (int argc, char *argv[]) try ...@@ -325,15 +325,15 @@ int main (int argc, char *argv[]) try
neumannFunction = make_shared<NeumannFunction>(parameterSet.get<FieldVector<double,3> >("neumannValues"), neumannFunction = make_shared<NeumannFunction>(parameterSet.get<FieldVector<double,3> >("neumannValues"),
homotopyParameter); homotopyParameter);
shared_ptr<VolumeLoad> volumeLoad; shared_ptr<VolumeLoad> volumeLoad;
if (parameterSet.hasKey("volumeLoad")) if (parameterSet.hasKey("volumeLoad"))
volumeLoad = make_shared<VolumeLoad>(parameterSet.get<FieldVector<double,3> >("volumeLoad"), volumeLoad = make_shared<VolumeLoad>(parameterSet.get<FieldVector<double,3> >("volumeLoad"),
homotopyParameter); homotopyParameter);
if (mpiHelper.rank() == 0) { if (mpiHelper.rank() == 0) {
std::cout << "Material parameters:" << std::endl; std::cout << "Material parameters:" << std::endl;
materialParameters.report(); materialParameters.report();
} }
// Assembler using ADOL-C // Assembler using ADOL-C
using LocalEnergyBase = LocalGeodesicFEStiffness<FEBasis,RigidBodyMotion<adouble,3> >; using LocalEnergyBase = LocalGeodesicFEStiffness<FEBasis,RigidBodyMotion<adouble,3> >;
......
...@@ -299,10 +299,10 @@ int main (int argc, char *argv[]) try ...@@ -299,10 +299,10 @@ int main (int argc, char *argv[]) try
homotopyParameter); homotopyParameter);
if (mpiHelper.rank() == 0) { if (mpiHelper.rank() == 0) {
std::cout << "Material parameters:" << std::endl; std::cout << "Material parameters:" << std::endl;
materialParameters.report(); materialParameters.report();
} }
// Assembler using ADOL-C // Assembler using ADOL-C
CosseratEnergyLocalStiffness<decltype(compositeBasis), CosseratEnergyLocalStiffness<decltype(compositeBasis),
......
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