private void optionConsistent(RandomizeNetworkDialog dialog) {
int seed = dialog.getSeedValue().getValue();
double min = dialog.getConstLow().getValue();
double max = dialog.getConstHigh().getValue();
ConsistentRandomizer c = new ConsistentRandomizer(min, max, seed);
c.randomize(this.method);
setDirty(true);
}
private void optionPerturb(RandomizeNetworkDialog dialog) {
double percent = dialog.getPerturbPercent().getValue();