Skip to content

Commit

Permalink
[teval] Correction to 1a3380c
Browse files Browse the repository at this point in the history
That change was incompatible with Julia 1.6.
  • Loading branch information
krivenko committed Oct 3, 2024
1 parent 1a3380c commit 38325bc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/topology_eval.jl
Original file line number Diff line number Diff line change
Expand Up @@ -459,9 +459,9 @@ function _traverse_configuration_tree!(eval::TopologyEvaluator,

# Are we at a leaf?
if pos > length(eval.conf)
@assert(s_i == s_f, "A block off-diagonal contribution to a pseudo-particle \
propagator detected, try passing more 'symmetry_breakers' when \
constructing the local exact diagonalization object")
@assert(s_i == s_f, "A block off-diagonal contribution to a pseudo-particle " *
"propagator detected, try passing more 'symmetry_breakers' when " *
"constructing the local exact diagonalization object")
eval.top_result_mats[s_i] .+= pair_int_weight .* eval!(eval.matrix_prods[s_f])
return
end
Expand Down

0 comments on commit 38325bc

Please sign in to comment.