synchro with modifications from the cvs root
This commit is contained in:
parent
4222306aa1
commit
5cf6b33727
|
@ -75,6 +75,3 @@ string GetString(const H::GenericDtrAccess&);
|
||||||
|
|
||||||
|
|
||||||
#endif // HURRICANE_GENERICDTRACCESS
|
#endif // HURRICANE_GENERICDTRACCESS
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -20,11 +20,11 @@ namespace Hurricane {
|
||||||
// Utilitarians
|
// Utilitarians
|
||||||
// ****************************************************************************************************
|
// ****************************************************************************************************
|
||||||
|
|
||||||
const long& GetRdsUnit();
|
extern const long& GetRdsUnit();
|
||||||
|
|
||||||
const long& GetRdsPhysicalGrid();
|
extern const long& GetRdsPhysicalGrid();
|
||||||
|
|
||||||
const long& GetRdsLambda();
|
extern const long& GetRdsLambda();
|
||||||
|
|
||||||
// ------------------------------------------------------------------------
|
// ------------------------------------------------------------------------
|
||||||
// Function : "ConvertRealToRdsUnit(const double&)".
|
// Function : "ConvertRealToRdsUnit(const double&)".
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
// Authors-Tag
|
// Authors-Tag
|
||||||
// ===================================================================
|
// ===================================================================
|
||||||
//
|
//
|
||||||
// $Id: DeepNet.cpp,v 1.3 2007/06/27 21:13:25 jpc Exp $
|
// $Id: DeepNet.cpp,v 1.4 2008/02/15 12:26:38 dosfin Exp $
|
||||||
//
|
//
|
||||||
// x-----------------------------------------------------------------x
|
// x-----------------------------------------------------------------x
|
||||||
// | |
|
// | |
|
||||||
|
@ -172,4 +172,20 @@ size_t DeepNet::_CreateRoutingPads ( bool buildRings )
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// -------------------------------------------------------------------
|
||||||
|
//
|
||||||
|
|
||||||
|
Net* GetDeepNet(HyperNet& hypernet)
|
||||||
|
// ********************************
|
||||||
|
{
|
||||||
|
Occurrence rootNetOccurrence = GetHyperNetRootNetOccurrence ( hypernet.GetNetOccurrence() );
|
||||||
|
|
||||||
|
//if ( rootNetOccurrence.GetMasterCell()->IsFlattenLeaf() ) return NULL;
|
||||||
|
//if ( rootNetOccurrence.GetPath().IsEmpty() ) return NULL;
|
||||||
|
|
||||||
|
return rootNetOccurrence.GetOwnerCell()->GetNet(rootNetOccurrence.GetName());
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
} // End of Hurricane namespace.
|
} // End of Hurricane namespace.
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
// Authors-Tag
|
// Authors-Tag
|
||||||
// ===================================================================
|
// ===================================================================
|
||||||
//
|
//
|
||||||
// $Id: DeepNet.h,v 1.3 2007/06/27 21:13:25 jpc Exp $
|
// $Id: DeepNet.h,v 1.4 2008/02/15 12:26:38 dosfin Exp $
|
||||||
//
|
//
|
||||||
// x-----------------------------------------------------------------x
|
// x-----------------------------------------------------------------x
|
||||||
// | |
|
// | |
|
||||||
|
@ -99,6 +99,8 @@ namespace Hurricane {
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Net* GetDeepNet(HyperNet& hyperNet);
|
||||||
|
|
||||||
|
|
||||||
} // End of Hurricane namespace.
|
} // End of Hurricane namespace.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue