From 0f33f80fbfced6a8b68666b2f0bdf41c6b9822d6 Mon Sep 17 00:00:00 2001 From: Pauli Virtanen <pauli.t.virtanen@jyu.fi> Date: Wed, 14 Sep 2022 09:16:56 +0300 Subject: [PATCH] Fix LEFT vs. RIGHT --- usadelndsoc/solver.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usadelndsoc/solver.py b/usadelndsoc/solver.py index f9b8fe1..3d15e8d 100644 --- a/usadelndsoc/solver.py +++ b/usadelndsoc/solver.py @@ -63,9 +63,9 @@ S_y = np.array([[0, -1j], [1j, 0]]) S_z = np.array([[1, 0], [0, -1]]) S_0 = np.array([[1, 0], [0, 1]]) -LEFT = 0 +RIGHT = 0 UP = 1 -RIGHT = 2 +LEFT = 2 DOWN = 3 -- GitLab