Changeset 2f8d6d8
- Timestamp:
- 10/14/09 21:27:05 (15 years ago)
- Branches:
- master
- Children:
- a26cf42
- Parents:
- 25b4022
- git-author:
- to <to@…> (10/14/09 21:27:05)
- git-committer:
- to <to@…> (10/14/09 21:27:05)
- Location:
- app/src
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
app/src/compiledic/aut2fsa.cc
r25ae32e r2f8d6d8 1 1 2 #include <iostream .h>2 #include <iostream> 3 3 #include <stdlib.h> 4 4 5 5 #include "../lib/tfti.h" 6 6 7 #include <fstream.h> 7 #include <fstream> 8 9 using namespace std; 8 10 9 11 int main() -
app/src/dgp/grammar.hh
r2969c84 r2f8d6d8 11 11 #include "sgraph.hh" 12 12 13 14 using namespace std; 13 15 14 16 class Link -
app/src/dgp/mgraph.hh
r28e9ae0 r2f8d6d8 7 7 #include "thesymbols.hh" 8 8 #include "../common/common.h" 9 10 11 using namespace std; 9 12 10 13 class MNode -
app/src/dgp/sgraph.hh
r9ace5d2 r2f8d6d8 11 11 #include "thesymbols.hh" 12 12 13 14 using namespace std; 13 15 14 16 class MNode; -
app/src/dgp/thesymbols.hh
r9ace5d2 r2f8d6d8 8 8 #include <set> 9 9 #include <bitset> 10 11 12 using namespace std; 10 13 11 14 typedef Symbol<1> Cat; -
app/src/gue/guess.cc
r25ae32e r2f8d6d8 3 3 4 4 #include <string.h> 5 #include <iostream .h>5 #include <iostream> 6 6 #include <stdlib.h> 7 7 #include <assert.h> … … 17 17 18 18 #define PREF_SIGN '_' 19 20 21 using namespace std; 22 19 23 20 24 Guess::Guess(const char* suf_file) -
app/src/kor/corlist.cc
rac7d970 r2f8d6d8 1 1 #include <stdio.h> 2 #include < alloc.h>2 #include <malloc.h> 3 3 #include "corlist.h" 4 4 -
app/src/lem/lem.cc
r25ae32e r2f8d6d8 1 1 #include "lem.h" 2 2 3 #include <stdlib.h> 3 4 #include <assert.h> 4 5 -
app/src/lib/symtab.cc
r25ae32e r2f8d6d8 2 2 #include <values.h> 3 3 #include <stdio.h> 4 #include < alloc.h>4 #include <malloc.h> 5 5 #include <stdlib.h> 6 6 //--------------------------------------------------------------------------- -
app/src/lib/tft.h
r25ae32e r2f8d6d8 3 3 //--------------------------------------------------------------------------- 4 4 #include <stddef.h> 5 #include <iostream .h>5 #include <iostream> 6 6 #include <typeinfo> 7 7 #include <string.h> … … 11 11 //#include "top.h" 12 12 #include "ttrans.h" 13 14 using namespace std; 13 15 //--------------------------------------------------------------------------- 14 16 -
app/src/lib/tfti.h
r25ae32e r2f8d6d8 2 2 #define TFTiH 3 3 //--------------------------------------------------------------------------- 4 #include <fstream .h>4 #include <fstream> 5 5 #include <math.h> 6 #include <iomanip .h>6 #include <iomanip> 7 7 //#include <typeinfo.h> 8 8 9 9 #include "tft.h" 10 10 //--------------------------------------------------------------------------- 11 12 13 using namespace std; 14 11 15 12 16 template<class I, class Ipass, class O, class Opass> -
app/src/lib/ttrans.h
r25ae32e r2f8d6d8 2 2 #define _TTransi_h 3 3 //--------------------------------------------------------------------------- 4 #include <iostream.h> 5 //--------------------------------------------------------------------------- 4 #include <iostream> 5 //--------------------------------------------------------------------------- 6 7 8 using namespace std; 6 9 7 10 //! The template for a transition with input and output symbols stored internally. -
app/src/lib/word.cc
r6ac84d8 r2f8d6d8 2 2 #include "word.h" 3 3 #include "auttools.h" 4 #include <istream.h> 5 //--------------------------------------------------------------------------- 4 #include <istream> 5 //--------------------------------------------------------------------------- 6 7 using namespace std; 8 6 9 //--------------------------------------------------------------------------- 7 10 … … 121 124 //--------------------------------------------------------------------------- 122 125 void Words::sort() { 123 std::sort(tab.begin(), tab.end(), Word::cmp_w); 126 // sort(tab.begin(), tab.end(), Word::cmp_w); //NIE DZIALA 124 127 } 125 128 126 129 //--------------------------------------------------------------------------- 127 130 void Words::sort_rev() { 128 std::sort(tab.begin(), tab.end(), cmp_w_rev_fun); 131 // sort(tab.begin(), tab.end(), cmp_w_rev_fun); // NIE DZIALA 129 132 } 130 133 -
app/src/lib/word.h
r6ac84d8 r2f8d6d8 6 6 //#include "erro.h" 7 7 #include "const.h" 8 #include <iostream.h> 8 #include <iostream> 9 10 #include <string.h> 9 11 10 12 #include <vector>
Note: See TracChangeset
for help on using the changeset viewer.