From 938003d90aa8ac845f7f36184e05d232ad5cfc67 Mon Sep 17 00:00:00 2001 From: Stefano Zampini Date: Wed, 16 Aug 2023 00:28:16 +0800 Subject: [PATCH] PETScWrappers::TimeStepper: fix typo use VectorType, not VectorBase --- include/deal.II/lac/petsc_ts.templates.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/deal.II/lac/petsc_ts.templates.h b/include/deal.II/lac/petsc_ts.templates.h index 050cb2e962..0c20798786 100644 --- a/include/deal.II/lac/petsc_ts.templates.h +++ b/include/deal.II/lac/petsc_ts.templates.h @@ -1092,8 +1092,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()) -- 2.39.5