correct integration

This commit is contained in:
valentin.boettcher@mailbox.tu-dresden.de 2023-05-25 11:56:34 -04:00
parent c7cb7049c2
commit 6214bb010d
No known key found for this signature in database
GPG key ID: E034E12B7AF56ACE
2 changed files with 2 additions and 2 deletions

View file

@ -943,7 +943,7 @@ hamiltonian.
** Integration ** Integration
#+begin_src jupyter-python :tangle tangle/rot.py #+begin_src jupyter-python :tangle tangle/rot.py
ot.integrate_online_multi(off_ax_models, 10, increment=10, analyze_kwargs=dict(every=10_000)) ot.integrate_online_multi(rot_models, 80_000, increment=10_000, analyze_kwargs=dict(every=10_000))
#+end_src #+end_src
#+begin_src jupyter-python #+begin_src jupyter-python

View file

@ -28,4 +28,4 @@ for weight in weights:
off_ax.H_bias = ConstantMatrix(.3 / 2 * qt.sigmax().full()) off_ax.H_bias = ConstantMatrix(.3 / 2 * qt.sigmax().full())
rot_models.append(off_ax) rot_models.append(off_ax)
ot.integrate_online_multi(off_ax_models, 10, increment=10, analyze_kwargs=dict(every=10_000)) ot.integrate_online_multi(rot_models, 80_000, increment=10_000, analyze_kwargs=dict(every=10_000))