From 65449ad880009c727b1f9236789bf7c16cb94d84 Mon Sep 17 00:00:00 2001
From: Michael Garstka
diff --git a/src/COSMO.jl b/src/COSMO.jl index a488c298..bd4a565d 100644 --- a/src/COSMO.jl +++ b/src/COSMO.jl @@ -25,7 +25,7 @@ function __init__() end function version() - v"0.8.3" + v"0.8.4" end diff --git a/src/printing.jl b/src/printing.jl index 9dab26e6..ba17f4d4 100644 --- a/src/printing.jl +++ b/src/printing.jl @@ -6,7 +6,7 @@ function print_header(ws::COSMO.Workspace{T}) where {T <: AbstractFloat} settings = ws.settings settings.scaling > 0 ? scaling_status = "on" : scaling_status = "off" - println("-"^66 * "\n" * " "^10 * "COSMO v0.8.3 - A Quadratic Objective Conic Solver\n" * " "^25 * "Michael Garstka\n" * " "^16 * "University of Oxford, 2017 - 2021\n" * "-"^66 * "\n") + println("-"^66 * "\n" * " "^10 * "COSMO v0.8.4 - A Quadratic Objective Conic Solver\n" * " "^25 * "Michael Garstka\n" * " "^16 * "University of Oxford, 2017 - 2021\n" * "-"^66 * "\n") println("Problem: x ∈ R^{$(n)},\n constraints: A ∈ R^{$(m)x$(n)} ($(count(!iszero, ws.p.A)) nnz),\n matrix size to factor: $(n + m)x$(n + m),\n Floating-point precision: $(T)") for (iii, set) in enumerate(sort(ws.p.C.sets, by = x -> -x.dim))