Ticket #7329 (assigned)
Track down bad checks for nan
Reported by: | Peter Peterson | Owned by: | Peter Peterson |
---|---|---|---|
Priority: | major | Milestone: | Backlog |
Component: | Framework | Keywords: | |
Cc: | Blocked By: | ||
Blocking: | Tester: |
Description
A way to check for not-a-number (nan) is
if (number != number)
Track these down and replace them with
if (boost::mat::isnan(number))
This occurs in RemoveLowResTof and probably elsewhere.
Change History
Note: See
TracTickets for help on using
tickets.