X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;ds=sidebyside;f=src%2Fedu%2Fberkeley%2Fsbp%2FAtom.java;h=b9832b2d313c20a3ea314359a3d746ab91b83bbe;hb=0e17670bcfa7b0fe8eb3a2cac81f4b080a09fc98;hp=0722d0b8d571905990655c76849c840e21e3de24;hpb=0a0227b9180534d2a431f3d6e08a398bde2244c4;p=sbp.git diff --git a/src/edu/berkeley/sbp/Atom.java b/src/edu/berkeley/sbp/Atom.java index 0722d0b..b9832b2 100644 --- a/src/edu/berkeley/sbp/Atom.java +++ b/src/edu/berkeley/sbp/Atom.java @@ -7,24 +7,26 @@ import edu.berkeley.sbp.util.*; import edu.berkeley.sbp.*; import edu.berkeley.sbp.*; -/** an element which matches exactly one input token */ -public abstract class Atom extends Element { +/** an element which matches exactly one input token */ +public abstract class Atom extends Element implements Topology { + + protected abstract Topology top(); + public abstract String toString(); + public StringBuffer toString(StringBuffer sb) { sb.append(this); return sb; } + + // Topology Thunks ////////////////////////////////////////////////////////////////////////////// + + public Topology unwrap() { return top().unwrap(); } + public Topology empty() { return top().empty(); } + public boolean contains(T v) { return top().contains(v); } + public Topology intersect(Topology t) { return top().intersect(t); } + public Topology minus(Topology t) { return top().minus(t); } + public Topology union(Topology t) { return top().union(t); } + public Topology complement() { return top().complement(); } + public boolean disjoint(Topology t) { return top().disjoint(t); } + public boolean containsAll(Topology t) { return top().containsAll(t); } + public int hashCode() { return top().hashCode(); } + public boolean equals(Object o) { return o != null && o instanceof Atom && ((Atom)o).top().equals(top()); } - private final Topology rt; - - public Atom(Topology rt) { this.rt = rt; } - - Topology top() { return rt; } - - void reachable(HashSet h) { /* do-nothing */ } - - /** equality is based on the underlying Topology */ - public int hashCode() { return rt.hashCode(); } - - /** equality is based on the underlying Topology */ - public boolean equals(Object o) { return o != null && o instanceof Atom && ((Atom)o).rt.equals(rt); } - - /** declared abstract to force subclasses to override it in a useful manner */ - public abstract String toString(); }