make stress read-lookback optional

This commit is contained in:
T Jake Luciani 2015-03-04 16:36:33 -05:00
parent 213b066957
commit 4176f9e78c
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ public class SettingsPopulation implements Serializable
private static final class SequentialOptions extends GenerateOptions
{
final OptionSimple populate;
final OptionDistribution lookback = new OptionDistribution("read-lookback=", null, "Select read seeds from the recently visited write seeds");
final OptionDistribution lookback = new OptionDistribution("read-lookback=", null, "Select read seeds from the recently visited write seeds", false);
final OptionSimple nowrap = new OptionSimple("no-wrap", "", null, "Terminate the stress test once all seeds in the range have been visited", false);
public SequentialOptions(String defaultLimit)