diff --git a/Project.toml b/Project.toml index 05af45c5..5a0226b8 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "Jutul" uuid = "2b460a1a-8a2b-45b2-b125-b5c536396eb9" authors = ["Olav Møyner "] -version = "0.2.38" +version = "0.2.39" [deps] AlgebraicMultigrid = "2169fc97-5a83-5252-b627-83903c6c433c" @@ -69,9 +69,9 @@ ExprTools = "0.1.8" ForwardDiff = "0.10.30" GraphMakie = "0.5.3" Graphs = "1.8.0" -HYPRE = "1.4.0" +HYPRE = "1.6.0" ILUZero = "0.2.0" -JLD2 = "0.4.22" +JLD2 = "0.5" KaHyPar = "0.3.0" Krylov = "0.9.1" LayeredLayouts = "0.2.5" diff --git a/src/NFVM/types.jl b/src/NFVM/types.jl index e4e81abe..1ab8a7aa 100644 --- a/src/NFVM/types.jl +++ b/src/NFVM/types.jl @@ -11,7 +11,7 @@ struct NFVMLinearDiscretization{T} <: NFVMDiscretization end function Base.show(io::IO, ft::NFVMLinearDiscretization{T}) where T - l, r = cell_pair(ft) + l, r = Jutul.cell_pair(ft) print(io, "NFVMLinearDiscretization{$T} $(l)→$(r)") compact = get(io, :compact, false) if !compact diff --git a/src/variables/scalarization.jl b/src/variables/scalarization.jl index 2905f22d..78461048 100644 --- a/src/variables/scalarization.jl +++ b/src/variables/scalarization.jl @@ -115,7 +115,7 @@ end """ scalarize_primary_variables!(V::Vector{T}, model, state, pvars::NamedTuple) where T -Scalarize into array. See [scalarize_primary_variables](@ref) for more details. +Scalarize into array. See [`scalarize_primary_variables`](@ref) for more details. """ function scalarize_primary_variables!(V::Vector{ScalarizedJutulVariables{T}}, model, state, pvars::NamedTuple) where T pvars_def = values(pvars)