X-Git-Url: http://git.megacz.com/?p=sbp.git;a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fsbp%2FForest.java;h=795f3a04151737daea1c9400dddee08e605aa984;hp=34982bd11d935d2e238e059e29c1eb305af18ae4;hb=584cef55d8811e3215858fde22e708d2a3d1cf70;hpb=eeb3a8b49bdbf753b5a70734fbae7f2c1ac06702 diff --git a/src/edu/berkeley/sbp/Forest.java b/src/edu/berkeley/sbp/Forest.java index 34982bd..795f3a0 100644 --- a/src/edu/berkeley/sbp/Forest.java +++ b/src/edu/berkeley/sbp/Forest.java @@ -28,22 +28,13 @@ public abstract class Forest implements GraphViz.ToGraphViz { // Package-Private ////////////////////////////////////////////////////////////////////////////// - static Forest create(Input.Region region, NodeType head, Forest[] children, - boolean lift) { - if (region == null) throw new RuntimeException("invoked Forest.create(region=null) -- this should never happen"); - return new One(region, head, children, lift); - } - - static Forest create(Input.Region region, NodeType head, Forest[] children, - boolean lift, boolean liftLeft) { + public static Forest create(Input.Region region, NodeType head, Forest[] children) { + return create(region, head, children, new boolean[children==null ? 0 : children.length]); } + public static Forest create(Input.Region region, NodeType head, Forest[] children, boolean[] lifts) { if (region == null) throw new RuntimeException("invoked Forest.create(region=null) -- this should never happen"); - return new One(region, head, children, lift, liftLeft); + return new One(region, head, children, lifts); } - /** create a new forest */ - public static Forest create(Input.Region region, NodeType head, Forest[] children) { - return Forest.create(region, head, children, false); } - abstract void expand(HashSet> ht, HashSet> ignore, Tree bogus); abstract void gather(HashSet> ignore); abstract void edges(GraphViz.Node n); @@ -59,29 +50,24 @@ public abstract class Forest implements GraphViz.ToGraphViz { private final Forest[] children; /** if true, the last child's children are considered children of this node */ - private final boolean lift; - private final boolean liftLeft; + private final boolean[] lifts; public Input.Region getRegion() { return location; } - private One(Input.Region loc, NodeType head, Forest[] children, boolean lift) { - this(loc, head, children, lift, false); - } - private One(Input.Region loc, NodeType head, Forest[] children, boolean lift, boolean liftLeft) { + private One(Input.Region loc, NodeType head, Forest[] children, boolean[] lifts) { this.location = loc; this.head = head; if (head==null) throw new RuntimeException("invoked Forest.create(,null,,,) -- this should never happen"); this.children = children==null ? emptyForestArray : new Forest[children.length]; if (children != null) System.arraycopy(children, 0, this.children, 0, children.length); if (children != null) for(int i=0; i expand1() throws Ambiguous { Tree[] ret = new Tree[children.length]; for(int i=0; i(location, head, ret, lift, liftLeft); + return new Tree(location, head, ret, lifts); } void gather(HashSet> hf) { @@ -95,7 +81,7 @@ public abstract class Forest implements GraphViz.ToGraphViz { private void expand(final int i, Tree[] ta, HashSet> ht, HashSet> ignore, Tree bogus) { if (i==children.length) { - ht.add(new Tree(location, head, ta, lift, liftLeft)); + ht.add(new Tree(location, head, ta, lifts)); } else { HashSet> ht2 = new HashSet>(); children[i].expand(ht2, ignore, bogus); @@ -124,7 +110,7 @@ public abstract class Forest implements GraphViz.ToGraphViz { if (edges) return; edges = true; for(int i=0; i