Skip to content

Commit

Permalink
Fix MV multiplication bug
Browse files Browse the repository at this point in the history
  • Loading branch information
mewilhel committed May 4, 2020
1 parent 0650171 commit 74b6a0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/forward_operators/multiplication.jl
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ end
degen1 = (x1.Intv.hi - x1.Intv.lo) <= MC_DEGEN_TOL
degen2 = (x2.Intv.hi - x2.Intv.lo) <= MC_DEGEN_TOL
if degen1 || degen2
multiply_STD_NS(x1, x2)
multiply_STD_NS(x1, x2, y)
end
flag, x3 = multiply_MV_NS(x1, x2, y, x1.cnst && x2.cnst)
~flag && (return nan(MC{N,MV}))
Expand Down

0 comments on commit 74b6a0c

Please sign in to comment.