Explorar el Código

[TMP BORKEN][refactor] made LevenshteinMatrice_base interface

B Thibault hace 9 años
padre
commit
f3c0e4a9c3
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  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>