You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
367 B
19 lines
367 B
//
|
|
// Created by ubuntu on 9/20/21.
|
|
//
|
|
|
|
#ifndef DGTD_DGTD_PERFORMANCE_HPP
|
|
#define DGTD_DGTD_PERFORMANCE_HPP
|
|
|
|
#ifdef DGTD_USE_DOUBLE
|
|
#define fp_t double
|
|
#else
|
|
#define fp_t float
|
|
#endif
|
|
|
|
#ifdef DGTD_USE_DOUBLE_TS
|
|
#define fp_t_ts double
|
|
#else
|
|
#define fp_t_ts float
|
|
#endif
|
|
#endif //DGTD_DGTD_PERFORMANCE_HPP
|
|
|