-- File: DisjointSplitDefs.mesa
-- Written by Martin Newell/Dan Fitzpatrick February 1981
-- Last edited: April 24, 1981 6:14 PM

DIRECTORY

DisjointTypes: FROM "DisjointTypes" USING [Symbol];

DisjointSplitDefs
: DEFINITIONS =
BEGIN
OPEN DisjointTypes;

Split: PUBLIC PROCEDURE[symbol: Symbol];
--This procedure takes a list of PrimInstances, pi, and a list of windows,
-- windows, that mask pi, and generates a list of
-- disjoint cells, DisCell, within the window.

END.