Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
sais-lite-lcp
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
extractor
sais-lite-lcp
Commits
da04d4b4
Commit
da04d4b4
authored
May 08, 2015
by
kurpicz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed commandline status output for small inputs
parent
51765890
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
2 deletions
+0
-2
sais.c
sais.c
+0
-2
No files found.
sais.c
View file @
da04d4b4
...
...
@@ -752,7 +752,6 @@ static sais_index_type sais_main(const void *T, sais_index_type *SA,
}
// endif (name < m)
else
if
(
level0
)
{
// this should only occur for small or pathetic inputs
// all names unique => computing LCP for *S naively takes linear time
printf
(
"*** computing LCP naively..."
);
j
=
SA
[
0
];
// j = SA[i-1] in the following loop
for
(
i
=
1
;
i
<
m
;
++
i
)
{
p
=
0
;
...
...
@@ -760,7 +759,6 @@ static sais_index_type sais_main(const void *T, sais_index_type *SA,
LCP
[
i
]
=
p
;
j
=
SA
[
i
];
}
printf
(
"done.
\n
"
);
}
/* stage 3: induce the result for the original problem */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment