Skip to content

Commit bcbf8c9

Browse files
committed
Fix
1 parent 015faf3 commit bcbf8c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/general/abstract_system.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ end
141141
compact_support_ = compact_support(system_smoothing_kernel(system), h)
142142

143143
# Note that `sqrt(eps(h^2)) != eps(h)`
144-
if distance > compact_support_ ||
144+
if distance >= compact_support_ ||
145145
(skip_zero_distance(system) && distance^2 < eps(h^2))
146146
return zero(pos_diff)
147147
end

0 commit comments

Comments
 (0)