Skip to content
Snippets Groups Projects
Commit 5255d843 authored by Jan Trávníček's avatar Jan Trávníček
Browse files

fix may be uninitialized warning

parent 816f438f
No related branches found
No related tags found
Loading
......@@ -194,7 +194,7 @@ class ExperimentalCompactSuffixAutomatonConstruct {
int oldr = nil;
 
int sc = nil; // v článku není s' inicializované, ale je potřeba to na něco inicializovat, protože níže dochází k porovnávní
int r;
int r = -1; // not initialized in the paper. The first comparison of sc must fail and therefore variable r will neverbe read with its initial value
while(!check_end_point(s,k,p-1,c)) {
if(k<= p-1) {
if(sc == extension(s,k,p)) {
......
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