Упорядочивание проекта

This commit is contained in:
Andrey Pokidov 2025-11-26 22:43:29 +07:00
parent 0dcd9c0d4d
commit 89dfd7644b
32 changed files with 1730 additions and 1719 deletions

View file

@ -28,10 +28,10 @@ void test_versor_copy_fp32()
bgc_versor_copy_fp32(&_TEST_FP32_VERSOR_LIST[i], &versor);
if (versor.s0 != _TEST_FP32_VERSOR_LIST[i].s0 ||
versor.x1 != _TEST_FP32_VERSOR_LIST[i].x1 ||
versor.x2 != _TEST_FP32_VERSOR_LIST[i].x2 ||
versor.x3 != _TEST_FP32_VERSOR_LIST[i].x3) {
if (versor._s0 != _TEST_FP32_VERSOR_LIST[i]._s0 ||
versor._x1 != _TEST_FP32_VERSOR_LIST[i]._x1 ||
versor._x2 != _TEST_FP32_VERSOR_LIST[i]._x2 ||
versor._x3 != _TEST_FP32_VERSOR_LIST[i]._x3) {
print_testing_failed();
return;
}
@ -64,10 +64,10 @@ void test_versor_copy_fp64()
bgc_versor_copy_fp64(&_TEST_FP64_VERSOR_LIST[i], &versor);
if (versor.s0 != _TEST_FP64_VERSOR_LIST[i].s0 ||
versor.x1 != _TEST_FP64_VERSOR_LIST[i].x1 ||
versor.x2 != _TEST_FP64_VERSOR_LIST[i].x2 ||
versor.x3 != _TEST_FP64_VERSOR_LIST[i].x3) {
if (versor._s0 != _TEST_FP64_VERSOR_LIST[i]._s0 ||
versor._x1 != _TEST_FP64_VERSOR_LIST[i]._x1 ||
versor._x2 != _TEST_FP64_VERSOR_LIST[i]._x2 ||
versor._x3 != _TEST_FP64_VERSOR_LIST[i]._x3) {
print_testing_failed();
return;
}