xref: /libCEED/python/tests/libceed-qfunctions.c (revision 80a9ef0545a39c00cdcaab1ca26f8053604f3120)
10ef72598Sjeremylt // Copyright (c) 2017-2018, Lawrence Livermore National Security, LLC.
20ef72598Sjeremylt // Produced at the Lawrence Livermore National Laboratory. LLNL-CODE-734707.
30ef72598Sjeremylt // All Rights reserved. See files LICENSE and NOTICE for details.
40ef72598Sjeremylt //
50ef72598Sjeremylt // This file is part of CEED, a collection of benchmarks, miniapps, software
60ef72598Sjeremylt // libraries and APIs for efficient high-order finite element and spectral
70ef72598Sjeremylt // element discretizations for exascale applications. For more information and
80ef72598Sjeremylt // source code availability see http://github.com/ceed.
90ef72598Sjeremylt //
100ef72598Sjeremylt // The CEED research is supported by the Exascale Computing Project 17-SC-20-SC,
110ef72598Sjeremylt // a collaborative effort of two U.S. Department of Energy organizations (Office
120ef72598Sjeremylt // of Science and the National Nuclear Security Administration) responsible for
130ef72598Sjeremylt // the planning and preparation of a capable exascale ecosystem, including
140ef72598Sjeremylt // software, applications, hardware, advanced system engineering and early
150ef72598Sjeremylt // testbed platforms, in support of the nation's exascale computing imperative.
160ef72598Sjeremylt 
17*80a9ef05SNatalie Beams #include <ceed/ceed.h>
180ef72598Sjeremylt // -----------------------------------------------------------------------------
190ef72598Sjeremylt // Redefine QFunction Macro
200ef72598Sjeremylt // -----------------------------------------------------------------------------
210ef72598Sjeremylt #undef CEED_QFUNCTION
220ef72598Sjeremylt #define CEED_QFUNCTION(name) \
230ef72598Sjeremylt   extern int name
240ef72598Sjeremylt 
250ef72598Sjeremylt // -----------------------------------------------------------------------------
260ef72598Sjeremylt // QFunction Sources
270ef72598Sjeremylt // -----------------------------------------------------------------------------
280ef72598Sjeremylt #include "test-qfunctions.h"
290ef72598Sjeremylt 
300ef72598Sjeremylt // -----------------------------------------------------------------------------
31