The Quantum Exact Simulation Toolkit v4.0.0
Loading...
Searching...
No Matches
types.cpp
1/** @file
2 * Unit tests of the types module.
3 *
4 * @author Tyson Jones
5 *
6 * @defgroup unittypes Types
7 * @ingroup unittests
8 */
9
10#include "quest/include/quest.h"
11
12#include <catch2/catch_test_macros.hpp>
13
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"
23
24
25
26/*
27 * UTILITIES
28 */
29
30#define TEST_CATEGORY \
31 LABEL_UNIT_TAG "[types]"
32
33
34
35/**
36 * TESTS
37 *
38 * @ingroup unittypes
39 * @{
40 */
41
42
43TEST_CASE( "getQcomp", TEST_CATEGORY ) {
44
45 SECTION( LABEL_CORRECTNESS ) {
46
47 qreal re = getRandomReal(-10, 10);
48 qreal im = getRandomReal(-10, 10);
49
50 qcomp comp = getQcomp(re, im);
51 REQUIRE( std::real(comp) == re );
52 REQUIRE( std::imag(comp) == im );
53 }
54
55 SECTION( LABEL_VALIDATION ) {
56
57 // no validation!
58 SUCCEED( );
59 }
60}
61
62
63TEST_CASE( "complex arithmetic", TEST_CATEGORY ) {
64
65 SECTION( LABEL_CORRECTNESS ) {
66
67 qcomp x;
68 x = 1 + 2_i;
69 x += 3 - 4_i;
70 x -= - 5 + 6_i;
71 x *= - 7 - 8_i;
72 x /= 9 + 10_i;
73
74 qcomp ref = getQcomp(-1303/181., 1126/181.);
75 REQUIRE_AGREE( x, ref );
76 }
77
78 SECTION( LABEL_VALIDATION ) {
79
80 // no validation!
81 SUCCEED( );
82 }
83}
84
85
86/** @} (end defgroup) */
87
88
89
90/**
91 * @todo
92 * UNTESTED FUNCTIONS
93 */
94
95void reportStr(const char* label);
96void reportStr(std::string str);
97
98void reportScalar(const char* label, qcomp num);
99void reportScalar(const char* label, qreal num);
100void reportScalar(std::string label, qcomp num);
101void reportScalar(std::string label, qreal num);
qreal getRandomReal(qreal min, qreal maxIncl)
Definition random.cpp:60
void reportStr(const char *label)
Definition types.cpp:29
static qcomp getQcomp(qreal re, qreal im)
Definition types.h:91
void reportScalar(const char *label, qcomp num)
Definition types.cpp:51
TEST_CASE("getQcomp", TEST_CATEGORY)
Definition types.cpp:43