testing3/re1c_test.scala
changeset 215 438459a8e48b
parent 214 bc131735c940
child 216 8c868feb917b
equal deleted inserted replaced
214:bc131735c940 215:438459a8e48b
     1 
       
     2 //import scala.concurrent._
       
     3 //import scala.concurrent.duration._
       
     4 //import ExecutionContext.Implicits.global
       
     5 //import scala.language.postfixOps 
       
     6 //import scala.language.reflectiveCalls
       
     7 
       
     8 
       
     9 //lazy val f = Future {
       
    10   import CW8a._
       
    11 
       
    12   assert(simp(ZERO | ONE) == ONE)
       
    13   assert(simp(STAR(ZERO | ONE)) == STAR(ZERO | ONE))
       
    14   assert(simp(ONE ~ (ONE ~ (ONE ~ CHAR('a')))) == CHAR('a'))
       
    15   assert(simp(ONE ~ (ONE ~ (ONE ~ ZERO))) == ZERO)
       
    16   assert(simp(ALT(ONE ~ (ONE ~ (ONE ~ ZERO)), CHAR('a'))) == CHAR('a'))
       
    17   assert(simp(CHAR('a') | CHAR('a')) == CHAR('a'))
       
    18   assert(simp(ONE | CHAR('a')) == (ONE | CHAR('a')))
       
    19   assert(simp(ALT((CHAR('a') | ZERO) ~ ONE,
       
    20                   ((ONE | CHAR('b')) | CHAR('c')) ~ (CHAR('d') ~ ZERO))) == CHAR('a'))
       
    21 
       
    22 //}
       
    23 
       
    24 //Await.result(f, 30 second)