/// @file /// Test creation, setting, reading, restoring, and destroying of a vector /// \test Test creation, setting, reading, restoring, and destroying of a vector #include int main(int argc, char **argv) { Ceed ceed; CeedVector x; CeedInt n; CeedScalar a[10]; const CeedScalar *b; CeedInit(argv[1], &ceed); n = 10; CeedVectorCreate(ceed, n, &x); for (CeedInt i=0; i