MintLayout.mesa
Copyright © 1986 by Xerox Corporation. All rights reserved.
Christian LeCocq July 25, 1986 9:56:08 am PDT
DIRECTORY
Core, Mint, Rope;
MintLayout: CEDAR DEFINITIONS
~ BEGIN OPEN Mint;
InputData: PROC [ct: Core.CellType, layout: BOOLEANTRUE] RETURNS [circuit: Circuit];
Builds the handle of Mint data from the Core structures.
BuildNodeList: PROC [name: Rope.ROPE, oldList: NodeList, circuit: Circuit] RETURNS [newList: NodeList];
Adds a Node to a list of Nodes from its name, without creating a new Node if the Node is not found in the circuit.
PrepareSets: PROC [circuit: Circuit, fixedVList: NodeList];
Cuts the Mint flat circuit into sets and store them by type in the circuit library.
OutputResults: PROC [library: Library];
Print the statistics on the number and types of sets created by PrepareSets.
END.