Default to only showing final placement (update is slow)

This commit is contained in:
Gabriel Gouvine 2023-06-06 13:58:49 +02:00
parent 2bc2e4a988
commit 3d43a25bb4
2 changed files with 2 additions and 2 deletions

View File

@ -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 )

View File

@ -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() )