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

View File

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

View File

@@ -3,8 +3,8 @@
Artur Meski <meski@ipipan.waw.pl>
*/
#ifndef RS_MAIN_HH
#define RS_MAIN_HH
#ifndef REACTICS_HH
#define REACTICS_HH
#include <iostream>
#include <string>
@@ -20,7 +20,7 @@
#include "memtime.hh"
#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::endl;