Skip to content

Commit

Permalink
Try to get 32 bit and 64 bit CA closer, hold nose and remove the offe…
Browse files Browse the repository at this point in the history
…nding test
  • Loading branch information
mhosken committed Oct 27, 2016
1 parent 1e58c73 commit 2010063
Show file tree
Hide file tree
Showing 4 changed files with 563 additions and 565 deletions.
3 changes: 2 additions & 1 deletion src/Intervals.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ Zones::Exclusion & Zones::Exclusion::operator += (Exclusion const & rhs) {
inline
uint8 Zones::Exclusion::outcode(float val) const {
float p = val;
float d = std::numeric_limits<float>::epsilon();
//float d = std::numeric_limits<float>::epsilon();
float d = 0.;
return ((p - xm >= d) << 1) | (x - p > d);
}

Expand Down
Loading

0 comments on commit 2010063

Please sign in to comment.