X-Git-Url: http://git.megacz.com/?p=sbp.git;a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fsbp%2FForest.java;h=937a229420e2f26ea5d6489258aa41f9a773b365;hp=9dabf6064cfc4649667a5f700ce41d83e0b46292;hb=acfe58223b9a0f78e64a14a1ca5d5998626ee3fe;hpb=eda544585c2304faa82d249c4744fd5cecbf9211 diff --git a/src/edu/berkeley/sbp/Forest.java b/src/edu/berkeley/sbp/Forest.java index 9dabf60..937a229 100644 --- a/src/edu/berkeley/sbp/Forest.java +++ b/src/edu/berkeley/sbp/Forest.java @@ -16,6 +16,42 @@ public abstract class Forest /*extends PrintableTree>*/ private final int idx = master_idx++; public int toInt() { return idx; } + public abstract void expand(TaskList tl, HashSet> ht); + public abstract void gather(TaskList tl, HashSet>[] ht, HashSet> target); + + public static class TaskList extends ArrayList { + public interface Task { + public void perform(); + } + public class ExpandTask implements Task { + private Forest f; + private HashSet hs; + public ExpandTask(Forest f, HashSet hs) { this.f = f; this.hs = hs; } + public void perform() { f.expand(TaskList.this, hs); } + } + public class GatherTask implements Task { + private Forest f; + private HashSet[] ht; + private HashSet hs; + public GatherTask(Forest f, HashSet>[] ht, HashSet> hs) { this.f = f; this.hs = hs; this.ht = ht;} + public void perform() { f.gather(TaskList.this, ht, hs); } + } + public void expand(Forest f, HashSet hs) { + add(new ExpandTask(f, hs)); + } + public void gather(Forest f, HashSet[] ht, HashSet hs) { + add(new GatherTask(f, ht, hs)); + } + public void run() { + while(true) { + if (isEmpty()) return; + Task task = get(size()-1); + remove(size()-1); + task.perform(); + } + } + } + /** assume that this forest contains exactly one tree and return it; otherwise throw an exception */ public final Tree expand1() throws Ambiguous, ParseFailed { try { @@ -27,8 +63,15 @@ public abstract class Forest /*extends PrintableTree>*/ /** expand this forest into a set of trees */ public HashSet> expand(boolean toss) { + /* final HashSetTreeConsumer ret = new HashSetTreeConsumer(); visit(new TreeMaker2(toss, ret), null, null); + */ + TaskList tl = new TaskList(); + HashSet> ret = new HashSet>(); + tl.expand(this, ret); + tl.run(); + if (toss && ret.size() > 1) throw new InnerAmbiguous(this); return ret; } @@ -71,7 +114,7 @@ public abstract class Forest /*extends PrintableTree>*/ public GraphViz.Node toGraphViz(GraphViz gv) { if (gv.hasNode(this)) return gv.createNode(this); GraphViz.Node n = gv.createNode(this); - n.label = StringUtil.escapify(headToString()==null?"":headToString(), "\r\n"); + n.label = headToString()==null?"":headToString(); n.directed = true; n.comment = reduction==null?null:reduction+""; edges(n); @@ -113,6 +156,41 @@ public abstract class Forest /*extends PrintableTree>*/ this.reduction = reduction; this.labels = labels; } + public void gather(TaskList tl, HashSet>[] ht, HashSet> target) { + gather(tl, ht, target, new Tree[ht.length], 0); + } + private void gather(TaskList tl, HashSet>[] ht, HashSet> target, Tree[] trees, int i) { + if (i==ht.length) { + target.add(new Tree(null, tag, trees)); + return; + } + for(Tree tree : ht[i]) { + if (unwrap && i==trees.length-1) { + // I think this is wrong + Tree[] trees2 = new Tree[trees.length - 1 + tree.numChildren()]; + System.arraycopy(trees, 0, trees2, 0, trees.length-1); + for(int j=0; j(null, tag, trees2)); + } else { + trees[i] = tree; + gather(tl, ht, target, trees, i+1); + trees[i] = null; + } + } + } + public void expand(TaskList tl, HashSet> ht) { + if (singleton) { + tokens[0].expand(tl, ht); + return; + } + HashSet>[] children = new HashSet[tokens.length]; + tl.gather(this, children, ht); + for(int i=0; i>(); + tl.expand(tokens[i], children[i]); + } + } public void expand(final int i, final TreeMaker h) { if (singleton) { @@ -159,6 +237,16 @@ public abstract class Forest /*extends PrintableTree>*/ * viewed, it becomes immutable */ static class Ref extends Forest { + public void expand(TaskList tl, HashSet> ht) { + for (Forest f : hp) f.expand(tl, ht); + } + public void gather(TaskList tl, HashSet>[] ht, HashSet> target) { + throw new Error(); + } + public HashSet parents = new HashSet(); + public boolean contains(Forest f) { + return hp.contains(f); + } public boolean ambiguous() { if (hp.size()==0) return false; if (hp.size()==1) return hp.iterator().next().ambiguous();