xref: /libCEED/tests/t004-ceed.c (revision f85e4a7b5ace0077fded2faa470b8becfe6fbd4e)
19525855cSJeremy L Thompson /// @file
2*f85e4a7bSJeremy L Thompson /// Test checking deterministic status of a CEED object
3*f85e4a7bSJeremy L Thompson /// \test Test checking deterministic status 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;
8d1d35e2fSjeremylt   bool is_deterministic;
99525855cSJeremy L Thompson 
109525855cSJeremy L Thompson   CeedInit(argv[1], &ceed);
11d1d35e2fSjeremylt   CeedIsDeterministic(ceed, &is_deterministic);
129525855cSJeremy L Thompson   CeedDestroy(&ceed);
139525855cSJeremy L Thompson   return 0;
149525855cSJeremy L Thompson }
15