X-Git-Url: http://git.megacz.com/?p=sbp.git;a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fsbp%2FWalk.java;h=4f133a4d47865640ef8e73da7597b531631129a7;hp=8b6eae61fab9c8f933c81636b950cc0238999af5;hb=6b53048f4413f3c618acc3581d0b4f60a236a9bc;hpb=84a4a8204373b996105e69edf91d2f9fae7b4bcb diff --git a/src/edu/berkeley/sbp/Walk.java b/src/edu/berkeley/sbp/Walk.java index 8b6eae6..4f133a4 100644 --- a/src/edu/berkeley/sbp/Walk.java +++ b/src/edu/berkeley/sbp/Walk.java @@ -52,7 +52,7 @@ abstract class Walk { public HashSet bottom(Element e) { return acc; } public HashSet sequence(Sequence seq) { return bottom(seq); } public HashSet walkAtom(Atom r) { - c.atoms.put(e, c.atoms.get(e)==null ? r.dup() : c.atoms.get(e).union(r.dup())); + c.atoms.put(e, c.atoms.get(e)==null ? r : c.atoms.get(e).union(r)); return super.walkAtom(r); } } @@ -83,7 +83,7 @@ abstract class Walk { public WalkTokenSet(Topology cs) { this.cs = cs; } public WalkTokenSet(Topology cs, Cache c) { super(c); this.cs = cs; } public Topology bottom(Element e) { return cs; } - public Topology walkAtom(Atom r) { cs.add(r.dup()); return cs; } + public Topology walkAtom(Atom r) { cs = cs.union(r); return cs; } } class First extends WalkTokenSet { @@ -127,7 +127,7 @@ abstract class Walk { if (c != null) { Topology cached = (Topology)c.follow.get(e); if (cached != null) { - cs.add(cached); + cs = cs.union(cached); eof |= c.eof.get(e); return cs; } @@ -136,7 +136,7 @@ abstract class Walk { Topology cso = cs; boolean eofo = eof; eof = false; - cs = cso.fresh(); + cs = cso.empty(); if (e instanceof Parser.Table.Top) eof = true; for(Element x : all) { @@ -146,13 +146,13 @@ abstract class Walk { Sequence a = (Sequence)x; Position mp = null; for(Position pos = a.firstp(); pos != null && !pos.isLast(); pos = pos.next()) { - if (matched) cs.add(new First(cs.fresh(), c).walk(pos.element())); + if (matched) cs = cs.union(new First(cs.empty(), c).walk(pos.element())); if (pos.isLast()) { matched = (matched && pos.element().possiblyEpsilon(c)); continue; } boolean good = false; if (e instanceof Atom) { Topology top = c.atoms.get(pos.element()); if (top==null) continue; - if (!(top.containsAll(((Atom)e).dup()))) continue; + if (!(top.containsAll(((Atom)e)))) continue; } else { if (c.ys.get(pos.element()).contains(e)) good = true; } @@ -166,15 +166,15 @@ abstract class Walk { if (e instanceof Sequence) { Sequence s = (Sequence)e; - if (s.noFollow() != null) cs.remove(s.noFollow().dup()); + if (s.noFollow() != null) cs = cs.minus(s.noFollow()); } if (c != null && e==me) { - c.follow.put(e, cs.dup()); + c.follow.put(e, cs); c.eof.put(e, eof); } - cso.add(cs); + cso = cso.union(cs); cs = cso; eofo |= eof; eof = eofo;