Browse Source

[TMP BORKEN][refactor] made LevenshteinMatrice_base interface

B Thibault 9 years ago
parent
commit
f3c0e4a9c3
1 changed files with 1 additions and 0 deletions
  1. 1 0
      include/levenshteinMatrice.hpp

+ 1 - 0
include/levenshteinMatrice.hpp

@@ -14,6 +14,7 @@ class LevenshteinMatrice_base
 {
     public:
         virtual ~LevenshteinMatrice_base() {}
+        virtual void prune() =0;
 };
 
 template<typename T>