Searched refs:metricInt (Results 1 – 3 of 3) sorted by relevance
| /petsc/src/dm/impls/plex/ |
| H A D | plexmetric.c | 1603 PetscErrorCode DMPlexMetricIntersection(DM dm, PetscInt numMetrics, Vec metrics[], Vec metricInt) in DMPlexMetricIntersection() argument 1614 PetscCall(VecCopy(metrics[0], metricInt)); in DMPlexMetricIntersection() 1616 PetscCall(VecGetSize(metricInt, &m)); in DMPlexMetricIntersection() 1627 PetscCall(VecGetArray(metricInt, &met)); in DMPlexMetricIntersection() 1633 PetscCall(VecRestoreArray(metricInt, &met)); in DMPlexMetricIntersection() 1643 PetscCall(VecGetArray(metricInt, &met)); in DMPlexMetricIntersection() 1653 PetscCall(VecRestoreArray(metricInt, &met)); in DMPlexMetricIntersection() 1675 PetscErrorCode DMPlexMetricIntersection2(DM dm, Vec metric1, Vec metric2, Vec metricInt) in DMPlexMetricIntersection2() argument 1680 PetscCall(DMPlexMetricIntersection(dm, 2, metrics, metricInt)); in DMPlexMetricIntersection2() 1700 …tscErrorCode DMPlexMetricIntersection3(DM dm, Vec metric1, Vec metric2, Vec metric3, Vec metricInt) in DMPlexMetricIntersection3() argument [all …]
|
| /petsc/src/binding/petsc4py/src/petsc4py/PETSc/ |
| H A D | DMPlex.pyx | 3171 def metricIntersection2(self, Vec metric1, Vec metric2, Vec metricInt) -> Vec: argument 3182 metricInt 3190 CHKERR(DMPlexMetricIntersection2(self.dm, metric1.vec, metric2.vec, metricInt.vec)) 3191 return metricInt 3193 def metricIntersection3(self, Vec metric1, Vec metric2, Vec metric3, Vec metricInt) -> Vec: argument 3206 metricInt 3214 … CHKERR(DMPlexMetricIntersection3(self.dm, metric1.vec, metric2.vec, metric3.vec, metricInt.vec)) 3215 return metricInt
|
| /petsc/doc/manual/ |
| H A D | dmplex.md | 742 DMPlexMetricIntersection(DM dm, PetscInt numMetrics, Vec metrics[], Vec metricInt);
|