<> <> <> <> <<>> DIRECTORY Core, CStitching; Jasmine: CEDAR DEFINITIONS = BEGIN <> <> <<>> <<>> <> ROPE: TYPE = Core.ROPE; JasmineObject: TYPE = {m1Wire, m2Wire, nDifWire, nDifCont, nTran, nTranL, pDifWire, pDifCont, polyCont, polyWire, pTran, pTranL, Via}; JasmineObjectInLayer: TYPE = REF JasmineObjectRec; JasmineObjectRec: TYPE = RECORD[ object: JasmineObject, perim: INT _ 0, area: INT _ 0 ]; <> CornerStitchWire: PROC [root: Core.CellType, wire: Core.Wire] RETURNS [tesselation: CStitching.Tesselation]; EstablishTopography: PROC [tesselation: CStitching.Tesselation]; END.