Skip to content

Commit

Permalink
ODESolvers: Correct type name
Browse files Browse the repository at this point in the history
  • Loading branch information
eschnett committed Jan 31, 2024
1 parent f4c8701 commit f5d2f3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ODESolvers/src/solve.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -873,7 +873,7 @@ extern "C" void ODESolvers_Solve(CCTK_ARGUMENTS) {
statecomp_t::lincomb(kaccum, 1.0, reals<1>{2.0}, states<1>{&rhs},
make_valid_int());
}
calcupdate(2, dt / 2, 0.0, reals2<2>{1.0, dt / 2}, states<2>{&old, &rhs});
calcupdate(2, dt / 2, 0.0, reals<2>{1.0, dt / 2}, states<2>{&old, &rhs});

calcrhs(3);
{
Expand Down

0 comments on commit f5d2f3a

Please sign in to comment.