Bug 1225

Summary: Improve floating point handling
Product: PulseView Reporter: Uwe Hermann <uwe>
Component: OtherAssignee: Nobody <nobody>
Status: CONFIRMED ---    
Severity: normal CC: soeren
Priority: Normal    
Version: unreleased development snapshot   
Target Milestone: ---   
Hardware: All   
OS: All   
Bug Depends on: 1223    
Bug Blocks:    

Description Uwe Hermann 2018-06-06 22:46:52 CEST
This is a generic bug for improving various code chunks in PV wrt floating point handling (e.g. comparison).

One specific issue in practice was #1149, but recently another problem occurred with hantek-4032l voltage thresholds (same reason as #1149, a different fix will be needed).

Relevant URLs:
https://randomascii.wordpress.com/2012/02/25/comparing-floating-point-numbers-2012-edition/
https://www.boost.org/doc/libs/1_64_0/libs/math/doc/html/math_toolkit/float_comparison.html
Comment 1 Uwe Hermann 2018-06-06 22:53:13 CEST
The compiler option -Wfloat-equal can be used to find all (or at least most?) issues related to direct floating point comparison via "==". Other FP-related issues in addition to those might exist in the code-base, though.