From 57e715f4407855235d1b82a6f82c10b387ed385f Mon Sep 17 00:00:00 2001 From: guanjihuan Date: Sat, 13 Aug 2022 07:18:25 +0800 Subject: [PATCH] Update calculate_Chern_number_and_Wilson_loop.py --- Tutorial/calculate_Chern_number_and_Wilson_loop.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tutorial/calculate_Chern_number_and_Wilson_loop.py b/Tutorial/calculate_Chern_number_and_Wilson_loop.py index 46822df..138bcb3 100644 --- a/Tutorial/calculate_Chern_number_and_Wilson_loop.py +++ b/Tutorial/calculate_Chern_number_and_Wilson_loop.py @@ -2,7 +2,7 @@ import guan import numpy as np from math import * -chern_number = guan.calculate_chern_number_for_square_lattice(guan.hamiltonian_of_one_QAH_model, precision=100) +chern_number = guan.calculate_chern_number_for_square_lattice_with_efficient_method(guan.hamiltonian_of_one_QAH_model, precision=100) print('\nChern number=', chern_number, '\n') wilson_loop_array = guan.calculate_wilson_loop(guan.hamiltonian_of_ssh_model)