diff options
author | Patrick Simianer <p@simianer.de> | 2014-08-24 17:26:05 +0100 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2014-08-24 17:26:05 +0100 |
commit | f1916c39b820b7d10d1ae7d7447675c4224d8197 (patch) | |
tree | 7d3673d7784e7b3adbb6ca5b86e31058176bd376 /fast/parse.cc | |
parent | cef65063cec641a93973b38a48e100fdd115db44 (diff) |
fixes
Diffstat (limited to 'fast/parse.cc')
-rw-r--r-- | fast/parse.cc | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/fast/parse.cc b/fast/parse.cc deleted file mode 100644 index 06c9fa0..0000000 --- a/fast/parse.cc +++ /dev/null @@ -1,55 +0,0 @@ -#include "parse.hh" - - -namespace Parse { - - -} // - - -vector<G::T> tokenize(string s) -{ - istringstream ss(s); - vector<G::T> res; - while (ss.good()) { - string t; - ss >> t; - G::T i(t); - cout << i.word << endl; - res.push_back(i); - } - return res; -} - - -bool operator==(vector<G::Item> const& a, vector<G::Item> const& b) -{ - if (a.size() != b.size()) return false; - for (auto it: a) -} - -int main(int argc, char** argv) -{ - string in("karten haie"); - vector<G::T> tok = tokenize(in); - for (auto it: tok) - cout << it.word << ","; - cout << endl; - size_t n = tok.size(); - - G::Grammar g(argv[1]); - - vector<Span> spans; - Parse::visit(spans, 1, 0, 6); - for (auto it: spans) { - cout << "(" << it.first << "," << it.second << ")" << endl; - } - - Parse::Chart active(n); - Parse::Chart passive(n); - - //init(tok, n, active, passive, g); - - cout << *(g.flat.at(0)) << endl; -} - |