Lines Matching full:degree
49 int GetCartesianMeshSize(CeedInt dim, CeedInt degree, CeedInt prob_size, CeedInt num_xyz[dim…
50 int BuildCartesianRestriction(Ceed ceed, CeedInt dim, CeedInt num_xyz[dim], CeedInt degree, …
60 CeedInt mesh_degree = 4; // polynomial degree for the mesh in main()
61 CeedInt sol_degree = 4; // polynomial degree for the solution in main()
106 printf(" Mesh degree [-m] : %" CeedInt_FMT "\n", mesh_degree); in main()
107 printf(" Solution degree [-p] : %" CeedInt_FMT "\n", sol_degree); in main()
304 int GetCartesianMeshSize(CeedInt dim, CeedInt degree, CeedInt prob_size, CeedInt num_xyz[dim]) { in GetCartesianMeshSize() argument
306 // prob_size ~ num_elem * degree^dim in GetCartesianMeshSize()
307 CeedInt num_elem = prob_size / CeedIntPow(degree, dim); in GetCartesianMeshSize()
328 int BuildCartesianRestriction(Ceed ceed, CeedInt dim, CeedInt num_xyz[dim], CeedInt degree, CeedInt… in BuildCartesianRestriction() argument
330 CeedInt p = degree + 1; in BuildCartesianRestriction()