10 lines
137 B
C
10 lines
137 B
C
|
#ifndef SIMULATION_SETTING_H
|
||
|
#define SIMULATION_SETTING_H
|
||
|
|
||
|
enum e_sim_accuracy_type {
|
||
|
SIM_ACCURACY_FRAC,
|
||
|
SIM_ACCURACY_ABS
|
||
|
};
|
||
|
|
||
|
#endif
|