Moved files to 'reactics-bdd'
This commit is contained in:
38
reactics-bdd/options.hh
Normal file
38
reactics-bdd/options.hh
Normal file
@@ -0,0 +1,38 @@
|
||||
#ifndef RS_OPTIONS_HH
|
||||
#define RS_OPTIONS_HH
|
||||
|
||||
class Options
|
||||
{
|
||||
|
||||
public:
|
||||
unsigned int verbose;
|
||||
bool show_progress;
|
||||
bool measure;
|
||||
bool part_tr_rel;
|
||||
bool reorder_reach;
|
||||
bool reorder_trans;
|
||||
|
||||
double enc_time;
|
||||
double enc_mem;
|
||||
double ver_time;
|
||||
double ver_mem;
|
||||
|
||||
Options(void)
|
||||
{
|
||||
verbose = 0;
|
||||
show_progress = false;
|
||||
measure = false;
|
||||
|
||||
part_tr_rel = false;
|
||||
|
||||
reorder_reach = false;
|
||||
reorder_trans = false;
|
||||
|
||||
enc_time = 0;
|
||||
enc_mem = 0;
|
||||
ver_time = 0;
|
||||
ver_mem = 0;
|
||||
}
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user