Home
last modified time | relevance | path

Searched refs:FPC_STRONG (Results 1 – 6 of 6) sorted by relevance

/third_party/boost/boost/test/tools/
Dfloating_point_comparison.hpp98 FPC_STRONG, //!< "Very close" - equation 2' in docs, the default enumerator
233 …explicit close_at_tolerance( ToleranceType tolerance, fpc::strength fpc_strength = FPC_STRONG ) in close_at_tolerance()
271 m_tested_rel_diff = m_strength == FPC_STRONG ? max_rel_diff : min_rel_diff; in operator ()()
Dfpc_op.hpp140 fpc::close_at_tolerance<FPT> P( fpc_tolerance<FPT>(), fpc::FPC_STRONG ); in compare_fpv()
/third_party/boost/libs/math/example/
Dfloat_comparison_example.cpp253 << (three_rounds.strength() == FPC_STRONG ? "strong" : "weak") in main()
323 << close_at_tolerance<float>(epsilon, FPC_STRONG)(a, b) << std::endl; in main()
Dbrent_minimise_example.cpp108 using boost::math::fpc::FPC_STRONG; in is_close()
115 return close_at_tolerance<T>(tolerance, FPC_STRONG) (expect, got); in is_close()
/third_party/boost/libs/qvm/test/
Dtest_qvm.hpp31 … return boost::math::fpc::close_at_tolerance<float>(tolerance,boost::math::fpc::FPC_STRONG)(a,b); in close_at_tolerance()
38 … return boost::math::fpc::close_at_tolerance<double>(tolerance,boost::math::fpc::FPC_STRONG)(a,b); in close_at_tolerance()
/third_party/boost/boost/test/tools/old/
Dimpl.hpp304 …_tolerance<typename tt_detail::comp_supertype<FPT1,FPT2>::type> pred( tolerance, fpc::FPC_STRONG ); in operator ()()