Changeset a6e708f for _old/app/src/dgp
- Timestamp:
- 12/14/11 16:08:41 (13 years ago)
- Branches:
- master
- Children:
- 93afab8
- Parents:
- 1e121f4
- git-author:
- tom <tom@…> (12/14/11 16:08:41)
- git-committer:
- tom <tom@…> (12/14/11 16:08:41)
- Location:
- _old/app/src/dgp
- Files:
-
- 3 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
_old/app/src/dgp/Makefile
r1e121f4 ra6e708f 1 2 1 3 SHELL = /bin/sh 2 4 LIB_PATH=../../lib … … 7 9 #vpath %.o . 8 10 9 CXXFLAGS = -O2 -static -fpermissive11 CXXFLAGS = -O2 -static 10 12 11 13 sources = main.cc grammar.cc symbol.cc mgraph.cc sgraph.cc dgp0.cc cmdline.cc \ 12 14 $(COMMON_PATH)/common.cc global.cc 13 15 14 bin = dgp dgc canonize tre16 bin = dgp 15 17 16 18 # plik *.o sa umieszczane w podkatalogu o … … 43 45 44 46 clean: 45 rm ${bin} ${objs} cmdline.cc cmdline.h *.d 47 rm ${bin} ${objs} cmdline.cc cmdline.h 48 rm -rf *.d 46 49 47 50 prof: dgp -
_old/app/src/dgp/grammar.hh
r1e121f4 ra6e708f 11 11 #include "sgraph.hh" 12 12 13 14 using namespace std; 13 15 14 16 class Link -
_old/app/src/dgp/mgraph.hh
r1e121f4 ra6e708f 7 7 #include "thesymbols.hh" 8 8 #include "../common/common.h" 9 10 11 using namespace std; 9 12 10 13 class MNode -
_old/app/src/dgp/sgraph.hh
r1e121f4 ra6e708f 11 11 #include "thesymbols.hh" 12 12 13 14 using namespace std; 13 15 14 16 class MNode; -
_old/app/src/dgp/thesymbols.hh
r1e121f4 ra6e708f 8 8 #include <set> 9 9 #include <bitset> 10 11 12 using namespace std; 10 13 11 14 typedef Symbol<1> Cat;
Note: See TracChangeset
for help on using the changeset viewer.