Skip to content

Commit

Permalink
Fix formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
simlapointe committed Nov 19, 2024
1 parent 1b0b6b2 commit 56844da
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion palace/models/timeoperator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,9 @@ class TimeDependentFirstOrderOperator : public mfem::TimeDependentOperator
TimeDependentFirstOrderOperator(const IoData &iodata, SpaceOperator &space_op,
std::function<double(double)> &dJ_coef, double t0,
mfem::TimeDependentOperator::Type type)
: mfem::TimeDependentOperator(2 * space_op.GetNDSpace().GetTrueVSize() + space_op.GetRTSpace().GetTrueVSize(), t0, type),
: mfem::TimeDependentOperator(2 * space_op.GetNDSpace().GetTrueVSize() +
space_op.GetRTSpace().GetTrueVSize(),
t0, type),
comm(space_op.GetComm()), dJ_coef(dJ_coef)
{
// Get dimensions of E and Edot vectors.
Expand Down

0 comments on commit 56844da

Please sign in to comment.