Skip to content

Commit

Permalink
fixed is_intersection_empty to use correct projection
Browse files Browse the repository at this point in the history
  • Loading branch information
kpotomkin committed Jun 5, 2019
1 parent 5f033d7 commit 14a5980
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/is_intersection_empty.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1389,7 +1389,7 @@ function is_intersection_empty(X::CartesianProductArray{N, S},

approx_low_set = HPolytope(constraints_list(low_set));

if isdisjoint(approx_low_set, Approximations.project(Y, vars, LinearMap))
if isdisjoint(approx_low_set, Approximations.project(Y, vars))
return true
end

Expand Down

0 comments on commit 14a5980

Please sign in to comment.