1d275d636SJeremy L Thompson // Copyright (c) 2017-2025, Lawrence Livermore National Security, LLC and other CEED contributors. 298285ab4SZach Atkins // All Rights Reserved. See the top-level LICENSE and NOTICE files for details. 398285ab4SZach Atkins // 498285ab4SZach Atkins // SPDX-License-Identifier: BSD-2-Clause 598285ab4SZach Atkins // 698285ab4SZach Atkins // This file is part of CEED: http://github.com/ceed 798285ab4SZach Atkins 898285ab4SZach Atkins /// @file 998285ab4SZach Atkins /// Petsc version check 1024a65d3dSJeremy L Thompson #pragma once 11b8962995SJeremy L Thompson 12*bfbde1a2SJeremy L Thompson #if PETSC_VERSION_LT(3, 23, 0) 13*bfbde1a2SJeremy L Thompson #error "PETSc v3.23 or later is required" 14b8962995SJeremy L Thompson #endif 15