diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 6ece6b86..7fefa2b5 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,9 +1,5 @@ -# use this file to bump the version in README and the printed header -# this also creates a "bump version" commit -# >> bumpversion [major/minor/patch] - [bumpversion] -current_version = 0.4.3 +current_version = 0.4.4 commit = True tag = False diff --git a/README.md b/README.md index 9150f185..6343fce3 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ - +
diff --git a/src/printing.jl b/src/printing.jl index 13773951..d2ceabdb 100644 --- a/src/printing.jl +++ b/src/printing.jl @@ -7,7 +7,7 @@ function print_header(ws::COSMO.Workspace) settings.scaling > 0 ? scaling_status = "on" : scaling_status = "off" nnz_in_P = count(!iszero,ws.p.P) - count(!iszero,diag(ws.p.P)) + n nnz_in_M = 2*count(!iszero,ws.p.A) + nnz_in_P + m - println("-"^66 * "\n" * " "^10 * "COSMO v0.4.3 - A Quadratic Objective Conic Solver\n" * " "^25 * "Michael Garstka\n" * " "^16 * "University of Oxford, 2017 - 2019\n" * "-"^66 * "\n") + println("-"^66 * "\n" * " "^10 * "COSMO v0.4.4 - A Quadratic Objective Conic Solver\n" * " "^25 * "Michael Garstka\n" * " "^16 * "University of Oxford, 2017 - 2019\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) ($(nnz_in_M) nnz)") for (iii, set) in enumerate(sort(ws.p.C.sets, by = x -> -x.dim))