xref: /petsc/src/binding/petsc4py/src/petsc4py/PETSc/petscrand.pxi (revision 6d8694c4fbab79f9439f1ad13c0386ba7ee1ca4b)
1cdef extern from * nogil:
2
3    ctypedef const char* PetscRandomType
4    PetscRandomType PETSCRAND
5    PetscRandomType PETSCRAND48
6    PetscRandomType PETSCSPRNG
7    PetscRandomType PETSCRANDER48
8    PetscRandomType PETSCRANDOM123
9
10    PetscErrorCode PetscRandomCreate(MPI_Comm, PetscRandom*)
11    PetscErrorCode PetscRandomDestroy(PetscRandom*)
12    PetscErrorCode PetscRandomView(PetscRandom, PetscViewer)
13
14    PetscErrorCode PetscRandomSetType(PetscRandom, PetscRandomType)
15    PetscErrorCode PetscRandomGetType(PetscRandom, PetscRandomType*)
16    PetscErrorCode PetscRandomSetFromOptions(PetscRandom)
17
18    PetscErrorCode PetscRandomGetValue(PetscRandom, PetscScalar*)
19    PetscErrorCode PetscRandomGetValueReal(PetscRandom, PetscReal*)
20    PetscErrorCode PetscRandomGetValueImaginary(PetscRandom, PetscScalar*)
21    PetscErrorCode PetscRandomGetInterval(PetscRandom, PetscScalar*, PetscScalar*)
22    PetscErrorCode PetscRandomSetInterval(PetscRandom, PetscScalar, PetscScalar)
23    PetscErrorCode PetscRandomSetSeed(PetscRandom, PetscInt64)
24    PetscErrorCode PetscRandomGetSeed(PetscRandom, PetscInt64*)
25    PetscErrorCode PetscRandomSeed(PetscRandom)
26