Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
tinatorabi committed Aug 29, 2024
1 parent b9bcbb4 commit b706e79
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/solvers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -256,10 +256,9 @@ function solve(solver::ASP, A, y)

# Select the final solution based on the criterion
xs, in = select_solution(new_tracer, solver, A, y)
x_f = Array(xs)

println("done.")
return Dict("C" => x_f, "path" => new_tracer, "nnzs" => length((tracer[in][1]).nzind) )
return Dict("C" => xs, "path" => new_tracer, "nnzs" => length((tracer[in][1]).nzind) )
end

function select_solution(tracer, solver, A, y)
Expand Down

0 comments on commit b706e79

Please sign in to comment.