SCExprGlobalRoute.mesa
Copyright Ó 1987 by Xerox Corporation. All rights reserved.
Jason Cong, August 22, 1987 2:04:44 pm PDT
Interface for new global routing algorithms based on M.S.T. approaches.
DIRECTORY
SC,
SCPrivate;
SCExprGlobalRoute: CEDAR DEFINITIONS =
BEGIN
GlobalRoute: PROCEDURE[handle: SC.Handle, nets: SCPrivate.NetList];
Complete global routing for the nets specified in the input net list.
UndoGlobalRoute: PROCEDURE[handle: SC.Handle, nets: SCPrivate.NetList];
Undo global routing for the nets specified in the input net list.
GlobalRouteAllNets: PROCEDURE[handle: SC.Handle];
Do global routing for all nets.
DetailRoute: PROC [handle: SC.Handle] RETURNS [result: SC.Result];
-- Detail Router that works with GlobalRoute
END.