From 58003ff52169f6ac30416d69d5803f91888debef Mon Sep 17 00:00:00 2001 From: Angela Riva <62027430+angelariva@users.noreply.github.com> Date: Wed, 17 Jul 2024 10:52:26 +0200 Subject: [PATCH] Update anderson_model_double.jl --- examples/anderson_model_double.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/anderson_model_double.jl b/examples/anderson_model_double.jl index 606d24c..329de22 100644 --- a/examples/anderson_model_double.jl +++ b/examples/anderson_model_double.jl @@ -19,12 +19,12 @@ function ϵ(x) return x end -function J(x) +function V(x) return sqrt(1 - x^2) # semi-circular density of states end -chainparams1 = chaincoeffs_fermionic(N, β, 1.0; ϵ, J, save=false) # empty -chainparams2 = chaincoeffs_fermionic(N, β, 2.0; ϵ, J, save=false) # filled +chainparams1 = chaincoeffs_fermionic(N, β, 1.0; ϵ, V, save=false) # empty +chainparams2 = chaincoeffs_fermionic(N, β, 2.0; ϵ, V, save=false) # filled #= curdir = @__DIR__