X-Git-Url: http://git.megacz.com/?p=sbp.git;a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fsbp%2FForest.java;h=705208f672d5305446865bcb31d26ca8f632801a;hp=e675f635ff03468bece3501935cd1cfa24c409df;hb=21c2c8445fd1d0c6ed630a2ecb259ddd9712c750;hpb=21b1b10a3ffb4b2021ad940f9cd722e3ed5300c4 diff --git a/src/edu/berkeley/sbp/Forest.java b/src/edu/berkeley/sbp/Forest.java index e675f63..705208f 100644 --- a/src/edu/berkeley/sbp/Forest.java +++ b/src/edu/berkeley/sbp/Forest.java @@ -18,13 +18,12 @@ public abstract class Forest { /** expand this forest into a set of trees */ public abstract HashSet> expand(boolean toss); - public abstract boolean empty(); - static Forest singleton(Token.Location loc, Sequence creator) { return create(loc, null, new Forest[] { }, creator, false, true); } - static Forest singleton(Token.Location loc, Forest body, Sequence creator) { return create(loc, null, new Forest[] { body }, creator, false, true); } - static Forest leaf(Token.Location loc, T tag, Sequence creator) { return create(loc, tag, null, creator, false, false); } - public static Forest create(Token.Location loc, T tag, Forest[] tokens, Sequence creator, boolean unwrap, boolean singleton) { - return new MultiForest(loc, tag, tokens, creator, unwrap, singleton); + static Forest singleton(Token.Location loc) { return create(loc, null, new Forest[] { }, false, true); } + static Forest singleton(Token.Location loc, Forest body) { return create(loc, null, new Forest[] { body }, false, true); } + static Forest leaf(Token.Location loc, T tag) { return create(loc, tag, null, false, false); } + public static Forest create(Token.Location loc, T tag, Forest[] tokens, boolean unwrap, boolean singleton) { + return new MultiForest(loc, tag, tokens, unwrap, singleton); } // Body ////////////////////////////////////////////////////////////////////////////// @@ -34,17 +33,15 @@ public abstract class Forest { private final Token.Location location; private final T tag; private final Forest[] tokens; - private final Sequence creator; private final boolean unwrap; private final boolean singleton; - private Body(Token.Location loc, T tag, Forest[] tokens, Sequence creator, boolean unwrap, boolean singleton) { + private Body(Token.Location loc, T tag, Forest[] tokens, boolean unwrap, boolean singleton) { this.location = loc; this.tag = tag; this.tokens = tokens==null ? emptyForestArray : new Forest[tokens.length]; if (tokens != null) System.arraycopy(tokens, 0, this.tokens, 0, tokens.length); if (tokens != null) for(int i=0; i { * viewed, it becomes immutable */ static class Ref extends IterableForest { - public boolean empty() { - if (res!=null) return res.empty(); - for(Forest f : hp) if (!f.empty()) return false; - return true; - } private FastSet hp = new FastSet(); private Forest res = null; public Ref() { } @@ -151,11 +143,10 @@ public abstract class Forest { // Implementations ////////////////////////////////////////////////////////////////////////////// private static class MultiForest extends IterableForest { - public boolean empty() { return results.size()>0; } private final FastSet> results; private MultiForest(FastSet> results) { this.results = results; } - public MultiForest(Token.Location loc, T tag, Forest[] tokens, Sequence creator, boolean unwrap, boolean singleton) { - this.results = new FastSet>(new Body(loc, tag, tokens, creator, unwrap, singleton)); + public MultiForest(Token.Location loc, T tag, Forest[] tokens, boolean unwrap, boolean singleton) { + this.results = new FastSet>(new Body(loc, tag, tokens, unwrap, singleton)); } public Iterator> iterator() { return results.iterator(); }