summaryrefslogtreecommitdiff
path: root/extractor/matching_comparator.h
diff options
context:
space:
mode:
authorPaul Baltescu <pauldb89@gmail.com>2013-02-22 11:59:17 +0000
committerPaul Baltescu <pauldb89@gmail.com>2013-02-22 11:59:17 +0000
commitd69c289e172562039bcbe987657280332ab6315e (patch)
treecc67d97bf802101d981cfacadb1cea80472aa107 /extractor/matching_comparator.h
parenta21835881984ba90f303c7b1681d295678cb7131 (diff)
Remove original version of the intersector.
Diffstat (limited to 'extractor/matching_comparator.h')
-rw-r--r--extractor/matching_comparator.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/extractor/matching_comparator.h b/extractor/matching_comparator.h
deleted file mode 100644
index 6e1bb487..00000000
--- a/extractor/matching_comparator.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef _MATCHING_COMPARATOR_H_
-#define _MATCHING_COMPARATOR_H_
-
-#include <memory>
-
-using namespace std;
-
-class Vocabulary;
-class Matching;
-
-class MatchingComparator {
- public:
- MatchingComparator(int min_gap_size, int max_rule_span);
-
- int Compare(const Matching& left, const Matching& right,
- int last_chunk_len, bool offset) const;
-
- private:
- int min_gap_size;
- int max_rule_span;
-};
-
-#endif