/// @file /// Test ceration and distruction of a H1Lagrange basis /// \test Test ceration and distruction of a H1Lagrange basis #include int main(int argc, char **argv) { Ceed ceed; CeedBasis b; CeedInit(argv[1], &ceed); CeedBasisCreateTensorH1Lagrange(ceed, 1, 1, 4, 4, CEED_GAUSS_LOBATTO, &b); CeedBasisView(b, stdout); CeedBasisDestroy(&b); CeedBasisCreateTensorH1Lagrange(ceed, 1, 1, 4, 4, CEED_GAUSS, &b); CeedBasisView(b, stdout); CeedBasisDestroy(&b); CeedDestroy(&ceed); return 0; }