10#include "quest/include/quest.h"
12#include <catch2/catch_test_macros.hpp>
14#include "tests/utils/qvector.hpp"
15#include "tests/utils/qmatrix.hpp"
16#include "tests/utils/compare.hpp"
17#include "tests/utils/convert.hpp"
18#include "tests/utils/evolve.hpp"
19#include "tests/utils/linalg.hpp"
20#include "tests/utils/lists.hpp"
21#include "tests/utils/macros.hpp"
22#include "tests/utils/random.hpp"
30#define TEST_CATEGORY \
31 LABEL_UNIT_TAG "[types]"
45 SECTION( LABEL_CORRECTNESS ) {
51 REQUIRE( std::real(comp) == re );
52 REQUIRE( std::imag(comp) == im );
55 SECTION( LABEL_VALIDATION ) {
63TEST_CASE(
"complex arithmetic", TEST_CATEGORY ) {
65 SECTION( LABEL_CORRECTNESS ) {
74 qcomp ref =
getQcomp(-1303/181., 1126/181.);
75 REQUIRE_AGREE( x, ref );
78 SECTION( LABEL_VALIDATION ) {
qreal getRandomReal(qreal min, qreal maxIncl)
void reportStr(const char *label)
static qcomp getQcomp(qreal re, qreal im)
void reportScalar(const char *label, qcomp num)
TEST_CASE("getQcomp", TEST_CATEGORY)