Qutip has multiple SODE method available. But most of them only support smesolve...
The default method for ssesolve is "platen", "euler", "explicit1.5" and "rouchon" are also supported.
I am not sure what you mean by N_times, but if you created your tlist with `np.linspace(0, T, N_times)`, this N_times does not affect the step length of the solver.
The options `dt` controls it, the default is `0.001`. So you are probably using 100000 steps with qutip.
qutip.ssesolve(
H,
psi_0,
tlist=np.linspace(0, 2, 11),
sc_ops=sc_ops,
e_ops=e_ops,
options={"method": "rouchon", "dt": 0.0005},
ntraj=1,
)
Hope this help