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 13, 2024
1 parent 47a04e9 commit 137ec8b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions palace/models/timeoperator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ class TimeDependentFirstOrderOperator : public mfem::TimeDependentOperator
rhs1.UseDevice(true);
rhs2.UseDevice(true);
u.Read();
u1.MakeRef(const_cast<Vector&>(u), 0, size_E);
u2.MakeRef(const_cast<Vector&>(u), size_E, size_E);
u1.MakeRef(const_cast<Vector &>(u), 0, size_E);
u2.MakeRef(const_cast<Vector &>(u), size_E, size_E);
rhs.ReadWrite();
rhs1.MakeRef(rhs, 0, size_E);
rhs2.MakeRef(rhs, size_E, size_E);
Expand Down Expand Up @@ -222,8 +222,8 @@ class TimeDependentFirstOrderOperator : public mfem::TimeDependentOperator
x2.UseDevice(true);
RHS1.UseDevice(true);
b.Read();
b1.MakeRef(const_cast<Vector&>(b), 0, size_E);
b2.MakeRef(const_cast<Vector&>(b), size_E, size_E);
b1.MakeRef(const_cast<Vector &>(b), 0, size_E);
b2.MakeRef(const_cast<Vector &>(b), size_E, size_E);
x.ReadWrite();
x1.MakeRef(x, 0, size_E);
x2.MakeRef(x, size_E, size_E);
Expand Down

0 comments on commit 137ec8b

Please sign in to comment.