diff --git a/include/problem/MFEMProblem.h b/include/problem/MFEMProblem.h index b4b922a7..b5154eb7 100644 --- a/include/problem/MFEMProblem.h +++ b/include/problem/MFEMProblem.h @@ -174,7 +174,6 @@ class MFEMProblem : public ExternalProblem int _order; mfem::Device _device; - hephaestus::Coefficients _coefficients; hephaestus::InputParameters _solver_options; hephaestus::Outputs _outputs; diff --git a/scripts/build-platypus-csd3-ampere.sh b/scripts/build-platypus-csd3-ampere.sh index a5532de8..4f434a28 100755 --- a/scripts/build-platypus-csd3-ampere.sh +++ b/scripts/build-platypus-csd3-ampere.sh @@ -253,4 +253,4 @@ install_spack_deps install_gslib install_mfem install_moose -install_platypus \ No newline at end of file +install_platypus diff --git a/src/problem/MFEMProblem.C b/src/problem/MFEMProblem.C index 03e93d5a..df6f8428 100644 --- a/src/problem/MFEMProblem.C +++ b/src/problem/MFEMProblem.C @@ -12,9 +12,7 @@ MFEMProblem::validParams() "Number of timesteps between successive write outs of data collections to file."); params.addParam( "use_glvis", false, "Attempt to open GLVis ports to display variables during simulation"); - params.addParam( - "device", "cpu", "Run app on the chosen device."); - + params.addParam("device", "cpu", "Run app on the chosen device."); return params; }