xref: /libCEED/examples/petsc/bps.h (revision 2b730f8b5a9c809740a0b3b302db43a719c636b1)
13d8e8822SJeremy L Thompson // Copyright (c) 2017-2022, Lawrence Livermore National Security, LLC and other CEED contributors.
23d8e8822SJeremy L Thompson // All Rights Reserved. See the top-level LICENSE and NOTICE files for details.
3e83e87a5Sjeremylt //
43d8e8822SJeremy L Thompson // SPDX-License-Identifier: BSD-2-Clause
5e83e87a5Sjeremylt //
63d8e8822SJeremy L Thompson // This file is part of CEED:  http://github.com/ceed
7e83e87a5Sjeremylt 
8b7c563b6SJeremy L Thompson #ifndef libceed_petsc_examples_bps_h
9b7c563b6SJeremy L Thompson #define libceed_petsc_examples_bps_h
10e83e87a5Sjeremylt 
11e83e87a5Sjeremylt // -----------------------------------------------------------------------------
12e83e87a5Sjeremylt // Command Line Options
13e83e87a5Sjeremylt // -----------------------------------------------------------------------------
14e83e87a5Sjeremylt 
15e83e87a5Sjeremylt // MemType Options
16*2b730f8bSJeremy L Thompson static const char *const mem_types[] = {"host", "device", "memType", "CEED_MEM_", 0};
17e83e87a5Sjeremylt 
18e83e87a5Sjeremylt // Coarsening options
19*2b730f8bSJeremy L Thompson typedef enum { COARSEN_UNIFORM = 0, COARSEN_LOGARITHMIC = 1 } CoarsenType;
20*2b730f8bSJeremy L Thompson static const char *const coarsen_types[] = {"uniform", "logarithmic", "CoarsenType", "COARSEN", 0};
21e83e87a5Sjeremylt 
22*2b730f8bSJeremy L Thompson static const char *const bp_types[] = {"bp1", "bp2", "bp3", "bp4", "bp5", "bp6", "BPType", "CEED_BP", 0};
23e83e87a5Sjeremylt 
24b7c563b6SJeremy L Thompson #endif  // libceed_petsc_examples_bps_h
25