We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9641a2 commit 138a54fCopy full SHA for 138a54f
src/entities/HypoRecipe.jl
@@ -25,10 +25,10 @@ function Base.isapprox(
25
a::HypoRecipe,
26
b::HypoRecipe
27
)
28
- if !(isnothing(a.hypotheses) && isnothing(B.hypotheses))
+ if !(isnothing(a.hypotheses) && isnothing(b.hypotheses))
29
return isapprox(a.hypotheses.p, b.hypotheses.p)
30
end
31
- if !(isnothing(a.certainhypo) && isnothing(B.certainhypo))
+ if !(isnothing(a.certainhypo) && isnothing(b.certainhypo))
32
return isapprox(a.certainhypo, b.certainhypo)
33
34
0 commit comments