checkpoint
[sbp.git] / src / edu / berkeley / sbp / Union.java
index 7370a68..1d4841f 100644 (file)
@@ -36,6 +36,9 @@ public class Union extends Element implements Iterable<Sequence> {
         this.synthetic = synthetic;
     }
 
+    public static Union epsilon = new Union("()");
+    static { epsilon.add(Sequence.empty); }
+
     private Forest.Ref epsilonForm = null;
     Forest epsilonForm() {
         if (epsilonForm != null) return epsilonForm;