testing4/re1c_test.scala
changeset 221 9e7897f25e13
parent 220 3020f8c76baa
child 222 e52cc402caee
equal deleted inserted replaced
220:3020f8c76baa 221:9e7897f25e13
     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)