Skip to content

Commit

Permalink
Merge pull request #159 from sisl/fix/#156
Browse files Browse the repository at this point in the history
fix #156 set SCS to silent
  • Loading branch information
tomerarnon committed Aug 15, 2020
2 parents 20f0355 + b09962e commit c290f11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/optimization/certify.jl
Expand Up @@ -33,7 +33,7 @@ end
function solve(solver::Certify, problem::Problem)
@assert length(problem.network.layers) == 2 "Certify only handles Networks that have one hidden layer. Got $(length(problem.network.layers)) total layers"
# @assert all(iszero.(problem.input.radius .- problem.input.radius[1])) "input.radius must be uniform. Got $(problem.input.radius)"
model = Model(solver)
model = Model(solver); set_silent(model)
c, d = tosimplehrep(problem.output)
c, d = c[1, :], d[1]
v = c' * problem.network.layers[2].weights
Expand Down

0 comments on commit c290f11

Please sign in to comment.