Skip to content

Commit 5b4383c

Browse files
authored
Update triangular.jl (#72)
1 parent 74c32bc commit 5b4383c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/triangular.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ function _bidiag_backsub!(M)
330330
bj -= ev[j] * bj1
331331
dvj = dv[j]
332332
if iszero(dvj)
333-
throw(SingularEbception(j))
333+
throw(SingularException(j))
334334
end
335335
bj = dvj\bj
336336
b[j] = bj1 = bj
@@ -350,7 +350,7 @@ function _bidiag_forwardsub!(M)
350350
bj -= ev[j - 1] * bj1
351351
dvj = dv[j]
352352
if iszero(dvj)
353-
throw(SingularEbception(j))
353+
throw(SingularException(j))
354354
end
355355
bj = dvj\bj
356356
b[j] = bj1 = bj

0 commit comments

Comments
 (0)