소스 검색

[TMP BORKEN][refactor] made LevenshteinMatrice_base interface

B Thibault 9 년 전
부모
커밋
f3c0e4a9c3
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  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>