Skip to content
Snippets Groups Projects
Commit 73ed8bea authored by Jan Trávníček's avatar Jan Trávníček
Browse files

remove strange include from sources

parent a05c220a
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -24,8 +24,6 @@ public: ...@@ -24,8 +24,6 @@ public:
   
}; };
   
#include <iostream>
template <class SymbolType> template <class SymbolType>
ext::vector<ext::vector<unsigned int>> HammingDynamicProgramming::compute_table(const string::LinearString<SymbolType> & text, const string::LinearString<SymbolType> & pattern, unsigned int errors) { ext::vector<ext::vector<unsigned int>> HammingDynamicProgramming::compute_table(const string::LinearString<SymbolType> & text, const string::LinearString<SymbolType> & pattern, unsigned int errors) {
ext::vector< ext::vector <unsigned int> > table = ext::vector< ext::vector <unsigned int> > table =
......
...@@ -26,8 +26,6 @@ public: ...@@ -26,8 +26,6 @@ public:
static ext::set<unsigned int> search(const string::LinearString<SymbolType> & text, const string::LinearString<SymbolType> & pattern, unsigned int errors); static ext::set<unsigned int> search(const string::LinearString<SymbolType> & text, const string::LinearString<SymbolType> & pattern, unsigned int errors);
}; };
   
#include <iostream>
template <class SymbolType> template <class SymbolType>
ext::vector<ext::vector<unsigned int>> LevenshteinDynamicProgramming::compute_table(const string::LinearString<SymbolType> & text, const string::LinearString<SymbolType> & pattern) { ext::vector<ext::vector<unsigned int>> LevenshteinDynamicProgramming::compute_table(const string::LinearString<SymbolType> & text, const string::LinearString<SymbolType> & pattern) {
ext::vector< ext::vector <unsigned int> > table = ext::vector< ext::vector <unsigned int> > table =
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment