From f93c9f64cf325d93a805f04d1933e967249c9410 Mon Sep 17 00:00:00 2001 From: Jan Travnicek <Jan.Travnicek@fit.cvut.cz> Date: Sun, 5 Feb 2017 20:28:12 +0100 Subject: [PATCH] add TODO --- alib2data/src/indexes/SuffixArray.h | 1 + 1 file changed, 1 insertion(+) diff --git a/alib2data/src/indexes/SuffixArray.h b/alib2data/src/indexes/SuffixArray.h index a0e5f5a5d4..48d4cdee34 100644 --- a/alib2data/src/indexes/SuffixArray.h +++ b/alib2data/src/indexes/SuffixArray.h @@ -119,6 +119,7 @@ namespace indexes { template < class SymbolType > SuffixArray < SymbolType >::SuffixArray ( std::set < SymbolType > alphabet, std::vector < unsigned > data, std::vector < SymbolType > string ) : std::Components < SuffixArray, SymbolType, std::tuple < GeneralAlphabet >, std::tuple < > > ( std::make_tuple ( std::move ( alphabet ) ), std::tuple < > ( ) ), m_data ( std::move ( data ) ), m_string ( std::move ( string ) ) { + // TODO check validity of the string like in LinearString } template < class SymbolType > -- GitLab