Repository URL to install this package:
|
Version:
5.0.3.post1 ▾
|
#cython: language_level=3
from qutip.core.data cimport Data, Dense
from qutip.core.cy.qobjevo cimport QobjEvo
cdef class _StochasticSystem:
cdef readonly list c_ops
cdef readonly QobjEvo L
cdef readonly int num_collapse
cdef Data state
cdef double t
cpdef Data drift(self, t, Data state)
cpdef list diffusion(self, t, Data state)
cpdef void set_state(self, double t, Dense state) except *
cpdef Data a(self)
cpdef Data bi(self, int i)
cpdef Data Libj(self, int i, int j)
cpdef Data Lia(self, int i)
cpdef Data L0bi(self, int i)
cpdef Data LiLjbk(self, int i, int j, int k)
cpdef Data L0a(self)