diff --git a/Project.toml b/Project.toml index 142e3fa..85ddc68 100644 --- a/Project.toml +++ b/Project.toml @@ -5,20 +5,16 @@ repo = "https://github.com/lanl-ansi/MomentOpt.jl" version = "0.2.0" [deps] -Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" DynamicPolynomials = "7c1d4256-1411-5781-91ec-d7bc3513ac07" JuMP = "4076af6c-e467-56ae-b986-b466b2749572" LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" MathOptInterface = "b8f27783-ece8-5eb3-8dc8-9495eed66fee" -MosekTools = "1ec41992-ff65-5c91-ac43-2df89e9693a4" MultivariateBases = "be282fd4-ad43-11e9-1d11-8bd9d7e43378" MultivariateMoments = "f4abf1af-0426-5881-a0da-e2f168889b5e" MultivariatePolynomials = "102ac46a-7ee4-5c85-9060-abc95bfdeaa3" MutableArithmetics = "d8a4904e-b15c-11e9-3269-09a3773c0cb0" PolyJuMP = "ddf597a6-d67e-5340-b84c-e37d84115374" Reexport = "189a3867-3050-52da-a836-e630ba90ab69" -Revise = "295af30f-e4ad-537b-8983-00126c2a3abe" -SCS = "c946c3f1-0d1f-5ce8-9dea-7daa1f7e2d13" SemialgebraicSets = "8e049039-38e8-557d-ae3a-bc521ccf6204" SumOfSquares = "4b9e565b-77fc-50a5-a571-1244f986bda1" Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" @@ -32,8 +28,10 @@ MultivariateMoments = "~0.3" MultivariatePolynomials = "~0.3" MutableArithmetics = "~0.2" PolyJuMP = "~0.4" +Reexport = "~0.2" SemialgebraicSets = "~0.2" SumOfSquares = "~0.4" +julia = "1" [extras] SCS = "c946c3f1-0d1f-5ce8-9dea-7daa1f7e2d13" diff --git a/docs/Project.toml b/docs/Project.toml index 13ecdd5..6134bb6 100644 --- a/docs/Project.toml +++ b/docs/Project.toml @@ -1,3 +1,6 @@ [deps] Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" MomentOpt = "5036cc39-ae6e-5f00-bcd6-dacb213bf05a" + +[compat] +Documenter = "~0.24" diff --git a/test/approximate.jl b/test/approximate.jl index a9cd22d..0254536 100644 --- a/test/approximate.jl +++ b/test/approximate.jl @@ -133,7 +133,7 @@ end end -@testset "atomic" begin +@testset "Post Proc" begin @polyvar x y f = x^2*y^2 + x^4 - y^2 + 1 gmp = GMPModel() diff --git a/test/postproc.jl b/test/postproc.jl deleted file mode 100644 index 9c23097..0000000 --- a/test/postproc.jl +++ /dev/null @@ -1,6 +0,0 @@ -@testset "Post Processing" begin -# atomic(vref::GMPVariableRef) -# min_val(x::Pair{<:Vector{<:MP.AbstractVariable}, <:Vector{<:Number}}, poly::AbstractPolynomialLike) -# christoffel(vref::GMPVariableRef) -# graph(vref::GMPVariableRef, indep_vars::Vector{<:MP.AbstractVariable}; regpar = 1e-8) -end diff --git a/test/runtests.jl b/test/runtests.jl index 8a6291f..c02cbce 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -14,4 +14,3 @@ include("constraints.jl") include("gmpmodel.jl") include("approximate.jl") -include("postproc.jl")