MCPcopy Create free account
hub / github.com/comaps/comaps / RevRevBWT

Function RevRevBWT

libs/coding/coding_tests/bwt_tests.cpp:14–22  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12namespace
13{
14string RevRevBWT(string const & s)
15{
16 string r;
17 auto const start = BWT(s, r);
18
19 string rr;
20 RevBWT(start, r, rr);
21 return rr;
22}
23
24UNIT_TEST(BWT_Smoke)
25{

Callers 1

UNIT_TESTFunction · 0.85

Calls 2

BWTFunction · 0.85
RevBWTFunction · 0.85

Tested by

no test coverage detected