198285ab4SZach Atkins // Copyright (c) 2017-2022, 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 10*24a65d3dSJeremy L Thompson #pragma once 11b8962995SJeremy L Thompson 12d31f425aSJeremy L Thompson #if PETSC_VERSION_LT(3, 20, 0) 13d31f425aSJeremy L Thompson #error "PETSc v3.20 or later is required" 14b8962995SJeremy L Thompson #endif 15