/// @file /// Test CeedVectorGetArray to modify array /// \test Test CeedVectorGetArray to modify array #include int main(int argc, char **argv) { Ceed ceed; CeedVector x; const CeedInt n = 10; CeedScalar a[n]; CeedScalar *b; CeedInit(argv[1], &ceed); CeedVectorCreate(ceed, n, &x); for (CeedInt i=0; i