From 39a621dabfe69319f556c095dacb08a7c9594a18 Mon Sep 17 00:00:00 2001 From: Kostas Vilkelis <kostasvilkelis@gmail.com> Date: Sun, 24 Mar 2024 19:05:36 +0000 Subject: [PATCH] update import path --- codes/kwant_examples.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codes/kwant_examples.py b/codes/kwant_examples.py index a867e74..13707fd 100644 --- a/codes/kwant_examples.py +++ b/codes/kwant_examples.py @@ -1,6 +1,6 @@ import kwant import numpy as np -from . import utils +from .kwant_helper.utils import build_interacting_syst s0 = np.identity(2) sz = np.diag([1, -1]) @@ -26,7 +26,7 @@ def graphene_extended_hubbard(): def nn_int(site1, site2, V): return V * np.ones((2, 2)) - syst_V = utils.build_interacting_syst( + syst_V = build_interacting_syst( builder=bulk_graphene, lattice = graphene, func_onsite = onsite_int, -- GitLab