Home
last modified time | relevance | path

Searched refs:rh (Results 1 – 4 of 4) sorted by relevance

/petsc/src/binding/petsc4py/test/
H A Dtest_ksp.py66 rh = ksp.history
67 self.assertTrue(len(rh) == 0)
127 rh = self.ksp.getConvergenceHistory()
129 rh = self.ksp.getConvergenceHistory()
130 self.assertEqual(len(rh), 0)
H A Dtest_snes.py98 rh, ih = snes.history
99 self.assertTrue(len(rh) == 0)
254 rh, ih = self.snes.getConvergenceHistory()
256 rh, ih = self.snes.getConvergenceHistory()
257 self.assertEqual(len(rh), 0)
/petsc/src/ksp/pc/impls/tfs/
H A Divec.c556 PetscInt PCTFS_ivec_binary_search(PetscInt item, PetscInt *list, PetscInt rh) in PCTFS_ivec_binary_search() argument
560 rh--; in PCTFS_ivec_binary_search()
561 while (lh <= rh) { in PCTFS_ivec_binary_search()
562 mid = (lh + rh) >> 1; in PCTFS_ivec_binary_search()
564 if (*(list + mid) > item) rh = mid - 1; in PCTFS_ivec_binary_search()
/petsc/src/ts/tests/
H A Dex5.c150 PetscScalar rh; /* relative humidity */ in main() local
209 rh = (x / mixratio) * 100; in main()
211 …PetscCall(PetscPrintf(PETSC_COMM_WORLD, "Initial RH = %.1f percent\n\n", (double)rh)); /* prints i… in main()