xref: /libCEED/tests/t004-ceed.c (revision d1d35e2f02dc969aee8debf3fd943dd784aa847a)
19525855cSJeremy L Thompson /// @file
29525855cSJeremy L Thompson /// Test creation and destruction of a CEED object
39525855cSJeremy L Thompson /// \test Test creation and destruction of a CEED object
49525855cSJeremy L Thompson #include <ceed.h>
59525855cSJeremy L Thompson 
69525855cSJeremy L Thompson int main(int argc, char **argv) {
79525855cSJeremy L Thompson   Ceed ceed;
8*d1d35e2fSjeremylt   bool is_deterministic;
99525855cSJeremy L Thompson 
109525855cSJeremy L Thompson   CeedInit(argv[1], &ceed);
11*d1d35e2fSjeremylt   CeedIsDeterministic(ceed, &is_deterministic);
129525855cSJeremy L Thompson   CeedDestroy(&ceed);
139525855cSJeremy L Thompson   return 0;
149525855cSJeremy L Thompson }
15