From 6f90cac065e8ab48569f3d4a27cc3db15047e199 Mon Sep 17 00:00:00 2001 From: Alberto Ramos Date: Mon, 6 Nov 2023 17:22:00 +0100 Subject: [PATCH] Wrong dimensions in Qtop without time slices This bug corrects a naive facot of 6 in the definition of the topological charge. --- src/YM/YMflow.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/YM/YMflow.jl b/src/YM/YMflow.jl index 379e346..a4428d6 100644 --- a/src/YM/YMflow.jl +++ b/src/YM/YMflow.jl @@ -316,7 +316,7 @@ function Qtop(Qslc, U, gp::GaugeParm, lp::SpaceParm{4,M,B,D}, ymws::YMworkspace) return sum(Qslc) end -Qtop(U, gp::GaugeParm, lp::SpaceParm{4,M,D}, ymws::YMworkspace{T}) where {T,M,D} = Qtop(zeros(T,lp.iL[end],M), U, gp, lp, ymws) +Qtop(U, gp::GaugeParm, lp::SpaceParm{4,M,D}, ymws::YMworkspace{T}) where {T,M,D} = Qtop(zeros(T,lp.iL[end]), U, gp, lp, ymws) """