Skip to content

Commit

Permalink
This was just a silly mistake, fixed it now.
Browse files Browse the repository at this point in the history
  • Loading branch information
faassen committed Jan 28, 2025
1 parent c8f6e25 commit 9810c06
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions benches/locate.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use fm_index::suffix_array::HasPosition;
use fm_index::{FMIndexBackend, RLFMIndex, SearchIndexBuilder};
use fm_index::{FMIndexBackend, SearchIndexBuilder};

use criterion::{criterion_group, criterion_main};
use criterion::{BatchSize, BenchmarkId, Criterion, Throughput};
Expand Down Expand Up @@ -33,7 +33,8 @@ fn prepare_rlfmindex(
(
SearchIndexBuilder::with_converter(converter)
.sampling_level(l)
.run_length_encoding(),
.run_length_encoding()
.build(text),
patterns,
)
}
Expand Down

0 comments on commit 9810c06

Please sign in to comment.