Program Listing for File double_comparison.h

Return to documentation for file (necsim/double_comparison.h)

// This file is part of necsim project which is released under MIT license.
// See file **LICENSE.txt** or visit https://opensource.org/licenses/MIT) for full license details.

#ifndef NECSIM_DOUBLECOMPARISON_H
#define NECSIM_DOUBLECOMPARISON_H
namespace necsim
{
    bool doubleCompare(double d1, double d2, double epsilon);

    bool doubleCompare(long double d1, long double d2, long double epsilon);

    bool doubleCompare(long double d1, long double d2, double epsilon);
}
#endif //NECSIM_DOUBLECOMPARISON_H