Algorithms Library Toolkit
A toolkit for algorithms, especially for algorithms on formal languages
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Concepts
RestrictedApproximateSeedComputation.h
Go to the documentation of this file.
1
6#pragma once
7
8
9#include <alib/set>
10#include <alib/pair>
11#include <string/LinearString.h>
13
14
15namespace stringology::seed {
16
23public:
32 template<class SymbolType>
34 return stringology::seed::ApproximateSeedComputation::compute( pattern, distance, true );
35 }
36};
37
38}
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: RestrictedApproximateSeedComputation.h:22
static ext::set< ext::pair< string::LinearString< SymbolType >, unsigned > > compute(const string::LinearString< SymbolType > &pattern, unsigned distance)
Definition: RestrictedApproximateSeedComputation.h:33
Definition: ApproximateSeedComputation.cpp:10