Gromacs  2016.6
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
List of all members | Public Member Functions
gmx::test::FloatingPointDifference Class Reference

#include <testutils/testasserts.h>

Description

Computes and represents a floating-point difference value.

Methods in this class do not throw, except for toString(), which may throw std::bad_alloc.

See Also
FloatingPointTolerance

Public Member Functions

 FloatingPointDifference (float value1, float value2)
 Initializes a single-precision difference.
 
 FloatingPointDifference (double value1, double value2)
 Initializes a double-precision difference.
 
bool isNaN () const
 Whether one or both of the compared values were NaN. More...
 
double asAbsolute () const
 Returns the difference as an absolute number (always non-negative).
 
gmx_uint64_t asUlps () const
 Returns the difference as ULPs (always non-negative). More...
 
bool signsDiffer () const
 Whether the compared values were of different sign. More...
 
bool isDouble () const
 Whether the difference is between single- or double-precision numbers.
 
std::string toString () const
 Formats the difference as a string for assertion failure messages.
 

Member Function Documentation

gmx_uint64_t gmx::test::FloatingPointDifference::asUlps ( ) const
inline

Returns the difference as ULPs (always non-negative).

The ULPs are calculated for the type that corresponds to the constructor used to initialize the difference. The ULP difference between 0.0 and -0.0 is zero.

bool gmx::test::FloatingPointDifference::isNaN ( ) const

Whether one or both of the compared values were NaN.

If this returns true, other accessors return meaningless values.

bool gmx::test::FloatingPointDifference::signsDiffer ( ) const
inline

Whether the compared values were of different sign.

0.0 and -0.0 are treated as positive and negative, respectively.


The documentation for this class was generated from the following files: