Lines Matching refs:continuous
15 PetscBool continuous; member
19 …hCombine(PetscHashInt((key).trimmed), PetscHashInt((key).tensor)), PetscHashInt((key).continuous)))
22 …immed == (k2).trimmed) ? ((k1).tensor == (k2).tensor) ? ((k1).continuous == (k2).continuous) : 0 :…
160 …PetscInt formDegree, PetscBool trimmed, PetscInt tensorCell, PetscBool continuous, PetscInt nCopie… in testLagrange() argument
178 PetscCall(PetscDualSpaceLagrangeSetContinuity(sp, continuous)); in testLagrange()
181 …etscInt_FMT "\n", dim, order, (PetscInt)trimmed, tensorCell, (PetscInt)continuous, formDegree, nCo… in testLagrange()
183 if (continuous && dim > 0 && order > 0) { in testLagrange()
196 PetscCall(PetscDualSpaceLagrangeGetContinuity(sp, &key.continuous)); in testLagrange()
206 …ous %" PetscInt_FMT "\n", key.order, (PetscInt)key.trimmed, key.tensor, (PetscInt)key.continuous)); in testLagrange()
212 …", DMPolytopeTypes[type], order, (PetscInt)trimmed, tensorCell, (PetscInt)continuous, formDegree)); in testLagrange()
305 PetscBool continuous; in main() local
313 continuous = PETSC_FALSE; in main()
318 …l("-continuous", "Whether the dual space has continuity", "ex1.c", continuous, &continuous, NULL)); in main()
336 …Call(testLagrange(lagTable, dm, dim, order, formDegree, trimmed, tensorCell, continuous, nCopies)); in main()