This commit is contained in:
Artur Meski
2018-07-17 19:35:39 +01:00
parent 964fb71d02
commit 141c25386d
3 changed files with 10 additions and 10 deletions

View File

@@ -12,13 +12,13 @@ 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 OBJ = rs.o ctx_aut.o symrs.o mc.o rsin_driver.o rsin_parser.o rsin_parser.lex.o formrsctlk.o
all: main all: reactics
cleanly: cleanly:
rm -f *.lex.cc *.lex.o location.hh stack.hh position.hh rsin_parser.cc rsin_parser.hh rm -f *.lex.cc *.lex.o location.hh stack.hh position.hh rsin_parser.cc rsin_parser.hh
clean: cleanly clean: cleanly
rm -f *.o main *.orig *~ makefile.dep tags rm -f *.o reactics *.orig *~ makefile.dep tags
cleanall: clean cleanall: clean
@@ -27,7 +27,7 @@ makefile.dep: *.cc *.hh
include makefile.dep include makefile.dep
main: main.o $(OBJ) reactics: reactics.o $(OBJ)
rsin_parser.hh: rsin_parser.cc rsin_parser.hh: rsin_parser.cc

View File

@@ -6,7 +6,7 @@
without the author's permission is strictly prohibited. without the author's permission is strictly prohibited.
*/ */
#include "main.hh" #include "reactics.hh"
int main(int argc, char **argv) int main(int argc, char **argv)
{ {
@@ -217,9 +217,9 @@ int main(int argc, char **argv)
void print_help(std::string path_str) void print_help(std::string path_str)
{ {
cout << endl cout << endl
<< " ------------------------------------" << endl << " ------------------------------------------------" << endl
<< " -- Reaction Systems Model Checker --" << endl << " -- ReactICS -- Reaction Systems Model Checker --" << endl
<< " ------------------------------------" << endl << " ------------------------------------------------" << endl
<< endl << endl
<< " Version: " << VERSION << endl << " Version: " << VERSION << endl
<< " Contact: " << AUTHOR << endl << " Contact: " << AUTHOR << endl

View File

@@ -3,8 +3,8 @@
Artur Meski <meski@ipipan.waw.pl> Artur Meski <meski@ipipan.waw.pl>
*/ */
#ifndef RS_MAIN_HH #ifndef REACTICS_HH
#define RS_MAIN_HH #define REACTICS_HH
#include <iostream> #include <iostream>
#include <string> #include <string>
@@ -20,7 +20,7 @@
#include "memtime.hh" #include "memtime.hh"
#define VERSION "2.0 ALPHA" #define VERSION "2.0 ALPHA"
#define AUTHOR "Artur Meski <meski@ipipan.waw.pl>" #define AUTHOR "Artur Meski <artur.meski@gmail.com>"
using std::cout; using std::cout;
using std::endl; using std::endl;