Skip to content

Commit 30fd284

Browse files
committed
add more
1 parent 0da54d6 commit 30fd284

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ include("test_utils.jl")
7878
end
7979
end
8080

81-
pmap(test_one_problem, list_problems_ADNLPProblems[1:10])
81+
pmap(test_one_problem, list_problems_ADNLPProblems)
8282

8383
names_pb_vars = meta[
8484
meta.variable_nvar .== true,

test/test_utils.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
const ndef = OptimizationProblems.default_nvar
2-
const test_nvar = Int(round(ndef / 2))
3-
meta = OptimizationProblems.meta
1+
@everywhere const ndef = OptimizationProblems.default_nvar
2+
@everywhere const test_nvar = Int(round(ndef / 2))
3+
@everywhere meta = OptimizationProblems.meta
44

55
# Avoid SparseADJacobian/Hessian for too large problem as it requires a lot of memory for CIs
6-
const simp_backend = "jacobian_backend = ADNLPModels.ForwardDiffADJacobian, hessian_backend = ADNLPModels.ForwardDiffADHessian"
6+
@everywhere const simp_backend = "jacobian_backend = ADNLPModels.ForwardDiffADJacobian, hessian_backend = ADNLPModels.ForwardDiffADHessian"
77

88
@everywhere function meta_sanity_check(prob::Symbol, nlp::AbstractNLPModel)
99
meta = OptimizationProblems.eval(Symbol(prob, :_meta))

0 commit comments

Comments
 (0)