Version
This commit is contained in:
3
Makefile
3
Makefile
@@ -7,7 +7,8 @@ CPPFLAGS = -Wall $(CPPFLAGS_SILENT) #-Werror
|
||||
#CPPFLAGS = -Wall $(INCLUDES) -DNDEBUG
|
||||
CXXFLAGS_SILENT = -O3 -g
|
||||
CXXFLAGS = -std=c++14 $(CXXFLAGS_SILENT)
|
||||
#CXXFLAGS = -std=c++14 -O3 -DPUBLIC_RELEASE -DNDEBUG #-g
|
||||
CXXFLAGS = -std=c++14 -O3 -DPUBLIC_RELEASE -DNDEBUG #-g
|
||||
CXXFLAGS = -std=c++14 -O3 -DPUBLIC_RELEASE #-g
|
||||
LDLIBS = $(CUDD_INCLUDE)
|
||||
|
||||
OBJ = rs.o ctx_aut.o symrs.o mc.o rsin_driver.o rsin_parser.o rsin_parser.lex.o formrsctlk.o stateconstr.o
|
||||
|
||||
12
reactics.cc
12
reactics.cc
@@ -21,7 +21,7 @@ int main(int argc, char **argv)
|
||||
bool reach_states_succ = false;
|
||||
bool bmc = true;
|
||||
bool benchmarking = false;
|
||||
bool usage_error = false;
|
||||
bool dump_help_message = false;
|
||||
bool print_parsed_sys = false;
|
||||
std::string property_name = "default";
|
||||
|
||||
@@ -110,11 +110,11 @@ int main(int argc, char **argv)
|
||||
break;
|
||||
|
||||
case 'h':
|
||||
usage_error = true;
|
||||
dump_help_message = true;
|
||||
break;
|
||||
|
||||
default:
|
||||
usage_error = true;
|
||||
dump_help_message = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
@@ -124,12 +124,12 @@ int main(int argc, char **argv)
|
||||
if (optind < argc) {
|
||||
inputfile = argv[optind];
|
||||
}
|
||||
else {
|
||||
else if (!dump_help_message) {
|
||||
cout << "Missing input file" << endl;
|
||||
usage_error = true;
|
||||
dump_help_message = true;
|
||||
}
|
||||
|
||||
if (usage_error) {
|
||||
if (dump_help_message) {
|
||||
print_help(std::string(argv[0]));
|
||||
return 100;
|
||||
}
|
||||
|
||||
@@ -19,8 +19,9 @@
|
||||
#include "options.hh"
|
||||
#include "memtime.hh"
|
||||
|
||||
#define VERSION "2.0 ALPHA"
|
||||
#define AUTHOR "Artur Meski <artur.meski@gmail.com>"
|
||||
#define VERSION "2.0"
|
||||
//#define AUTHOR "Artur Meski <artur.meski@gmail.com>"
|
||||
#define AUTHOR "Artur Meski <meski@ipipan.waw.pl>"
|
||||
using std::cout;
|
||||
using std::endl;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user