diff options
author | Patrick Simianer <p@simianer.de> | 2014-07-15 18:19:00 +0200 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2014-07-15 18:19:00 +0200 |
commit | e207b43bf179277d53b3adc767372469bd8a2ad2 (patch) | |
tree | 6cfab61e60bba7515b2872448b4fc5f2b860d822 /fast | |
parent | 567f2bd17c05d31cd8a9b9d351f9030cddf53cb7 (diff) |
before msgpack
Diffstat (limited to 'fast')
-rw-r--r-- | fast/Makefile | 4 | ||||
-rw-r--r-- | fast/README.md | 3 | ||||
-rwxr-xr-x | fast/fast_weaver | bin | 88433 -> 0 bytes | |||
-rw-r--r-- | fast/hypergraph.hh | 7 | ||||
-rw-r--r-- | fast/hypergraph.o | bin | 72616 -> 0 bytes | |||
-rw-r--r-- | fast/semiring.hh | 1 |
6 files changed, 12 insertions, 3 deletions
diff --git a/fast/Makefile b/fast/Makefile index 4aea1ac..a453fd3 100644 --- a/fast/Makefile +++ b/fast/Makefile @@ -1,8 +1,8 @@ all: hypergraph.o main.cc - clang -std=c++11 -lstdc++ main.cc hypergraph.o -o fast_weaver + clang -std=c++11 -lstdc++ main.cc hypergraph.o json/libjson.a -o fast_weaver hypergraph.o: hypergraph.cc hypergraph.hh grammar.o semiring.hh - clang -std=c++11 -lstdc++ -c hypergraph.cc grammar.o + clang -std=c++11 -lstdc++ -c hypergraph.cc -I./msgpack-c/include/ grammar.o ./msgpack-c/lib/libmsgpack.a grammar.o: grammar.cc grammar.hh clang -std=c++11 -lstdc++ -c grammar.cc diff --git a/fast/README.md b/fast/README.md index 112a7ae..3087bab 100644 --- a/fast/README.md +++ b/fast/README.md @@ -2,7 +2,8 @@ TODO * grammar * parser * other semirings - * sparse vector + * sparse vector (unordered_map) + * hg serialization? json/bson/msgpack/protocol buffers (no!) * hg: json input (jsoncpp?) * language model: kenlm diff --git a/fast/fast_weaver b/fast/fast_weaver Binary files differdeleted file mode 100755 index 7d349b3..0000000 --- a/fast/fast_weaver +++ /dev/null diff --git a/fast/hypergraph.hh b/fast/hypergraph.hh index 6e53045..24e63f5 100644 --- a/fast/hypergraph.hh +++ b/fast/hypergraph.hh @@ -11,6 +11,8 @@ #include <functional> #include <algorithm> +#include <msgpack.hpp> + using namespace std; typedef double score_t; @@ -35,6 +37,7 @@ class Hyperedge { bool is_marked(); string s(); + MSGPACK_DEFINE(head, tails, score, f, mark, arity_); }; @@ -49,6 +52,8 @@ class Node { vector<Hyperedge*> incoming; string s(); + + MSGPACK_DEFINE(id, symbol, left, right, score, outgoing, incoming); }; @@ -64,6 +69,8 @@ class Hypergraph { void reset(); string s(); string json_s(); + + MSGPACK_DEFINE(nodes, edges, arity_, nodes_by_id); }; vector<Node*> topological_sort(vector<Node*>& nodes); diff --git a/fast/hypergraph.o b/fast/hypergraph.o Binary files differdeleted file mode 100644 index 8fab348..0000000 --- a/fast/hypergraph.o +++ /dev/null diff --git a/fast/semiring.hh b/fast/semiring.hh index 1e40f48..2be19ea 100644 --- a/fast/semiring.hh +++ b/fast/semiring.hh @@ -1,5 +1,6 @@ #ifndef SEMIRING_HH #define SEMIRING_HH +//#pragma once template<typename T> |