Skip to content

Commit

Permalink
Bugfix: fixing polytope is_in function
Browse files Browse the repository at this point in the history
  • Loading branch information
vissarion committed Sep 11, 2017
1 parent ea33e6a commit ceacb75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/polytopes.h
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ class stdHPolytope{
++lit;
for( ; lit<mit->end() ; ++lit, ++pit){
//std::cout << *lit << " " << *pit <<std::endl;
sum += *lit * (*pit);
sum -= *lit * (*pit);
}

//std::cout<<sum<<std::endl;
Expand Down

0 comments on commit ceacb75

Please sign in to comment.