Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'hypergraph-prototype/attempt1/org/statmt/hg4/SearchStrategy.java')
-rw-r--r--hypergraph-prototype/attempt1/org/statmt/hg4/SearchStrategy.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/hypergraph-prototype/attempt1/org/statmt/hg4/SearchStrategy.java b/hypergraph-prototype/attempt1/org/statmt/hg4/SearchStrategy.java
new file mode 100644
index 000000000..ed692f735
--- /dev/null
+++ b/hypergraph-prototype/attempt1/org/statmt/hg4/SearchStrategy.java
@@ -0,0 +1,22 @@
+package org.statmt.hg4;
+
+import java.util.Collection;
+import java.util.Map;
+
+public abstract class SearchStrategy {
+
+ public abstract Collection<Vertex> retrieveCombinableVertices(
+ VertexSignature signatureOfVertex,
+ Hypergraph derivationGraph,
+ Phrase sentence);
+
+ public abstract VertexState applyFundamentalRule(
+ Hyperarc ha,
+ Map<Vertex, VertexState> v2s);
+
+ public abstract void generateTraversals(
+ VertexGroup activeEdges,
+ Collection<Vertex> compatibleKnownThings,
+ ExplorationAgenda agenda);
+
+}