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