/* * Copyright (c) 2021, Cesar Torres * * SPDX-License-Identifier: BSD-2-Clause */ #include #include TEST_CASE(Complex) { auto a = Complex { 1.f, 1.f }; auto b = complex_real_unit + Complex { 0, 1 } * 1; EXPECT_APPROXIMATE(a.real(), b.real()); EXPECT_APPROXIMATE(a.imag(), b.imag()); #ifdef AKCOMPLEX_CAN_USE_MATH_H EXPECT_APPROXIMATE((complex_imag_unit - complex_imag_unit).magnitude(), 0); EXPECT_APPROXIMATE((complex_imag_unit + complex_real_unit).magnitude(), sqrt(2)); auto c = Complex { 0., 1. }; auto d = Complex::from_polar(1., M_PI / 2.); EXPECT_APPROXIMATE(c.real(), d.real()); EXPECT_APPROXIMATE(c.imag(), d.imag()); c = Complex { -1., 1. }; d = Complex::from_polar(sqrt(2.), 3. * M_PI / 4.); EXPECT_APPROXIMATE(c.real(), d.real()); EXPECT_APPROXIMATE(c.imag(), d.imag()); EXPECT_APPROXIMATE(d.phase(), 3. * M_PI / 4.); EXPECT_APPROXIMATE(c.magnitude(), d.magnitude()); EXPECT_APPROXIMATE(c.magnitude(), sqrt(2.)); #endif EXPECT_EQ((complex_imag_unit * complex_imag_unit).real(), -1.); EXPECT_EQ((complex_imag_unit / complex_imag_unit).real(), 1.); EXPECT_EQ(Complex(1., 10.) == (Complex(1., 0.) + Complex(0., 10.)), true); EXPECT_EQ(Complex(1., 10.) != (Complex(1., 1.) + Complex(0., 10.)), true); #ifdef AKCOMPLEX_CAN_USE_MATH_H EXPECT_EQ(approx_eq(Complex(1), Complex(1.0000004f)), true); EXPECT_APPROXIMATE(cexp(Complex(0., 1.) * M_PI).real(), -1.); #endif }