xref: /libCEED/tests/t004-ceed.c (revision d310b3d31eeeddd20725517a3a61881a36d919f0)
1 /// @file
2 /// Test creation and destruction of a CEED object
3 /// \test Test creation and destruction of a CEED object
4 #include <ceed.h>
5 
6 int main(int argc, char **argv) {
7   Ceed ceed;
8   bool is_deterministic;
9 
10   CeedInit(argv[1], &ceed);
11   CeedIsDeterministic(ceed, &is_deterministic);
12   CeedDestroy(&ceed);
13   return 0;
14 }
15