Skip to content

Commit

Permalink
Changed flesnet pattern generator configuration to produce random pat…
Browse files Browse the repository at this point in the history
…tern.
  • Loading branch information
oTTer-Chief committed Nov 4, 2016
1 parent afe54a9 commit d282991
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/flesnet/Application.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,17 +93,17 @@ Application::Application(Parameters const& par,
if (false) {
data_sources_.push_back(
std::unique_ptr<InputBufferReadInterface>(
new FlibPatternGenerator(par.in_data_buffer_size_exp(),
par.in_desc_buffer_size_exp(),
index,
par.typical_content_size())));
new FlibPatternGenerator(
par.in_data_buffer_size_exp(),
par.in_desc_buffer_size_exp(), index,
par.typical_content_size(), true, true)));
} else {
data_sources_.push_back(
std::unique_ptr<InputBufferReadInterface>(
new EmbeddedPatternGenerator(
par.in_data_buffer_size_exp(),
par.in_desc_buffer_size_exp(), index,
par.typical_content_size())));
par.typical_content_size(), true, true)));
}
}

Expand Down

0 comments on commit d282991

Please sign in to comment.