Skip to content

Commit

Permalink
Push hotfix for Michel
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison committed May 2, 2024
1 parent 7e09c88 commit b7ba934
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions test/application.jl
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ end

adjoint_forward_substitution!(v, F, x)
adjoint_forward_substitution!(F, x)
ldiv!(LowerTriangular(A'), y)
ldiv!(LowerTriangular(A), y)

@test v y
@test x y
Expand All @@ -96,7 +96,7 @@ end

adjoint_forward_substitution!(v, F, x)
adjoint_forward_substitution!(F, x)
ldiv!(LowerTriangular(A'), y)
ldiv!(LowerTriangular(A), y)

@test v y
@test x y
Expand All @@ -111,7 +111,7 @@ end

adjoint_backward_substitution!(v, F, x)
adjoint_backward_substitution!(F, x)
ldiv!(UnitUpperTriangular(A'), y)
ldiv!(UnitLowerTriangular(A)', y)

@test v y
@test x y
Expand All @@ -122,7 +122,7 @@ end

adjoint_backward_substitution!(v, F, x)
adjoint_backward_substitution!(F, x)
ldiv!(UnitUpperTriangular(A'), y)
ldiv!(UnitLowerTriangular(A)', y)

@test v y
@test x y
Expand Down Expand Up @@ -197,8 +197,8 @@ end
w = copy(x)

ldiv!(ALU, x)
ldiv!(LowerTriangular(LU.U'), y)
ldiv!(UnitUpperTriangular(LU.L'), y)
ldiv!(LowerTriangular(LU.U), y)
ldiv!(UnitLowerTriangular(LU.L)', y)

@test x y
@test ALU \ z == x
Expand All @@ -213,8 +213,8 @@ end
w = copy(x)

ldiv!(ALU, x)
ldiv!(LowerTriangular(LU.U'), y)
ldiv!(UnitUpperTriangular(LU.L'), y)
ldiv!(LowerTriangular(LU.U), y)
ldiv!(UnitLowerTriangular(LU.L)', y)

@test x y
@test ALU \ z == x
Expand Down

0 comments on commit b7ba934

Please sign in to comment.