The Quantum Exact Simulation Toolkit v4.0.0
Loading...
Searching...
No Matches
types.cpp
1/** @file
2 * API convenience functions related to types.
3 *
4 * @author Tyson Jones
5 */
6
7#include "quest/include/types.h"
8
9#include "quest/src/core/printer.hpp"
10#include "quest/src/core/validation.hpp"
11
12#include <string>
13
14using std::string;
15
16
17
18/*
19 * STRINGS
20 */
21
22void reportStr(std::string str) {
23 validate_envIsInit(__func__);
24
25 print(str);
26 print_newlines();
27}
28
29extern "C" void reportStr(const char* str) {
30 reportStr(string(str));
31}
32
33
34
35/*
36 * SCALARS
37 */
38
39void reportScalar(string label, string numstr) {
40 validate_envIsInit(__func__);
41
42 // harmlessly re-validates
43 reportStr(label + (label.empty()? "" : ": ") + numstr);
44}
45
46void reportScalar(string label, qcomp num) { reportScalar(label, printer_toStr(num)); }
47void reportScalar(string label, qreal num) { reportScalar(label, printer_toStr(num)); }
48void reportScalar(const char* label, qreal num) { reportScalar(string(label), printer_toStr(num)); }
49
50extern "C" {
51 void reportScalar (const char* label, qcomp num) { reportScalar(string(label), printer_toStr(num)); }
52 void _reportScalar_real (const char* label, qreal num) { reportScalar(string(label), printer_toStr(num)); }
53}
void reportStr(std::string str)
Definition types.cpp:22
void reportScalar(const char *label, qcomp num)
Definition types.cpp:51