APM: RSMC version 1.0 (not 1.0a) from ipisvn

This commit is contained in:
Artur Meski
2017-11-18 20:30:18 +00:00
parent 27c43717fa
commit 69a9825c8b
2071 changed files with 222512 additions and 0 deletions

37
options.hh Normal file
View File

@@ -0,0 +1,37 @@
#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