X-Git-Url: http://git.megacz.com/?p=sbp.git;a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fsbp%2FForest.java;h=e39a8f676de7ad4a27ca1f174272d5568b443d81;hp=cf64ed272a57322dd12473acf5c44049a07bf920;hb=5fa948c7db9597445448194418537a1c74f46a27;hpb=dc9bb3a45ed306e2e35549076842b3e74efecb48 diff --git a/src/edu/berkeley/sbp/Forest.java b/src/edu/berkeley/sbp/Forest.java index cf64ed2..e39a8f6 100644 --- a/src/edu/berkeley/sbp/Forest.java +++ b/src/edu/berkeley/sbp/Forest.java @@ -1,4 +1,4 @@ -// Copyright 2006 all rights reserved; see LICENSE file for BSD-style license +// Copyright 2006-2007 all rights reserved; see LICENSE file for BSD-style license package edu.berkeley.sbp; import edu.berkeley.sbp.util.*; @@ -28,15 +28,13 @@ public abstract class Forest implements GraphViz.ToGraphViz { // Package-Private ////////////////////////////////////////////////////////////////////////////// - static Forest create(Input.Region region, NodeType head, Forest[] children, boolean lift) { + 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); + 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); @@ -52,24 +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[] lifts; public Input.Region getRegion() { return location; } - private One(Input.Region loc, NodeType head, Forest[] children, boolean lift) { + 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); + return new Tree(location, head, ret, lifts); } void gather(HashSet> hf) { @@ -83,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)); + ht.add(new Tree(location, head, ta, lifts)); } else { HashSet> ht2 = new HashSet>(); children[i].expand(ht2, ignore, bogus); @@ -112,7 +110,7 @@ public abstract class Forest implements GraphViz.ToGraphViz { if (edges) return; edges = true; for(int i=0; i