The Quantum Exact Simulation Toolkit v4.0.0
Loading...
Searching...
No Matches

Macros for precision-agnostic real and complex arithmetic. More...

Typedefs

typedef std::complex< FLOAT_TYPE > qcomp
 
typedef INDEX_TYPE qindex
 
typedef FLOAT_TYPE qreal
 

Functions

static qcomp getQcomp (qreal re, qreal im)
 
void reportScalar (const char *label, qcomp num)
 
void reportScalar (const char *label, qreal num)
 
void reportScalar (std::string label, qcomp num)
 
void reportScalar (std::string label, qreal num)
 
void reportStr (const char *str)
 
void reportStr (std::string str)
 

Detailed Description

Macros for precision-agnostic real and complex arithmetic.

Typedef Documentation

◆ qcomp

typedef FLOAT_TYPE _Complex qcomp

Definition at line 45 of file types.h.

◆ qindex

typedef INDEX_TYPE qindex

Definition at line 32 of file types.h.

◆ qreal

typedef FLOAT_TYPE qreal

Definition at line 31 of file types.h.

Function Documentation

◆ getQcomp()

static qcomp getQcomp ( qreal re,
qreal im )
inlinestatic
Note
Documentation for this function or struct is under construction!

Definition at line 91 of file types.h.

91 {
92
93 #if defined(__cplusplus)
94 return qcomp(re, im);
95
96 #elif defined(_MSC_VER)
97 return (qcomp) {re, im};
98
99 #else
100 return re + I*im;
101
102 #endif
103}

Referenced by TEST_CASE(), and TEST_CASE().

◆ reportScalar() [1/4]

void reportScalar ( const char * label,
qcomp num )
Note
Documentation for this function or struct is under construction!
Warning
This function has not yet been unit tested and may contain bugs. Please use with caution!

Definition at line 51 of file types.cpp.

51{ reportScalar(string(label), printer_toStr(num)); }
void reportScalar(const char *label, qcomp num)
Definition types.cpp:51

Referenced by reportScalar(), reportScalar(), and TEST_CASE().

◆ reportScalar() [2/4]

void reportScalar ( const char * label,
qreal num )
Note
Documentation for this function or struct is under construction!
Warning
This function has not yet been unit tested and may contain bugs. Please use with caution!

Definition at line 48 of file types.cpp.

48{ reportScalar(string(label), printer_toStr(num)); }

◆ reportScalar() [3/4]

void reportScalar ( std::string label,
qcomp num )
Note
Documentation for this function or struct is under construction!
Warning
This function has not yet been unit tested and may contain bugs. Please use with caution!

◆ reportScalar() [4/4]

void reportScalar ( std::string label,
qreal num )
Note
Documentation for this function or struct is under construction!
Warning
This function has not yet been unit tested and may contain bugs. Please use with caution!

◆ reportStr() [1/2]

void reportStr ( const char * str)
Note
Documentation for this function or struct is under construction!
Warning
This function has not yet been unit tested and may contain bugs. Please use with caution!

Definition at line 29 of file types.cpp.

29 {
30 reportStr(string(str));
31}
void reportStr(std::string str)
Definition types.cpp:22

◆ reportStr() [2/2]

void reportStr ( std::string str)
Note
Documentation for this function or struct is under construction!
Warning
This function has not yet been unit tested and may contain bugs. Please use with caution!

Definition at line 22 of file types.cpp.

22 {
23 validate_envIsInit(__func__);
24
25 print(str);
26 print_newlines();
27}