Default to only showing final placement (update is slow)
This commit is contained in:
parent
2bc2e4a988
commit
3d43a25bb4
|
@ -35,7 +35,7 @@ param.addValue( 'High' , 3 )
|
|||
param.addValue( 'Extreme' , 4 )
|
||||
|
||||
param = Cfg.getParamEnumerate( 'etesian.graphics' )
|
||||
param.setInt( 2 )
|
||||
param.setInt( 3 )
|
||||
param.addValue( 'Show every step' , 1 )
|
||||
param.addValue( 'Show lower bound', 2 )
|
||||
param.addValue( 'Show result only', 3 )
|
||||
|
|
|
@ -56,7 +56,7 @@ namespace Etesian {
|
|||
, _placeEffort ( static_cast<Effort>
|
||||
(Cfg::getParamEnumerate ("etesian.effort" , Standard )->asInt()) )
|
||||
, _updateConf ( static_cast<GraphicUpdate>
|
||||
(Cfg::getParamEnumerate ("etesian.graphics" , LowerBound )->asInt()) )
|
||||
(Cfg::getParamEnumerate ("etesian.graphics" , FinalOnly )->asInt()) )
|
||||
, _spreadingConf ( Cfg::getParamBool ("etesian.uniformDensity" , false )->asBool()? ForceUniform : MaxDensity )
|
||||
, _routingDriven ( Cfg::getParamBool ("etesian.routingDriven" , false )->asBool())
|
||||
, _spaceMargin ( Cfg::getParamPercentage("etesian.spaceMargin" , 5.0)->asDouble() )
|
||||
|
|
Loading…
Reference in New Issue