//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // template // T // norm(const complex& x); #include #include #include "test_macros.h" #include "../cases.h" template void test() { std::complex z(3, 4); assert(norm(z) == 25); } void test_edges() { const unsigned N = sizeof(testcases) / sizeof(testcases[0]); for (unsigned i = 0; i < N; ++i) { double r = norm(testcases[i]); switch (classify(testcases[i])) { case zero: assert(r == 0); assert(!std::signbit(r)); break; case non_zero: assert(std::isfinite(r) && r > 0); break; case inf: assert(std::isinf(r) && r > 0); break; case NaN: assert(std::isnan(r)); break; case non_zero_nan: assert(std::isnan(r)); break; } } } int main(int, char**) { test(); test(); test(); test_edges(); return 0; }