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