--no-immediate-elect requires --surplus-order by_size
This commit is contained in:
parent
566cdeb185
commit
f187975601
@ -266,6 +266,10 @@ impl STVOptions {
|
|||||||
return Err(STVError::InvalidOptions("--subtract-nontransferable requires --transferable-only"));
|
return Err(STVError::InvalidOptions("--subtract-nontransferable requires --transferable-only"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if !self.immediate_elect && self.surplus_order != SurplusOrder::BySize {
|
||||||
|
// Invalid because there is no other metric to determine which surplus to distribute
|
||||||
|
return Err(STVError::InvalidOptions("--no-immediate-elect requires --surplus-order by_size"));
|
||||||
|
}
|
||||||
if self.min_threshold != "0" && self.defer_surpluses {
|
if self.min_threshold != "0" && self.defer_surpluses {
|
||||||
// TODO: NYI
|
// TODO: NYI
|
||||||
return Err(STVError::InvalidOptions("--min-threshold is incompatible with --defer-surpluses (not yet implemented)"));
|
return Err(STVError::InvalidOptions("--min-threshold is incompatible with --defer-surpluses (not yet implemented)"));
|
||||||
|
Loading…
Reference in New Issue
Block a user