From aa467fd9d82ee4ab751a6ced1e4f48864f494e90 Mon Sep 17 00:00:00 2001 From: adam Date: Sun, 15 Jan 2006 16:35:42 -0500 Subject: [PATCH] checkpoint darcs-hash:20060115213542-5007d-969c02e4e5d3c93436283a6d4f1637d8acfb031d.gz --- src/edu/berkeley/sbp/Sequence.java | 22 ++++++++-------------- src/edu/berkeley/sbp/chr/CharRange.java | 2 +- src/edu/berkeley/sbp/misc/MetaGrammar.java | 10 ++++------ src/edu/berkeley/sbp/tib/Tib.java | 2 +- 4 files changed, 14 insertions(+), 22 deletions(-) diff --git a/src/edu/berkeley/sbp/Sequence.java b/src/edu/berkeley/sbp/Sequence.java index 328550d..0283c2b 100644 --- a/src/edu/berkeley/sbp/Sequence.java +++ b/src/edu/berkeley/sbp/Sequence.java @@ -25,10 +25,10 @@ public abstract class Sequence extends Element implements Iterable { public static Sequence drop(Element[] e, boolean lame) { return new Constant.Drop(e, null, null, lame); } /** after matching the sequence, insert a constant into the output tree */ - public static Sequence constant(Element[] e, Object o, HashSet and, HashSet not) { return new Constant(e, o, and, not); } + public static Sequence constant(Element[] e, Object o) { return new Constant(e, o, null, null); } /** after matching the sequence, place the result of the idxth match in the output tree */ - public static Sequence singleton(Element[] e, int idx, HashSet and, HashSet not) { return new Singleton(e, idx, and, not); } + public static Sequence singleton(Element[] e, int idx) { return new Singleton(e, idx, null, null); } /** * after matching the sequence, create the specified output tree @@ -53,10 +53,10 @@ public abstract class Sequence extends Element implements Iterable { protected final Element[] elements; - HashSet needed; - HashSet hated; - final HashSet needs; - final HashSet hates; + final HashSet needed = new HashSet(); + final HashSet hated = new HashSet(); + final HashSet needs = new HashSet(); + final HashSet hates = new HashSet(); public boolean lame = false; final Position firstp; @@ -64,14 +64,8 @@ public abstract class Sequence extends Element implements Iterable { public Iterator iterator() { return new ArrayIterator(elements); } protected Sequence(Element[] elements, HashSet and, HashSet not) { - this.needs = and==null ? new HashSet() : and; - this.hates = not==null ? new HashSet() : not; - if (this.needs != null) - for(Sequence s : this.needs) - (s.needed==null?(s.needed=new HashSet()):s.needed).add(this); - if (this.hates != null) - for(Sequence s : this.hates) - (s.hated==null?(s.hated=new HashSet()):s.hated).add(this); + if (and!=null) for(Sequence s : and) { needs.add(s); s.needed.add(this); } + if (not!=null) for(Sequence s : not) { hates.add(s); s.hated.add(this); } this.elements = elements; this.firstp = new Position(0); } diff --git a/src/edu/berkeley/sbp/chr/CharRange.java b/src/edu/berkeley/sbp/chr/CharRange.java index cac3bbb..deea38e 100644 --- a/src/edu/berkeley/sbp/chr/CharRange.java +++ b/src/edu/berkeley/sbp/chr/CharRange.java @@ -40,7 +40,7 @@ public class CharRange extends Atom { public String toString() { return escapified; } }; Element[] refs = new Element[s.length()]; for(int i=0; i { if ("{".equals(head)) { Union u = new Union("???"); Union u2 = ((PreSequence)walk(tree, 0)).sparse(ws).buildUnion(); - u2.add(Sequence.singleton(new Element[] { u }, 0, null, null)); + u2.add(Sequence.singleton(new Element[] { u }, 0)); return anonymousNonTerminal(new PreSequence[][] { new PreSequence[] { new PreSequence(new Element[] { CharRange.leftBrace, -- 1.7.10.4