Skip to content

Commit ad0aa0a

Browse files
committed
Bug fixed when selecting RecursiveFactorization.jl
1 parent 1439428 commit ad0aa0a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ModiaBase"
22
uuid = "ec7bf1ca-419d-4510-bbab-199861c55244"
33
authors = ["Hilding Elmqvist <[email protected]>", "Martin Otter <[email protected]>"]
4-
version = "0.7.6"
4+
version = "0.7.7"
55

66
[deps]
77
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"

src/EquationAndStateInfo.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ function LinearEquationsIteration(leq::LinearEquations{FloatType}, isInitial::Bo
326326
end
327327
else
328328
x .= b
329-
if leq.recursiveFactorization
329+
if leq.useRecursiveFactorization
330330
ModiaBase.TimerOutputs.@timeit timer "solve A*x=b (RecursiveFactorization)" begin
331331
leq.luA = RecursiveFactorization.lu!(A, leq.pivots)
332332
ldiv!(leq.luA, x)

0 commit comments

Comments
 (0)