X-Git-Url: http://git.megacz.com/?p=sbp.git;a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fsbp%2FForest.java;h=636ad4f08af8c101d3db45b78628422ec5fcfe02;hp=cf64ed272a57322dd12473acf5c44049a07bf920;hb=24219bdf084b45273e869cd19382d1640b396566;hpb=dc9bb3a45ed306e2e35549076842b3e74efecb48 diff --git a/src/edu/berkeley/sbp/Forest.java b/src/edu/berkeley/sbp/Forest.java index cf64ed2..636ad4f 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,18 +28,16 @@ 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); + abstract void edges(GraphViz.StateNode n); boolean ambiguous() { return false; } // One ////////////////////////////////////////////////////////////////////////////// @@ -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); @@ -99,20 +97,20 @@ public abstract class Forest implements GraphViz.ToGraphViz { public boolean isTransparent() { return false; } public boolean isHidden() { return false; } - public GraphViz.Node toGraphViz(GraphViz gv) { + public GraphViz.StateNode toGraphViz(GraphViz gv) { if (gv.hasNode(this)) return gv.createNode(this); - GraphViz.Node n = gv.createNode(this); + GraphViz.StateNode n = gv.createNode(this); n.label = headToString()==null?"":headToString(); n.directed = true; edges(n); return n; } boolean edges = false; // FIXME ?? - public void edges(GraphViz.Node n) { + public void edges(GraphViz.StateNode n) { if (edges) return; edges = true; for(int i=0; i implements GraphViz.ToGraphViz { public boolean isTransparent() { return hp.size()==1; } public boolean isHidden() { return hp.size()==0; } - public void edges(GraphViz.Node n) { + public void edges(GraphViz.StateNode n) { if (hp.size()==1) { hp.iterator().next().edges(n); return; } for(Forest f : hp) f.edges(n); } - public GraphViz.Node toGraphViz(GraphViz gv) { + public GraphViz.StateNode toGraphViz(GraphViz gv) { if (hp.size()==1) return hp.iterator().next().toGraphViz(gv); if (gv.hasNode(this)) return gv.createNode(this); - GraphViz.Node n = gv.createNode(this); + GraphViz.StateNode n = gv.createNode(this); n.label = "?"; n.color = "red"; for(Forest f : hp) n.edge(f, null);