xref: /libCEED/tests/t004-ceed.c (revision b0d170e7bc2e5c930ee481a47eb73044935a48a4)
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