Skip to content

Commit

Permalink
Update minimum petsc version for solids and fluids
Browse files Browse the repository at this point in the history
  • Loading branch information
jrwrigh committed Apr 7, 2023
1 parent 1622892 commit db3e7f9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions examples/fluids/navierstokes.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
// -----------------------------------------------------------------------------
// PETSc Version
// -----------------------------------------------------------------------------
#if PETSC_VERSION_LT(3, 17, 0)
#error "PETSc v3.17 or later is required"
#if PETSC_VERSION_LT(3, 19, 0)
#error "PETSc v3.19 or later is required"
#endif

// -----------------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions examples/solids/elasticity.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
#include "include/utils.h"
#include "problems/problems.h"

#if PETSC_VERSION_LT(3, 17, 0)
#error "PETSc v3.17 or later is required"
#if PETSC_VERSION_LT(3, 19, 0)
#error "PETSc v3.19 or later is required"
#endif

#endif // libceed_solids_examples_setup_h

0 comments on commit db3e7f9

Please sign in to comment.