Skip to content

Commit 5d36524

Browse files
add RecursiveFactorization in tests
1 parent 988ce1e commit 5d36524

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

Project.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,11 +141,12 @@ MultiFloats = "bdf0d083-296b-4888-a5b6-7498122e68a5"
141141
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
142142
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
143143
RecursiveArrayTools = "731186ca-8d62-57ce-b412-fbd966d074cd"
144+
RecursiveFactorization = "f2c3362d-daeb-58d1-803e-2bc74f2840b4"
144145
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
145146
StableRNGs = "860ef19b-820b-49d6-a774-d7a799459cd3"
146147
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
147148
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
148149
Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f"
149150

150151
[targets]
151-
test = ["Aqua", "Test", "IterativeSolvers", "InteractiveUtils", "JET", "KrylovKit", "KrylovPreconditioners", "Pkg", "Random", "SafeTestsets", "MultiFloats", "ForwardDiff", "HYPRE", "MPI", "BlockDiagonals", "Enzyme", "FiniteDiff", "BandedMatrices", "FastAlmostBandedMatrices", "StaticArrays", "AllocCheck", "StableRNGs", "Zygote"]
152+
test = ["Aqua", "Test", "IterativeSolvers", "InteractiveUtils", "JET", "KrylovKit", "KrylovPreconditioners", "Pkg", "Random", "SafeTestsets", "MultiFloats", "ForwardDiff", "HYPRE", "MPI", "BlockDiagonals", "Enzyme", "FiniteDiff", "BandedMatrices", "FastAlmostBandedMatrices", "StaticArrays", "AllocCheck", "StableRNGs", "Zygote", "RecursiveFactorization"]

test/adjoint.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Zygote, ForwardDiff
22
using LinearSolve, LinearAlgebra, Test
3-
using FiniteDiff
3+
using FiniteDiff, RecursiveFactorization
44
using LazyArrays: BroadcastArray
55

66
n = 4

test/basictests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using LinearSolve, LinearAlgebra, SparseArrays, MultiFloats, ForwardDiff
2-
using SciMLOperators
2+
using SciMLOperators, RecursiveFactorization
33
using IterativeSolvers, KrylovKit, MKL_jll, KrylovPreconditioners
44
using Test
55
import Random

test/default_algs.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using LinearSolve, LinearAlgebra, SparseArrays, Test, JET
1+
using LinearSolve, RecursiveFactorization, LinearAlgebra, SparseArrays, Test, JET
22
@test LinearSolve.defaultalg(nothing, zeros(3)).alg ===
33
LinearSolve.DefaultAlgorithmChoice.RFLUFactorization
44
prob = LinearProblem(rand(3, 3), rand(3))

test/enzyme.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Enzyme, ForwardDiff
22
using LinearSolve, LinearAlgebra, Test
3-
using FiniteDiff
3+
using FiniteDiff, RecursiveFactorization
44

55
n = 4
66
A = rand(n, n);

test/retcodes.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using LinearSolve
1+
using LinearSolve, RecursiveFactorization
22

33
alglist = (
44
LUFactorization,

0 commit comments

Comments
 (0)