Исправление существовавших и добавление новых функций сравнения

This commit is contained in:
Andrey Pokidov 2025-02-05 23:43:02 +07:00
parent 847c022533
commit 421ca77cb4
15 changed files with 174 additions and 74 deletions

View file

@ -10,5 +10,5 @@ extern inline int bgc_is_unit_fp64(const double square_value);
extern inline int bgc_is_sqare_value_unit_fp32(const float square_value);
extern inline int bgc_is_sqare_value_unit_fp64(const double square_value);
extern inline int bgc_are_equal_fp32(const float value1, const float value2);
extern inline int bgc_are_equal_fp64(const double value1, const double value2);
extern inline int bgc_are_close_fp32(const float value1, const float value2);
extern inline int bgc_are_close_fp64(const double value1, const double value2);