Eric Giguère

Results 106 comments of Eric Giguère

No `.compile()` in v5. I don't think we need a porting guide either, `compile` is called internally in evolution but users very rarely call it themselves. 99.9% of users don't...

I can get the same error on linux with: ``` from qutip.testing import run import multiprocessing as mp mp.set_start_method('spawn') run() ``` It hangs on qutip/tests/test_mcsolve.py::test_MCTDFunc. So maybe, set_start_method('fork') could probably...

Here is the proposal from Jake: #1476.

@nathanshammah would know if we can add new bounties, but I believe the deadline was last week.

`QobjEvo` have a `with_state` method `QobjEvo.with_state(t, psi, args={})` which can be used instead of `__call__` if needed. It compute the coefficient on the python side and send them to the...

Yes, but the documention is missing a table making the explication confusing: http://qutip.org/docs/latest/guide/dynamics/dynamics-time.html#accesing-the-state-from-solver

There is no agreement on how this should be handled yet. It's been removed from `dev.major` with the plan to restore it before the release, but the exact interface is...

If you work only with solver, you can only update the args once per step. To have it apply each time the rhs is used it need to be inserted...

I made a custom exception class that depend on all the raised exceptions classes so we can catch it. It feel somewhat hacky, `ExceptionGroup` would work a lot better, but...

I don't want the way to catch error depend on the map, `serial_map` and `loky_map` both return the error of the first failing iteration and stop there. Having `parallel_map` failing...