Lines Matching refs:rnd
26 PetscErrorCode PetscRandomSetType(PetscRandom rnd, PetscRandomType type) in PetscRandomSetType() argument
32 PetscValidHeaderSpecific(rnd, PETSC_RANDOM_CLASSID, 1); in PetscRandomSetType()
33 PetscCall(PetscObjectTypeCompare((PetscObject)rnd, type, &match)); in PetscRandomSetType()
37 …PetscCheck(r, PetscObjectComm((PetscObject)rnd), PETSC_ERR_ARG_UNKNOWN_TYPE, "Unknown random type:… in PetscRandomSetType()
39 PetscTryTypeMethod(rnd, destroy); in PetscRandomSetType()
40 rnd->ops->destroy = NULL; in PetscRandomSetType()
42 PetscCall((*r)(rnd)); in PetscRandomSetType()
43 PetscCall(PetscRandomSeed(rnd)); in PetscRandomSetType()
45 PetscCall(PetscObjectChangeTypeName((PetscObject)rnd, type)); in PetscRandomSetType()
64 PetscErrorCode PetscRandomGetType(PetscRandom rnd, PetscRandomType *type) in PetscRandomGetType() argument
67 PetscValidHeaderSpecific(rnd, PETSC_RANDOM_CLASSID, 1); in PetscRandomGetType()
69 *type = ((PetscObject)rnd)->type_name; in PetscRandomGetType()