Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,15 @@ SVMExt = "MLDatasets"
ADNLPModels = "0.7, 0.8"
DifferentialEquations = "7.16"
Distributions = "0.25"
LinearAlgebra = "1.10, 1.11"
ManualNLPModels = "0.2"
MLDatasets = "0.7"
NLPModels = "0.16, 0.17, 0.18, 0.19, 0.20, 0.21"
Noise = "0.2"
ProximalOperators = "0.15, 0.16"
Random = "1.10, 1.11"
QuadraticModels = "0.9"
SciMLSensitivity = "7.89"
ShiftedProximalOperators = "0.2"
SparseArrays = "1.10, 1.11"
julia = "1.10"
2 changes: 1 addition & 1 deletion src/bpdn_model.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export bpdn_model, bpdn_nls_model
export bpdn_model

function bpdn_data(m::Int, n::Int, k::Int, noise::Float64 = 0.01; bounds::Bool = false)
m ≤ n || error("number of rows ($m) should be ≤ number of columns ($n)")
Expand Down
2 changes: 2 additions & 0 deletions test/Project.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[deps]
ADNLPModels = "54578032-b7ea-4c30-94aa-7cbd1cce6c9a"
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
DifferentialEquations = "0c46a032-eb83-5123-abaf-570d42b7fbaa"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
ManualNLPModels = "30dfa513-9b2f-4fb3-9796-781eabac1617"
Expand All @@ -13,6 +14,7 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[compat]
ADNLPModels = "0.7, 0.8"
Aqua = "0.8"
DifferentialEquations = "7.16"
ManualNLPModels = "0.2"
MLDatasets = "0.7"
Expand Down
6 changes: 6 additions & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using LinearAlgebra, Test
using Aqua
using ADNLPModels,
DifferentialEquations,
ManualNLPModels,
Expand Down Expand Up @@ -37,6 +38,11 @@ Don't add your tests to runtests.jl. Instead, create files named

The file will be automatically included inside a `@testset` with title "Title For My Test".
=#

@testset "Aqua" begin
Aqua.test_all(RegularizedProblems; ambiguities = false)
end

for (root, dirs, files) in walkdir(@__DIR__)
for file in files
if isnothing(match(r"^test-.*\.jl$", file))
Expand Down
Loading