Переход на версию 0.3: изменение подхода к именованию сущностей, добавление, изменение и удаление ряда функций

This commit is contained in:
Andrey Pokidov 2026-01-30 19:37:49 +07:00
parent d33daf4e2d
commit f7e41645fe
87 changed files with 4580 additions and 4051 deletions

View file

@ -4,11 +4,11 @@
void test_complex_reset_fp32()
{
BgcComplexFP32 vector;
BGC_FP32_Complex vector;
print_testing_name("bgc_complex_reset_fp32");
print_testing_name("bgc_fp32_complex_reset");
bgc_complex_reset_fp32(&vector);
bgc_fp32_complex_reset(&vector);
if (vector.real != 0.0f || vector.imaginary != 0.0f) {
print_testing_failed();
@ -20,11 +20,11 @@ void test_complex_reset_fp32()
void test_complex_reset_fp64()
{
BgcComplexFP64 vector;
BGC_FP64_Complex vector;
print_testing_name("bgc_complex_reset_fp64");
print_testing_name("bgc_fp64_complex_reset");
bgc_complex_reset_fp64(&vector);
bgc_fp64_complex_reset(&vector);
if (vector.real != 0.0 || vector.imaginary != 0.0) {
print_testing_failed();