Skip to content
Snippets Groups Projects
Commit 824d6027 authored by Anton Akhmerov's avatar Anton Akhmerov Committed by Christoph Groth
Browse files

fix possible_hoppings in tutorial 4

parent b92abcd7
No related branches found
No related tags found
No related merge requests found
......@@ -51,7 +51,7 @@ def make_system(r=10, w=2.0, pot=0.1):
# specify the hoppings of the graphene lattice in the
# format expected by possibe_hoppings()
#HIDDEN_BEGIN_hsmc
hoppings = (((0, 0), b, a), ((0, 1), b, a), ((-1, 1), b, a))
hoppings = (((0, 0), a, b), ((0, 1), a, b), ((-1, 1), a, b))
#HIDDEN_END_hsmc
#HIDDEN_BEGIN_bfwb
for hopping in hoppings:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment