Skip to content

Commit

Permalink
Merge pull request #15880 from stefanozampini/fix-typo
Browse files Browse the repository at this point in the history
PETScWrappers::TimeStepper: fix  typo
  • Loading branch information
luca-heltai committed Aug 15, 2023
2 parents 53ac485 + 938003d commit 53c9b4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/deal.II/lac/petsc_ts.templates.h
Original file line number Diff line number Diff line change
Expand Up @@ -1093,8 +1093,8 @@ namespace PETScWrappers
AssertPETSc(VecDuplicate(py, &av));
AssertPETSc(VecDuplicate(py, &rv));

VectorBase avdealii(av);
VectorBase rvdealii(rv);
VectorType avdealii(av);
VectorType rvdealii(rv);
avdealii = atol;
rvdealii = rtol;
for (auto i : algebraic_components())
Expand Down

0 comments on commit 53c9b4d

Please sign in to comment.