* ./katabatic, ./kite:

- Bug: In Configuration, discrepencies of parameter types.
This commit is contained in:
Jean-Paul Chaput 2010-06-22 13:58:55 +00:00
parent 548257c1d1
commit ca836e6673
2 changed files with 1 additions and 3 deletions

View File

@ -68,7 +68,7 @@ namespace Katabatic {
, _rg (NULL)
, _extensionCap (DbU::lambda(1.5))
, _saturateRatio (Cfg::getParamPercentage("katabatic.saturateRatio",80.0)->asDouble())
, _globalThreshold (DbU::lambda(Cfg::getParamDouble("katabatic.globalLengthThreshold",29*50.0)->asDouble())) // Ugly: direct uses of SxLib gauge.
, _globalThreshold (DbU::lambda((double)Cfg::getParamInt("katabatic.globalLengthThreshold",29*50)->asInt())) // Ugly: direct uses of SxLib gauge.
, _allowedDepth (0)
{
if ( rg == NULL ) rg = AllianceFramework::get()->getRoutingGauge();

View File

@ -223,8 +223,6 @@ namespace Katabatic {
, _gcellGrid (NULL)
, _routingNets ()
{
cerr << "KatabaticEngine::_configuration: " << (void*)_configuration << endl;
addMeasure<size_t> ( cell, "Gates"
, AllianceFramework::getInstancesCount(cell,AllianceFramework::IgnoreFeeds
|AllianceFramework::Recursive) );