Skip to content

Commit 073eeed

Browse files
committed
Fix PETSc deprecation warnings
1 parent 7d126e1 commit 073eeed

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/solvers/petsc_dm_wrapper.C

+8
Original file line numberDiff line numberDiff line change
@@ -74,15 +74,23 @@ void PetscDMWrapper::init_and_attach_petscdm(System & system, SNES & snes)
7474

7575
// Build the PetscSection and attach it to the DM
7676
this->build_section(system, section);
77+
#if PETSC_VERSION_LESS_THAN(3,10,0)
7778
ierr = DMSetDefaultSection(dm, section);
79+
#else
80+
ierr = DMSetSection(dm, section);
81+
#endif
7882
CHKERRABORT(system.comm().get(),ierr);
7983

8084
// We only need to build the star forest if we're in a parallel environment
8185
if (system.n_processors() > 1)
8286
{
8387
// Build the PetscSF and attach it to the DM
8488
this->build_sf(system, star_forest);
89+
#if PETSC_VERSION_LESS_THAN(3,12,0)
8590
ierr = DMSetDefaultSF(dm, star_forest);
91+
#else
92+
ierr = DMSetSectionSF(dm, star_forest);
93+
#endif
8694
CHKERRABORT(system.comm().get(),ierr);
8795
}
8896
}

0 commit comments

Comments
 (0)