Skip to content
Snippets Groups Projects
Commit ee944a3e authored by Irina Shushkova's avatar Irina Shushkova Committed by Tomáš Pecka
Browse files

Registration to aql2 added

parent 62d01d49
No related branches found
No related tags found
1 merge request!96Bp shushiri rebase
......@@ -3,3 +3,14 @@
//
 
#include "ApproximateCoversComputation.h"
#include <registration/AlgoRegistration.hpp>
namespace stringology{
namespace cover{
//auto ApproximateCoversLinearString = registration::AbstractRegister < ApproximateCoversComputation, ext::map < ext::vector < DefaultSymbolType >, unsigned int >, const string::LinearString < > &, unsigned > ( ApproximateCoversComputation::compute );
} /* namespace cover */
} /* namespace stringology */
......@@ -3,3 +3,14 @@
//
 
#include "ExactCoversComputation.h"
#include <registration/AlgoRegistration.hpp>
namespace stringology{
namespace cover{
auto ExactCoversLinearString = registration::AbstractRegister < ExactCoversComputation, ext::set < string::LinearString < DefaultSymbolType > >, const string::LinearString < > & > (ExactCoversComputation::compute);
} /* namespace cover */
} /* namespace stringology */
\ No newline at end of file
......@@ -3,3 +3,14 @@
//
 
#include "RestrictedApproximateCoversComputation.h"
#include <registration/AlgoRegistration.hpp>
namespace stringology{
namespace cover{
//auto RestictedApproximateCoversLinearString = registration::AbstractRegister < RestrictedApproximateCoversComputation, ext::map < ext::vector < DefaultSymbolType >, unsigned int >, const string::LinearString < > &, unsigned > (RestrictedApproximateCoversComputation::compute);
} /* namespace cover */
} /* namespace stringology */
\ No newline at end of file
......@@ -3,3 +3,14 @@
//
 
#include "NondeterministicApproximateSuffixAutomatonForHammingDistance.h"
#include <registration/AlgoRegistration.hpp>
namespace stringology{
namespace indexing{
auto NDApproximateSuffixAutomaton = registration::AbstractRegister < NondeterministicApproximateSuffixAutomatonForHammingDistance, automaton::EpsilonNFA < DefaultSymbolType, DefaultEpsilonType, ext::pair< unsigned int, unsigned int > >, const string::LinearString < > &, unsigned > ( NondeterministicApproximateSuffixAutomatonForHammingDistance::construct );
} /* namespace indexing */
} /* namespace stringology */
\ No newline at end of file
......@@ -104,6 +104,8 @@ public:
abstraction::ValuePrinterRegistry::registerValuePrinter < ext::set < unsigned > > ( );
abstraction::ValuePrinterRegistry::registerValuePrinter < ext::vector < int > > ( );
 
//abstraction::ValuePrinterRegistry::registerValuePrinter < ext::set < string::LinearString > > ( );
abstraction::ValuePrinterRegistry::registerValuePrinter < ext::vector < object::Object > > ( );
abstraction::ValuePrinterRegistry::registerValuePrinter < ext::vector < unsigned > > ( );
abstraction::ValuePrinterRegistry::registerValuePrinter < ext::vector < ext::pair < object::Object, object::Object > > > ( );
......
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