Changeset 1e121f4 for _old/app/src/dgp


Ignore:
Timestamp:
10/26/10 10:57:54 (14 years ago)
Author:
Adam Kędziora <s301614@…>
Branches:
master
Children:
a6e708f
Parents:
f712e16
git-author:
Adam Kędziora <s301614@…> (10/26/10 10:57:54)
git-committer:
Adam Kędziora <s301614@…> (10/26/10 10:57:54)
Message:

Replacing old implementation with working implementation

Location:
_old/app/src/dgp
Files:
3 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • _old/app/src/dgp/Makefile

    r57728c1 r1e121f4  
    1  
    2  
    31SHELL = /bin/sh 
    42LIB_PATH=../../lib 
     
    97#vpath %.o  . 
    108 
    11 CXXFLAGS = -O2 -static 
     9CXXFLAGS = -O2 -static -fpermissive 
    1210 
    1311sources = main.cc grammar.cc symbol.cc mgraph.cc sgraph.cc dgp0.cc cmdline.cc \ 
    1412          $(COMMON_PATH)/common.cc global.cc 
    1513 
    16 bin  = dgp 
     14bin  = dgp dgc canonize tre 
    1715 
    1816# plik *.o sa umieszczane w podkatalogu o 
     
    4543 
    4644clean: 
    47         rm ${bin} ${objs} cmdline.cc cmdline.h 
    48         rm -rf *.d 
     45        rm ${bin} ${objs} cmdline.cc cmdline.h *.d 
    4946 
    5047prof: dgp 
  • _old/app/src/dgp/grammar.hh

    r57728c1 r1e121f4  
    1111#include "sgraph.hh" 
    1212 
    13  
    14 using namespace std; 
    1513 
    1614class Link 
  • _old/app/src/dgp/mgraph.hh

    r57728c1 r1e121f4  
    77#include "thesymbols.hh" 
    88#include "../common/common.h" 
    9  
    10  
    11 using namespace std; 
    129 
    1310class MNode 
  • _old/app/src/dgp/sgraph.hh

    r57728c1 r1e121f4  
    1111#include "thesymbols.hh" 
    1212 
    13  
    14 using namespace std; 
    1513 
    1614class MNode; 
  • _old/app/src/dgp/thesymbols.hh

    r57728c1 r1e121f4  
    88#include <set> 
    99#include <bitset> 
    10  
    11  
    12 using namespace std; 
    1310 
    1411typedef Symbol<1> Cat; 
Note: See TracChangeset for help on using the changeset viewer.