Macros for precision-agnostic real and complex arithmetic.
More...
|
typedef std::complex< FLOAT_TYPE > | qcomp |
|
typedef INDEX_TYPE | qindex |
|
typedef FLOAT_TYPE | qreal |
|
Macros for precision-agnostic real and complex arithmetic.
◆ qcomp
typedef FLOAT_TYPE _Complex qcomp |
◆ qindex
typedef INDEX_TYPE qindex |
◆ qreal
◆ 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.
void reportScalar(const char *label, qcomp num)
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.
◆ 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 {
31}
void reportStr(std::string str)
◆ 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}