Lines Matching full:degree
47 int GetCartesianMeshSize(CeedInt dim, CeedInt degree, CeedInt prob_size, CeedInt num_xyz[dim…
48 int BuildCartesianRestriction(Ceed ceed, CeedInt dim, CeedInt num_xyz[dim], CeedInt degree, …
58 CeedInt mesh_degree = 4; // polynomial degree for the mesh in main()
59 CeedInt sol_degree = 4; // polynomial degree for the solution in main()
102 printf(" Mesh degree [-m] : %" CeedInt_FMT "\n", mesh_degree); in main()
103 printf(" Solution degree [-p] : %" CeedInt_FMT "\n", sol_degree); in main()
283 int GetCartesianMeshSize(CeedInt dim, CeedInt degree, CeedInt prob_size, CeedInt num_xyz[dim]) { in GetCartesianMeshSize() argument
285 // prob_size ~ num_elem * degree^dim in GetCartesianMeshSize()
286 CeedInt num_elem = prob_size / CeedIntPow(degree, dim); in GetCartesianMeshSize()
307 int BuildCartesianRestriction(Ceed ceed, CeedInt dim, CeedInt num_xyz[dim], CeedInt degree, CeedInt… in BuildCartesianRestriction() argument
309 CeedInt p = degree + 1; in BuildCartesianRestriction()