@@ -31,10 +31,10 @@ function read_ff(name::String)
...
@@ -31,10 +31,10 @@ function read_ff(name::String)
nsteps=Vector{Int32}(undef,1)
nsteps=Vector{Int32}(undef,1)
N_noisebf=Vector{Int32}(undef,1)
N_noisebf=Vector{Int32}(undef,1)
nflow=Vector{Int32}(undef,1)
nflow=Vector{Int32}(undef,1)
tzeroff=Vector{Int32}(undef,1)
tzeroff=Vector{Float64}(undef,1)
espilon=Vector{Int32}(undef,1)
epsilon=Vector{Float64}(undef,1)
tsource_ff=Vector{Int32}(undef,1)
tsourceff=Vector{Int32}(undef,1)
tsource_bf=Vector{Int32}(undef,1)
tsourcebf=Vector{Int32}(undef,1)
BDIO_read(file,dims)
BDIO_read(file,dims)
...
@@ -52,7 +52,7 @@ function read_ff(name::String)
...
@@ -52,7 +52,7 @@ function read_ff(name::String)
flow_times=Vector{Float64}(undef,nflow[1])
flow_times=Vector{Float64}(undef,nflow[1])
nflow[1]>0?BDIO_read(file,flow_times):nothing
nflow[1]>0?BDIO_read(file,flow_times):nothing
println("Reading data from a ",iL," lattice.")
print("Reading data from a ",Int64.(iL)," lattice.\n")
println("Frontflow: ",N_noiseff[1]," sources at euclidean time ",tsourceff[1],". Flowtime starting at ",tzeroff[1]," with ",nsteps[1]," steps of size ",epsilon[1])
println("Frontflow: ",N_noiseff[1]," sources at euclidean time ",tsourceff[1],". Flowtime starting at ",tzeroff[1]," with ",nsteps[1]," steps of size ",epsilon[1])
println("Backflow: ",N_noisebf[1]," sources at euclidean time ",tsourcebf[1],". Flow times are ",flow_times)
println("Backflow: ",N_noisebf[1]," sources at euclidean time ",tsourcebf[1],". Flow times are ",flow_times)
...
@@ -65,29 +65,29 @@ function read_ff(name::String)
...
@@ -65,29 +65,29 @@ function read_ff(name::String)