Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Shuvomoy committed Jan 11, 2021
1 parent 0129f78 commit c98ce7d
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -111,27 +111,3 @@ end
@test log10(state_final.fsblt_gap) <= -4

end

# Low rank factor analysis testing, requires MOSEK

# using NExOS
#
# using LinearAlgebra, Convex, JuMP, MosekTools
#
# Σ = [1.0 -0.34019653769952096 -0.263030887801514 -0.14349389289304187 -0.18605860686109255; -0.34019653769952096 1.0 0.4848473200092671 0.3421745595621214 0.38218138592185846; -0.263030887801514 0.4848473200092671 1.0 0.3768343949936584 0.5028863662242727; -0.14349389289304187 0.3421745595621214 0.3768343949936584 1.0 0.3150998750134158; -0.18605860686109255 0.38218138592185846 0.5028863662242727 0.3150998750134158 1.0]
#
# n, _ = size(Σ)
#
# r = convert(Int64, round(rank(Σ)/2))
#
# M = 2*opnorm(Σ ,2)
#
# Z0 = Σ # zeros(n,n) Initial condition
#
# z0 = zeros(n) # Initial condition
#
# problem = NExOS.ProblemFactorAnalysisModel(Σ, r, M, Z0, z0)
#
# settings = NExOS.Settings(μ_max = 1, μ_min = 1e-4, μ_mult_fact = 0.5, n_iter_min = 10, n_iter_max = 10, verbose = true, freq = 50, tol = 1e-2, γ_updt_rule = :adaptive)
#
# state_final = NExOS.solve!(problem, settings)

2 comments on commit c98ce7d

@Shuvomoy
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/27800

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.2 -m "<description of version>" c98ce7d64c73c9f83dc6bec6340687de1d96e6b8
git push origin v0.1.2

Please sign in to comment.