main_testing3/re_test2.scala
author Christian Urban <christian.urban@kcl.ac.uk>
Tue, 08 Nov 2022 00:27:47 +0000
changeset 433 6af86ba1208f
parent 403 ffce7b61b446
child 475 59e005dcf163
permissions -rw-r--r--
updated
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
403
ffce7b61b446 updated
Christian Urban <christian.urban@kcl.ac.uk>
parents: 347
diff changeset
     1
import M3._
153
4383809c176a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     2
433
6af86ba1208f updated
Christian Urban <christian.urban@kcl.ac.uk>
parents: 403
diff changeset
     3
assert(der('a', ZERO | ONE) == ALT(ZERO, ZERO))
6af86ba1208f updated
Christian Urban <christian.urban@kcl.ac.uk>
parents: 403
diff changeset
     4
assert(der('a', (CHAR('a') | ONE) ~ CHAR('a')) == ALTs(List(SEQ(ALT(ONE, ZERO), CHAR('a')), SEQs(List(ONE)))))
300
72688efdf17c updated testing files
Christian Urban <urbanc@in.tum.de>
parents: 221
diff changeset
     5
assert(der('a', (CHAR('a') | CHAR('a')) ~ CHAR('a')) == (ONE | ONE) ~ CHAR('a'))
221
9e7897f25e13 updated
Christian Urban <urbanc@in.tum.de>
parents: 215
diff changeset
     6
assert(der('a', STAR(CHAR('a'))) == (ONE ~ STAR(CHAR('a'))))
9e7897f25e13 updated
Christian Urban <urbanc@in.tum.de>
parents: 215
diff changeset
     7
assert(der('b', STAR(CHAR('a'))) == (ZERO ~ STAR(CHAR('a'))))
300
72688efdf17c updated testing files
Christian Urban <urbanc@in.tum.de>
parents: 221
diff changeset
     8
433
6af86ba1208f updated
Christian Urban <christian.urban@kcl.ac.uk>
parents: 403
diff changeset
     9
/*
300
72688efdf17c updated testing files
Christian Urban <urbanc@in.tum.de>
parents: 221
diff changeset
    10
val r0_urban = "a" ~ "b" ~ "c"
72688efdf17c updated testing files
Christian Urban <urbanc@in.tum.de>
parents: 221
diff changeset
    11
assert(der('a', r0_urban) == (ONE ~ "b") ~ "c")
72688efdf17c updated testing files
Christian Urban <urbanc@in.tum.de>
parents: 221
diff changeset
    12
assert(der('b', r0_urban) == (ZERO ~ "b") ~ "c")
72688efdf17c updated testing files
Christian Urban <urbanc@in.tum.de>
parents: 221
diff changeset
    13
assert(der('c', r0_urban) == (ZERO ~ "b") ~ "c")
72688efdf17c updated testing files
Christian Urban <urbanc@in.tum.de>
parents: 221
diff changeset
    14
72688efdf17c updated testing files
Christian Urban <urbanc@in.tum.de>
parents: 221
diff changeset
    15
val r1_urban = (ONE ~ "b") ~ "c"
72688efdf17c updated testing files
Christian Urban <urbanc@in.tum.de>
parents: 221
diff changeset
    16
72688efdf17c updated testing files
Christian Urban <urbanc@in.tum.de>
parents: 221
diff changeset
    17
assert(der('a', r1_urban) == ((ZERO ~ "b") | ZERO) ~ "c")
72688efdf17c updated testing files
Christian Urban <urbanc@in.tum.de>
parents: 221
diff changeset
    18
assert(der('b', r1_urban) == ((ZERO ~ "b") | ONE) ~ "c")
72688efdf17c updated testing files
Christian Urban <urbanc@in.tum.de>
parents: 221
diff changeset
    19
assert(der('c', r1_urban) == ((ZERO ~ "b") | ZERO) ~ "c")
72688efdf17c updated testing files
Christian Urban <urbanc@in.tum.de>
parents: 221
diff changeset
    20
72688efdf17c updated testing files
Christian Urban <urbanc@in.tum.de>
parents: 221
diff changeset
    21
val r2_urban = ((ZERO ~ "b") | ONE) ~ "c"
72688efdf17c updated testing files
Christian Urban <urbanc@in.tum.de>
parents: 221
diff changeset
    22
72688efdf17c updated testing files
Christian Urban <urbanc@in.tum.de>
parents: 221
diff changeset
    23
assert(der('a', r2_urban) == ((((ZERO ~ "b") | ZERO) ~ "c") | ZERO))
72688efdf17c updated testing files
Christian Urban <urbanc@in.tum.de>
parents: 221
diff changeset
    24
assert(der('b', r2_urban) == ((((ZERO ~ "b") | ZERO) ~ "c") | ZERO))
72688efdf17c updated testing files
Christian Urban <urbanc@in.tum.de>
parents: 221
diff changeset
    25
assert(der('c', r2_urban) == ((((ZERO ~ "b") | ZERO) ~ "c") | ONE))
433
6af86ba1208f updated
Christian Urban <christian.urban@kcl.ac.uk>
parents: 403
diff changeset
    26
*/