You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
aandriasyan
changed the title
Both Skew and SAIS crashesh on simple data set. Only Naive works. See test code
Both Skew and SAIS crashes on simple data set. Only Naive works. See test code
Mar 21, 2023
#include "Skew.h"
#include "SAIS.h"
#include "Naive.h"
int main()
{
std::string data;
data.reserve(2 * 256);
// Naive s;
Skew s;
// SAIS s;
s.addString(data);
s.makeSuffixArray();
s.printSuffixArray();
std::cout << std::endl;
}
The text was updated successfully, but these errors were encountered: