|
FuncSketch
|
Definitions of common types. More...
#include <complex>#include <cstdint>#include <variant>Go to the source code of this file.
Typedefs | |
| using | func_sketch::Real = double |
| Type of real numbers in this project. | |
| using | func_sketch::Integer = std::int32_t |
| Type of integer numbers in this project. | |
| using | func_sketch::Complex = std::complex<Real> |
| Type of complex numbers in this project. | |
| using | func_sketch::Number = std::variant<Integer, Real, Complex> |
| Type of numbers. | |
Definitions of common types.
Definition in file common_types.h.
| using func_sketch::Real = double |
Type of real numbers in this project.
Definition at line 29 of file common_types.h.
| using func_sketch::Integer = std::int32_t |
Type of integer numbers in this project.
Definition at line 32 of file common_types.h.
| using func_sketch::Complex = std::complex<Real> |
Type of complex numbers in this project.
Definition at line 35 of file common_types.h.
| using func_sketch::Number = std::variant<Integer, Real, Complex> |
Type of numbers.
Definition at line 43 of file common_types.h.