Algorithms Library Toolkit
A toolkit for algorithms, especially for algorithms on formal languages
ExactSeedComputation.h
Go to the documentation of this file.
1
6#pragma once
7
8#include <alib/set>
9#include <alib/pair>
10#include <string/LinearString.h>
12
13namespace stringology::seed {
14
21public:
29 template<class SymbolType>
32 }
33};
34
35}
Definition: set.hpp:44
Linear string.
Definition: LinearString.h:57
static ext::set< ext::pair< string::LinearString< SymbolType >, unsigned > > compute(const string::LinearString< SymbolType > &pattern, unsigned distance, bool restricted)
Definition: ApproximateSeedComputation.h:259
Definition: ExactSeedComputation.h:20
static ext::set< ext::pair< string::LinearString< SymbolType >, unsigned > > compute(const string::LinearString< SymbolType > &pattern)
Definition: ExactSeedComputation.h:30
Definition: ApproximateSeedComputation.cpp:10