Fixed bug and addded gitignore

This commit is contained in:
Fernando P. Panadero 2024-02-22 12:39:09 +01:00
commit d5628eae28
6 changed files with 3 additions and 35 deletions

Binary file not shown.

View file

@ -1,8 +0,0 @@
1 0.0 + 0.0im
2 -0.6030372212882809 + 8.523269031746397e-20im
3 -0.6038618620887128 + 1.4463087574367178e-19im
4 -0.5926760024257145 - 8.533856943587076e-20im
5 -0.601666224177839 + 4.129285617864714e-21im
6 -0.584098047171397 - 5.108667463127499e-20im
7 -0.5976874848953928 + 3.4430565816907224e-20im
8 -0.6031406468183864 + 2.1996386849010112e-20im

View file

@ -1,8 +0,0 @@
1 0.0 + 0.0im
2 4.073707933719405 + 0.0im
3 3.263441992848985 + 0.0im
4 2.599329122980939 + 0.0im
5 2.0726204194655655 + 0.0im
6 1.7097535104448742 + 0.0im
7 1.4965323741017251 + 0.0im
8 1.3535414135779962 + 0.0im

View file

@ -1,8 +0,0 @@
1 0.0 + 0.0im
2 -0.6084153970265829 + 5.61159327555974e-21im
3 -0.5874030271133971 + 4.200754022789296e-20im
4 -0.5990867578116633 + 1.8767073737603092e-20im
5 -0.5901710309969539 + 6.858319894799663e-20im
6 -0.6045239706245472 - 7.273895434546304e-20im
7 -0.6002224832169679 - 1.4463087574367178e-19im
8 -0.5874210789132396 + 4.6375053862172944e-20im

View file

@ -1,8 +0,0 @@
1 0.0 + 0.0im
2 1.3469498829880007 + 0.0im
3 1.4652378537401343 + 0.0im
4 1.6960689316800241 + 0.0im
5 1.9966909928964056 + 0.0im
6 2.496926368571815 + 0.0im
7 3.188758530279535 + 0.0im
8 3.983946740235404 + 0.0im

View file

@ -8,15 +8,15 @@ include("./src/io.jl")
include("./src/meas.jl") include("./src/meas.jl")
include("./src/corr.jl") include("./src/corr.jl")
log_file = open("./output/"*params["Run"]["name"]*".log","w+")
write_log()
@timeit "Imput reading and space allocation" begin @timeit "Imput reading and space allocation" begin
read_input() read_input()
load_structs() load_structs()
U = vector_field(SU3{Float64}, lp) U = vector_field(SU3{Float64}, lp)
end end
log_file = open("./output/"*params["Run"]["name"]*".log","w+")
write_log()
@timeit "Gauge field reading" U .= load_gauge_field() @timeit "Gauge field reading" U .= load_gauge_field()
@timeit "Gauge measurements" gauge_meas() @timeit "Gauge measurements" gauge_meas()