thys2/blexer2.sc
author Christian Urban <christian.urban@kcl.ac.uk>
Wed, 12 Oct 2022 15:23:42 +0100
changeset 615 8881a09a06fd
parent 591 b2d0de6aee18
child 628 7af4e2420a8c
permissions -rw-r--r--
updated paper for FoSSaCS
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
518
ff7945a988a3 more to thesis
Chengsong
parents: 516
diff changeset
     1
//Strong Bsimp to obtain Antimirov's cubic bound
ff7945a988a3 more to thesis
Chengsong
parents: 516
diff changeset
     2
431
Chengsong
parents:
diff changeset
     3
// A simple lexer inspired by work of Sulzmann & Lu
Chengsong
parents:
diff changeset
     4
//==================================================
Chengsong
parents:
diff changeset
     5
//
Chengsong
parents:
diff changeset
     6
// Call the test cases with 
Chengsong
parents:
diff changeset
     7
//
Chengsong
parents:
diff changeset
     8
//   amm lexer.sc small
Chengsong
parents:
diff changeset
     9
//   amm lexer.sc fib
Chengsong
parents:
diff changeset
    10
//   amm lexer.sc loops
Chengsong
parents:
diff changeset
    11
//   amm lexer.sc email
Chengsong
parents:
diff changeset
    12
//
Chengsong
parents:
diff changeset
    13
//   amm lexer.sc all
Chengsong
parents:
diff changeset
    14
514
036600af4c30 chapter2
Chengsong
parents: 500
diff changeset
    15
431
Chengsong
parents:
diff changeset
    16
Chengsong
parents:
diff changeset
    17
// regular expressions including records
Chengsong
parents:
diff changeset
    18
abstract class Rexp 
Chengsong
parents:
diff changeset
    19
case object ZERO extends Rexp
Chengsong
parents:
diff changeset
    20
case object ONE extends Rexp
Chengsong
parents:
diff changeset
    21
case object ANYCHAR extends Rexp
Chengsong
parents:
diff changeset
    22
case class CHAR(c: Char) extends Rexp
Chengsong
parents:
diff changeset
    23
case class ALTS(r1: Rexp, r2: Rexp) extends Rexp 
539
Chengsong
parents: 536
diff changeset
    24
case class ALTSS(rs: List[Rexp]) extends Rexp
431
Chengsong
parents:
diff changeset
    25
case class SEQ(r1: Rexp, r2: Rexp) extends Rexp 
Chengsong
parents:
diff changeset
    26
case class STAR(r: Rexp) extends Rexp 
Chengsong
parents:
diff changeset
    27
case class RECD(x: String, r: Rexp) extends Rexp  
Chengsong
parents:
diff changeset
    28
case class NTIMES(n: Int, r: Rexp) extends Rexp
Chengsong
parents:
diff changeset
    29
case class OPTIONAL(r: Rexp) extends Rexp
Chengsong
parents:
diff changeset
    30
case class NOT(r: Rexp) extends Rexp
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
    31
// records for extracting strings or tokens
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
    32
431
Chengsong
parents:
diff changeset
    33
// values  
Chengsong
parents:
diff changeset
    34
abstract class Val
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
    35
case object Failure extends Val
431
Chengsong
parents:
diff changeset
    36
case object Empty extends Val
Chengsong
parents:
diff changeset
    37
case class Chr(c: Char) extends Val
Chengsong
parents:
diff changeset
    38
case class Sequ(v1: Val, v2: Val) extends Val
Chengsong
parents:
diff changeset
    39
case class Left(v: Val) extends Val
Chengsong
parents:
diff changeset
    40
case class Right(v: Val) extends Val
Chengsong
parents:
diff changeset
    41
case class Stars(vs: List[Val]) extends Val
Chengsong
parents:
diff changeset
    42
case class Rec(x: String, v: Val) extends Val
Chengsong
parents:
diff changeset
    43
case class Ntime(vs: List[Val]) extends Val
Chengsong
parents:
diff changeset
    44
case class Optionall(v: Val) extends Val
Chengsong
parents:
diff changeset
    45
case class Nots(s: String) extends Val
Chengsong
parents:
diff changeset
    46
Chengsong
parents:
diff changeset
    47
Chengsong
parents:
diff changeset
    48
Chengsong
parents:
diff changeset
    49
abstract class Bit
Chengsong
parents:
diff changeset
    50
case object Z extends Bit
Chengsong
parents:
diff changeset
    51
case object S extends Bit
Chengsong
parents:
diff changeset
    52
Chengsong
parents:
diff changeset
    53
Chengsong
parents:
diff changeset
    54
type Bits = List[Bit]
Chengsong
parents:
diff changeset
    55
Chengsong
parents:
diff changeset
    56
abstract class ARexp 
Chengsong
parents:
diff changeset
    57
case object AZERO extends ARexp
Chengsong
parents:
diff changeset
    58
case class AONE(bs: Bits) extends ARexp
Chengsong
parents:
diff changeset
    59
case class ACHAR(bs: Bits, c: Char) extends ARexp
Chengsong
parents:
diff changeset
    60
case class AALTS(bs: Bits, rs: List[ARexp]) extends ARexp 
Chengsong
parents:
diff changeset
    61
case class ASEQ(bs: Bits, r1: ARexp, r2: ARexp) extends ARexp 
Chengsong
parents:
diff changeset
    62
case class ASTAR(bs: Bits, r: ARexp) extends ARexp 
Chengsong
parents:
diff changeset
    63
case class ANOT(bs: Bits, r: ARexp) extends ARexp
Chengsong
parents:
diff changeset
    64
case class AANYCHAR(bs: Bits) extends ARexp
Chengsong
parents:
diff changeset
    65
514
036600af4c30 chapter2
Chengsong
parents: 500
diff changeset
    66
import scala.util.Try
036600af4c30 chapter2
Chengsong
parents: 500
diff changeset
    67
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
    68
trait Generator[+T] {
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
    69
  self => // an alias for "this"
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
    70
    def generate(): T
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
    71
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
    72
    def gen(n: Int) : List[T] = 
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
    73
      if (n == 0) Nil else self.generate() :: gen(n - 1)
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
    74
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
    75
    def map[S](f: T => S): Generator[S] = new Generator[S] {
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
    76
      def generate = f(self.generate())  
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
    77
    }
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
    78
    def flatMap[S](f: T => Generator[S]): Generator[S] = new Generator[S] {
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
    79
      def generate = f(self.generate()).generate()
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
    80
    }
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
    81
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
    82
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
    83
}
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
    84
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
    85
// tests a property according to a given random generator
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
    86
def test[T](r: Generator[T], amount: Int = 100)(pred: T => Boolean) {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
    87
  for (_ <- 0 until amount) {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
    88
    val value = r.generate()
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
    89
    assert(pred(value), s"Test failed for: $value")
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
    90
  }
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
    91
  println(s"Test passed $amount times")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
    92
}
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
    93
def test2[T, S](r: Generator[T], s: Generator[S], amount: Int = 100)(pred: (T, S) => Boolean) {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
    94
  for (_ <- 0 until amount) {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
    95
    val valueR = r.generate()
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
    96
    val valueS = s.generate()
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
    97
    assert(pred(valueR, valueS), s"Test failed for: $valueR, $valueS")
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
    98
  }
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
    99
  println(s"Test passed $amount times")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   100
}
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   101
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   102
// random integers
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   103
val integers = new Generator[Int] {
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   104
  val rand = new java.util.Random
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   105
  def generate() = rand.nextInt()
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   106
}
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   107
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   108
// random booleans
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   109
val booleans = integers.map(_ > 0)
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   110
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   111
// random integers in the range lo and high  
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   112
def range(lo: Int, hi: Int): Generator[Int] = 
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   113
  for (x <- integers) yield (lo + x.abs % (hi - lo)).abs
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   114
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   115
// random characters
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   116
def chars_range(lo: Char, hi: Char) = range(lo, hi).map(_.toChar)  
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   117
val chars = chars_range('a', 'z')
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   118
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   119
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   120
def oneOf[T](xs: T*): Generator[T] = 
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   121
  for (idx <- range(0, xs.length)) yield xs(idx)
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   122
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   123
def single[T](x: T) = new Generator[T] {
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   124
  def generate() = x
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   125
}   
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   126
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   127
def pairs[T, U](t: Generator[T], u: Generator[U]): Generator[(T, U)] = 
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   128
  for (x <- t; y <- u) yield (x, y)
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   129
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   130
// lists
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   131
def emptyLists = single(Nil) 
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   132
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   133
def nonEmptyLists : Generator[List[Int]] = 
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   134
  for (head <- integers; tail <- lists) yield head :: tail
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   135
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   136
def lists: Generator[List[Int]] = for {
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   137
  kind <- booleans
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   138
  list <- if (kind) emptyLists else nonEmptyLists
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   139
} yield list
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   140
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   141
def char_list(len: Int): Generator[List[Char]] = {
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   142
  if(len <= 0) single(Nil)
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   143
  else{
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   144
    for { 
500
Chengsong
parents: 494
diff changeset
   145
      c <- chars_range('a', 'c')
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   146
      tail <- char_list(len - 1)
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   147
    } yield c :: tail
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   148
  }
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   149
}
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   150
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   151
def strings(len: Int): Generator[String] = for(cs <- char_list(len)) yield cs.toString
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   152
493
Chengsong
parents: 492
diff changeset
   153
def sampleString(r: Rexp) : List[String] = r match {
Chengsong
parents: 492
diff changeset
   154
  case STAR(r) => stringsFromRexp(r).flatMap(s => List("", s, s ++ s))//only generate 0, 1, 2 reptitions
Chengsong
parents: 492
diff changeset
   155
  case SEQ(r1, r2) => stringsFromRexp(r1).flatMap(s1 => stringsFromRexp(r2).map(s2 => s1 ++ s2) )
Chengsong
parents: 492
diff changeset
   156
  case ALTS(r1, r2) => throw new Error(s" Rexp ${r} not expected: all alternatives are supposed to have been opened up")
Chengsong
parents: 492
diff changeset
   157
  case ONE => "" :: Nil
Chengsong
parents: 492
diff changeset
   158
  case ZERO => Nil
Chengsong
parents: 492
diff changeset
   159
  case CHAR(c) => c.toString :: Nil
Chengsong
parents: 492
diff changeset
   160
Chengsong
parents: 492
diff changeset
   161
}
Chengsong
parents: 492
diff changeset
   162
Chengsong
parents: 492
diff changeset
   163
def stringsFromRexp(r: Rexp) : List[String] = 
Chengsong
parents: 492
diff changeset
   164
  breakIntoTerms(r).flatMap(r => sampleString(r))
Chengsong
parents: 492
diff changeset
   165
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   166
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   167
// (simple) binary trees
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   168
trait Tree[T]
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   169
case class Inner[T](left: Tree[T], right: Tree[T]) extends Tree[T]
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   170
case class Leaf[T](x: T) extends Tree[T]
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   171
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   172
def leafs[T](t: Generator[T]): Generator[Leaf[T]] = 
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   173
  for (x <- t) yield Leaf(x)
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   174
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   175
def inners[T](t: Generator[T]): Generator[Inner[T]] = 
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   176
  for (l <- trees(t); r <- trees(t)) yield Inner(l, r)
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   177
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   178
def trees[T](t: Generator[T]): Generator[Tree[T]] = 
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   179
  for (kind <- range(0, 2);  
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   180
       tree <- if (kind == 0) leafs(t) else inners(t)) yield tree
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   181
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   182
// regular expressions
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   183
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   184
// generates random leaf-regexes; prefers CHAR-regexes
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   185
def leaf_rexp() : Generator[Rexp] =
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   186
  for (kind <- range(0, 5);
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   187
       c <- chars_range('a', 'd')) yield
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   188
kind match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   189
  case 0 => ZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   190
  case 1 => ONE
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   191
  case _ => CHAR(c) 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   192
}
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   193
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   194
// generates random inner regexes with maximum depth d
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   195
def inner_rexp(d: Int) : Generator[Rexp] =
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   196
  for (kind <- range(0, 3);
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   197
       l <- rexp(d); 
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   198
       r <- rexp(d))
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   199
yield kind match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   200
  case 0 => ALTS(l, r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   201
  case 1 => SEQ(l, r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   202
  case 2 => STAR(r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   203
}
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   204
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   205
// generates random regexes with maximum depth d;
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   206
// prefers inner regexes in 2/3 of the cases
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   207
def rexp(d: Int = 100): Generator[Rexp] = 
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   208
  for (kind <- range(0, 3);
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   209
       r <- if (d <= 0 || kind == 0) leaf_rexp() else inner_rexp(d - 1)) yield r
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   210
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   211
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   212
// some test functions for rexps
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   213
def height(r: Rexp) : Int = r match {
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   214
  case ZERO => 1
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   215
  case ONE => 1
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   216
  case CHAR(_) => 1
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   217
  case ALTS(r1, r2) => 1 + List(height(r1), height(r2)).max
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   218
  case SEQ(r1, r2) =>  1 + List(height(r1), height(r2)).max
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   219
  case STAR(r) => 1 + height(r)
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   220
}
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   221
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   222
// def size(r: Rexp) : Int = r match {
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   223
//   case ZERO => 1
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   224
//   case ONE => 1
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   225
//   case CHAR(_) => 1
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   226
//   case ALTS(r1, r2) => 1 + size(r1) + size(r2)
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   227
//   case SEQ(r1, r2) =>  1 + size(r1) + size(r2)
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   228
//   case STAR(r) => 1 + size(r) 
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   229
// }
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   230
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   231
// randomly subtracts 1 or 2 from the STAR case
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   232
def size_faulty(r: Rexp) : Int = r match {
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   233
  case ZERO => 1
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   234
  case ONE => 1
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   235
  case CHAR(_) => 1
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   236
  case ALTS(r1, r2) => 1 + size_faulty(r1) + size_faulty(r2)
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   237
  case SEQ(r1, r2) =>  1 + size_faulty(r1) + size_faulty(r2)
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   238
  case STAR(r) => 1 + size_faulty(r) - range(0, 2).generate
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   239
}
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   240
431
Chengsong
parents:
diff changeset
   241
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   242
431
Chengsong
parents:
diff changeset
   243
// some convenience for typing in regular expressions
Chengsong
parents:
diff changeset
   244
Chengsong
parents:
diff changeset
   245
def charlist2rexp(s : List[Char]): Rexp = s match {
Chengsong
parents:
diff changeset
   246
  case Nil => ONE
Chengsong
parents:
diff changeset
   247
  case c::Nil => CHAR(c)
Chengsong
parents:
diff changeset
   248
  case c::s => SEQ(CHAR(c), charlist2rexp(s))
Chengsong
parents:
diff changeset
   249
}
Chengsong
parents:
diff changeset
   250
implicit def string2rexp(s : String) : Rexp = 
Chengsong
parents:
diff changeset
   251
  charlist2rexp(s.toList)
Chengsong
parents:
diff changeset
   252
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   253
  implicit def RexpOps(r: Rexp) = new {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   254
    def | (s: Rexp) = ALTS(r, s)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   255
    def % = STAR(r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   256
    def ~ (s: Rexp) = SEQ(r, s)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   257
  }
431
Chengsong
parents:
diff changeset
   258
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   259
  implicit def stringOps(s: String) = new {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   260
    def | (r: Rexp) = ALTS(s, r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   261
    def | (r: String) = ALTS(s, r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   262
    def % = STAR(s)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   263
    def ~ (r: Rexp) = SEQ(s, r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   264
    def ~ (r: String) = SEQ(s, r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   265
    def $ (r: Rexp) = RECD(s, r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   266
  }
431
Chengsong
parents:
diff changeset
   267
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   268
  def nullable(r: Rexp) : Boolean = r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   269
    case ZERO => false
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   270
    case ONE => true
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   271
    case CHAR(_) => false
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   272
    case ANYCHAR => false
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   273
    case ALTS(r1, r2) => nullable(r1) || nullable(r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   274
    case ALTSS(rs) => rs.exists(nullable)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   275
    case SEQ(r1, r2) => nullable(r1) && nullable(r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   276
    case STAR(_) => true
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   277
    case RECD(_, r1) => nullable(r1)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   278
    case NTIMES(n, r) => if (n == 0) true else nullable(r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   279
    case OPTIONAL(r) => true
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   280
    case NOT(r) => !nullable(r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   281
  }
431
Chengsong
parents:
diff changeset
   282
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   283
  def der(c: Char, r: Rexp) : Rexp = r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   284
    case ZERO => ZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   285
    case ONE => ZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   286
    case CHAR(d) => if (c == d) ONE else ZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   287
    case ANYCHAR => ONE 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   288
    case ALTS(r1, r2) => ALTS(der(c, r1), der(c, r2))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   289
    case ALTSS(rs) => ALTSS(rs.map(der(c, _)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   290
    case SEQ(r1, r2) => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   291
      if (nullable(r1)) ALTS(SEQ(der(c, r1), r2), der(c, r2))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   292
      else SEQ(der(c, r1), r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   293
    case STAR(r) => SEQ(der(c, r), STAR(r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   294
    case RECD(_, r1) => der(c, r1)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   295
    case NTIMES(n, r) => if(n > 0) SEQ(der(c, r), NTIMES(n - 1, r)) else ZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   296
    case OPTIONAL(r) => der(c, r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   297
    case NOT(r) =>  NOT(der(c, r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   298
  }
431
Chengsong
parents:
diff changeset
   299
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   300
  def ders(s: List[Char], r: Rexp) : Rexp = s match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   301
    case Nil => r
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   302
    case c :: cs => ders(cs, der(c, r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   303
  }
539
Chengsong
parents: 536
diff changeset
   304
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   305
  def ders_simp(s: List[Char], r: Rexp) : Rexp = s match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   306
    case Nil => simp(r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   307
    case c :: cs => ders_simp(cs, simp(der(c, r)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   308
  }
539
Chengsong
parents: 536
diff changeset
   309
Chengsong
parents: 536
diff changeset
   310
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   311
  def simp2(r: Rexp) : Rexp = r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   312
    case SEQ(r1, r2) => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   313
      (simp2(r1), simp2(r2)) match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   314
        case (ZERO, _) => ZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   315
        case (_, ZERO) => ZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   316
        case (ONE, r2s) => r2s
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   317
        case (r1s, ONE) => r1s
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   318
        case (r1s, r2s) => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   319
          SEQ(r1s, r2s)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   320
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   321
        case ALTS(r1, r2) => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   322
          val r1r2s = fltsplain(simp2(r1) :: simp2(r2) :: Nil).distinct 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   323
          r1r2s match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   324
            case Nil => ZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   325
            case r :: Nil => r
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   326
            case r1 :: r2 :: rs => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   327
              ALTSS(r1 :: r2 :: rs)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   328
          }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   329
            case ALTSS(rs) => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   330
              // println(rs)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   331
              (fltsplain(rs.map(simp2))).distinct match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   332
                case Nil => ZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   333
                case r :: Nil => r
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   334
                case r1 :: r2 :: rs =>
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   335
                  ALTSS(r1 :: r2 :: rs)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   336
              }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   337
                case r => r
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   338
  }
539
Chengsong
parents: 536
diff changeset
   339
Chengsong
parents: 536
diff changeset
   340
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   341
  def simp(r: Rexp) : Rexp = r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   342
    case SEQ(r1, r2) => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   343
      (simp(r1), simp(r2)) match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   344
        case (ZERO, _) => ZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   345
        case (_, ZERO) => ZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   346
        case (ONE, r2s) => r2s
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   347
        case (r1s, ONE) => r1s
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   348
        case (r1s, r2s) => SEQ(r1s, r2s)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   349
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   350
        case ALTS(r1, r2) => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   351
          (simp(r1), simp(r2)) match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   352
            case (ZERO, r2s) => r2s
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   353
            case (r1s, ZERO) => r1s
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   354
            case (r1s, r2s) =>
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   355
              if(r1s == r2s) r1s else ALTS(r1s, r2s)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   356
          }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   357
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   358
            case r => r
539
Chengsong
parents: 536
diff changeset
   359
  }
Chengsong
parents: 536
diff changeset
   360
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   361
  def fltsplain(rs: List[Rexp]) : List[Rexp] = rs match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   362
    case Nil => Nil
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   363
    case ZERO :: rs => fltsplain(rs)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   364
    case ALTS(r1, r2) :: rs => r1 :: r2 :: fltsplain(rs) 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   365
    case ALTSS(rs) :: rs1 => rs ::: fltsplain(rs1)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   366
    case r :: rs => r :: fltsplain(rs)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   367
  }
539
Chengsong
parents: 536
diff changeset
   368
Chengsong
parents: 536
diff changeset
   369
Chengsong
parents: 536
diff changeset
   370
Chengsong
parents: 536
diff changeset
   371
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   372
  def matcher(s: String, r: Rexp) : Boolean = 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   373
    nullable(ders(s.toList, r))
539
Chengsong
parents: 536
diff changeset
   374
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   375
  def simp_matcher(s: String, r: Rexp) : Boolean = 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   376
    nullable(ders_simp(s.toList, r))
539
Chengsong
parents: 536
diff changeset
   377
431
Chengsong
parents:
diff changeset
   378
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   379
  // extracts a string from a value
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   380
  def flatten(v: Val) : String = v match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   381
    case Empty => ""
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   382
    case Chr(c) => c.toString
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   383
    case Left(v) => flatten(v)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   384
    case Right(v) => flatten(v)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   385
    case Sequ(v1, v2) => flatten(v1) ++ flatten(v2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   386
    case Stars(vs) => vs.map(flatten).mkString
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   387
    case Ntime(vs) => vs.map(flatten).mkString
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   388
    case Optionall(v) => flatten(v)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   389
    case Rec(_, v) => flatten(v)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   390
  }
431
Chengsong
parents:
diff changeset
   391
Chengsong
parents:
diff changeset
   392
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   393
  // extracts an environment from a value;
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   394
  // used for tokenising a string
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   395
  def env(v: Val) : List[(String, String)] = v match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   396
    case Empty => Nil
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   397
    case Chr(c) => Nil
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   398
    case Left(v) => env(v)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   399
    case Right(v) => env(v)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   400
    case Sequ(v1, v2) => env(v1) ::: env(v2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   401
    case Stars(vs) => vs.flatMap(env)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   402
    case Ntime(vs) => vs.flatMap(env)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   403
    case Rec(x, v) => (x, flatten(v))::env(v)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   404
    case Optionall(v) => env(v)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   405
    case Nots(s) => ("Negative", s) :: Nil
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   406
  }
431
Chengsong
parents:
diff changeset
   407
Chengsong
parents:
diff changeset
   408
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   409
  // The injection and mkeps part of the lexer
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   410
  //===========================================
431
Chengsong
parents:
diff changeset
   411
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   412
  def mkeps(r: Rexp) : Val = r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   413
    case ONE => Empty
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   414
    case ALTS(r1, r2) => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   415
      if (nullable(r1)) Left(mkeps(r1)) else Right(mkeps(r2))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   416
    case SEQ(r1, r2) => Sequ(mkeps(r1), mkeps(r2))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   417
    case STAR(r) => Stars(Nil)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   418
    case RECD(x, r) => Rec(x, mkeps(r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   419
    case NTIMES(n, r) => Ntime(List.fill(n)(mkeps(r)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   420
    case OPTIONAL(r) => Optionall(Empty)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   421
    case NOT(rInner) => if(nullable(rInner)) throw new Exception("error")  
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   422
    else Nots("")//Nots(s.reverse.toString)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   423
    //   case NOT(ZERO) => Empty
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   424
    //   case NOT(CHAR(c)) => Empty
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   425
    //   case NOT(SEQ(r1, r2)) => Sequ(mkeps(NOT(r1)), mkeps(NOT(r2)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   426
    //   case NOT(ALTS(r1, r2)) => if(!nullable(r1)) Left(mkeps(NOT(r1))) else Right(mkeps(NOT(r2)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   427
    //   case NOT(STAR(r)) => Stars(Nil) 
431
Chengsong
parents:
diff changeset
   428
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   429
  }
431
Chengsong
parents:
diff changeset
   430
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   431
  def inj(r: Rexp, c: Char, v: Val) : Val = (r, v) match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   432
    case (STAR(r), Sequ(v1, Stars(vs))) => Stars(inj(r, c, v1)::vs)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   433
    case (SEQ(r1, r2), Sequ(v1, v2)) => Sequ(inj(r1, c, v1), v2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   434
    case (SEQ(r1, r2), Left(Sequ(v1, v2))) => Sequ(inj(r1, c, v1), v2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   435
    case (SEQ(r1, r2), Right(v2)) => Sequ(mkeps(r1), inj(r2, c, v2))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   436
    case (ALTS(r1, r2), Left(v1)) => Left(inj(r1, c, v1))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   437
    case (ALTS(r1, r2), Right(v2)) => Right(inj(r2, c, v2))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   438
    case (CHAR(d), Empty) => Chr(c) 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   439
    case (RECD(x, r1), _) => Rec(x, inj(r1, c, v))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   440
    case (NTIMES(n, r), Sequ(v1, Ntime(vs))) => Ntime(inj(r, c, v1)::vs)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   441
    case (OPTIONAL(r), v) => Optionall(inj(r, c, v))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   442
    case (NOT(r), Nots(s)) => Nots(c.toString ++ s)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   443
    case (ANYCHAR, Empty) => Chr(c)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   444
  }
431
Chengsong
parents:
diff changeset
   445
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   446
  // some "rectification" functions for simplification
431
Chengsong
parents:
diff changeset
   447
Chengsong
parents:
diff changeset
   448
Chengsong
parents:
diff changeset
   449
Chengsong
parents:
diff changeset
   450
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   451
  // The Lexing Rules for the WHILE Language
431
Chengsong
parents:
diff changeset
   452
Chengsong
parents:
diff changeset
   453
  // bnullable function: tests whether the aregular 
Chengsong
parents:
diff changeset
   454
  // expression can recognise the empty string
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   455
  def bnullable (r: ARexp) : Boolean = r match {
431
Chengsong
parents:
diff changeset
   456
    case AZERO => false
Chengsong
parents:
diff changeset
   457
    case AONE(_) => true
Chengsong
parents:
diff changeset
   458
    case ACHAR(_,_) => false
Chengsong
parents:
diff changeset
   459
    case AALTS(_, rs) => rs.exists(bnullable)
Chengsong
parents:
diff changeset
   460
    case ASEQ(_, r1, r2) => bnullable(r1) && bnullable(r2)
Chengsong
parents:
diff changeset
   461
    case ASTAR(_, _) => true
Chengsong
parents:
diff changeset
   462
    case ANOT(_, rn) => !bnullable(rn)
Chengsong
parents:
diff changeset
   463
  }
Chengsong
parents:
diff changeset
   464
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   465
  def mkepsBC(r: ARexp) : Bits = r match {
431
Chengsong
parents:
diff changeset
   466
    case AONE(bs) => bs
Chengsong
parents:
diff changeset
   467
    case AALTS(bs, rs) => {
Chengsong
parents:
diff changeset
   468
      val n = rs.indexWhere(bnullable)
Chengsong
parents:
diff changeset
   469
      bs ++ mkepsBC(rs(n))
Chengsong
parents:
diff changeset
   470
    }
Chengsong
parents:
diff changeset
   471
    case ASEQ(bs, r1, r2) => bs ++ mkepsBC(r1) ++ mkepsBC(r2)
Chengsong
parents:
diff changeset
   472
    case ASTAR(bs, r) => bs ++ List(Z)
Chengsong
parents:
diff changeset
   473
    case ANOT(bs, rn) => bs
Chengsong
parents:
diff changeset
   474
  }
Chengsong
parents:
diff changeset
   475
Chengsong
parents:
diff changeset
   476
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   477
  def bder(c: Char, r: ARexp) : ARexp = r match {
431
Chengsong
parents:
diff changeset
   478
    case AZERO => AZERO
Chengsong
parents:
diff changeset
   479
    case AONE(_) => AZERO
Chengsong
parents:
diff changeset
   480
    case ACHAR(bs, f) => if (c == f) AONE(bs) else AZERO
Chengsong
parents:
diff changeset
   481
    case AALTS(bs, rs) => AALTS(bs, rs.map(bder(c, _)))
Chengsong
parents:
diff changeset
   482
    case ASEQ(bs, r1, r2) => 
Chengsong
parents:
diff changeset
   483
      if (bnullable(r1)) AALTS(bs, ASEQ(Nil, bder(c, r1), r2) :: fuse(mkepsBC(r1), bder(c, r2)) :: Nil )
Chengsong
parents:
diff changeset
   484
      else ASEQ(bs, bder(c, r1), r2)
Chengsong
parents:
diff changeset
   485
    case ASTAR(bs, r) => ASEQ(bs, fuse(List(S), bder(c, r)), ASTAR(Nil, r))
Chengsong
parents:
diff changeset
   486
    case ANOT(bs, rn) => ANOT(bs, bder(c, rn))
Chengsong
parents:
diff changeset
   487
    case AANYCHAR(bs) => AONE(bs)
Chengsong
parents:
diff changeset
   488
  } 
Chengsong
parents:
diff changeset
   489
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   490
  def fuse(bs: Bits, r: ARexp) : ARexp = r match {
431
Chengsong
parents:
diff changeset
   491
    case AZERO => AZERO
Chengsong
parents:
diff changeset
   492
    case AONE(cs) => AONE(bs ++ cs)
Chengsong
parents:
diff changeset
   493
    case ACHAR(cs, f) => ACHAR(bs ++ cs, f)
Chengsong
parents:
diff changeset
   494
    case AALTS(cs, rs) => AALTS(bs ++ cs, rs)
Chengsong
parents:
diff changeset
   495
    case ASEQ(cs, r1, r2) => ASEQ(bs ++ cs, r1, r2)
Chengsong
parents:
diff changeset
   496
    case ASTAR(cs, r) => ASTAR(bs ++ cs, r)
Chengsong
parents:
diff changeset
   497
    case ANOT(cs, r) => ANOT(bs ++ cs, r)
Chengsong
parents:
diff changeset
   498
  }
Chengsong
parents:
diff changeset
   499
Chengsong
parents:
diff changeset
   500
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   501
  def internalise(r: Rexp) : ARexp = r match {
431
Chengsong
parents:
diff changeset
   502
    case ZERO => AZERO
Chengsong
parents:
diff changeset
   503
    case ONE => AONE(Nil)
Chengsong
parents:
diff changeset
   504
    case CHAR(c) => ACHAR(Nil, c)
Chengsong
parents:
diff changeset
   505
    //case PRED(f) => APRED(Nil, f)
Chengsong
parents:
diff changeset
   506
    case ALTS(r1, r2) => 
Chengsong
parents:
diff changeset
   507
      AALTS(Nil, List(fuse(List(Z), internalise(r1)), fuse(List(S), internalise(r2))))
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   508
      // case ALTS(r1::rs) => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   509
      //   val AALTS(Nil, rs2) = internalise(ALTS(rs))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   510
      //   AALTS(Nil, fuse(List(Z), internalise(r1)) :: rs2.map(fuse(List(S), _)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   511
      // }
431
Chengsong
parents:
diff changeset
   512
    case SEQ(r1, r2) => ASEQ(Nil, internalise(r1), internalise(r2))
Chengsong
parents:
diff changeset
   513
    case STAR(r) => ASTAR(Nil, internalise(r))
Chengsong
parents:
diff changeset
   514
    case RECD(x, r) => internalise(r)
Chengsong
parents:
diff changeset
   515
    case NOT(r) => ANOT(Nil, internalise(r))
Chengsong
parents:
diff changeset
   516
    case ANYCHAR => AANYCHAR(Nil)
Chengsong
parents:
diff changeset
   517
  }
Chengsong
parents:
diff changeset
   518
Chengsong
parents:
diff changeset
   519
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   520
  def bsimp(r: ARexp): ARexp = 
431
Chengsong
parents:
diff changeset
   521
  {
Chengsong
parents:
diff changeset
   522
    r match {
Chengsong
parents:
diff changeset
   523
      case ASEQ(bs1, r1, r2) => (bsimp(r1), bsimp(r2)) match {
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   524
        case (AZERO, _) => AZERO
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   525
        case (_, AZERO) => AZERO
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   526
        case (AONE(bs2), r2s) => fuse(bs1 ++ bs2, r2s)
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   527
        case (r1s, r2s) => ASEQ(bs1, r1s, r2s)
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   528
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   529
        case AALTS(bs1, rs) => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   530
          val rs_simp = rs.map(bsimp(_))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   531
          val flat_res = flats(rs_simp)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   532
          val dist_res = distinctBy(flat_res, erase)//strongDB(flat_res)//distinctBy(flat_res, erase)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   533
          dist_res match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   534
            case Nil => AZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   535
            case s :: Nil => fuse(bs1, s)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   536
            case rs => AALTS(bs1, rs)  
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   537
          }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   538
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   539
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   540
            case r => r
431
Chengsong
parents:
diff changeset
   541
    }
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   542
  }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   543
  def strongBsimp(r: ARexp): ARexp =
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   544
  {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   545
    r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   546
      case ASEQ(bs1, r1, r2) => (strongBsimp(r1), strongBsimp(r2)) match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   547
        case (AZERO, _) => AZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   548
        case (_, AZERO) => AZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   549
        case (AONE(bs2), r2s) => fuse(bs1 ++ bs2, r2s)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   550
        case (r1s, r2s) => ASEQ(bs1, r1s, r2s)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   551
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   552
        case AALTS(bs1, rs) => {
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   553
          val rs_simp = rs.map(strongBsimp(_))
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   554
          val flat_res = flats(rs_simp)
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   555
          val dist_res = distinctBy4(flat_res)//distinctBy(flat_res, erase)
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   556
          dist_res match {
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   557
            case Nil => AZERO
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   558
            case s :: Nil => fuse(bs1, s)
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   559
            case rs => AALTS(bs1, rs)  
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   560
          }
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   561
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   562
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   563
            case r => r
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   564
    }
431
Chengsong
parents:
diff changeset
   565
  }
Chengsong
parents:
diff changeset
   566
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   567
  def strongBsimp5(r: ARexp): ARexp =
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   568
  {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   569
    // println("was this called?")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   570
    r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   571
      case ASEQ(bs1, r1, r2) => (strongBsimp5(r1), strongBsimp5(r2)) match {
494
c730d018ebfa blexer2
Chengsong
parents: 493
diff changeset
   572
        case (AZERO, _) => AZERO
c730d018ebfa blexer2
Chengsong
parents: 493
diff changeset
   573
        case (_, AZERO) => AZERO
c730d018ebfa blexer2
Chengsong
parents: 493
diff changeset
   574
        case (AONE(bs2), r2s) => fuse(bs1 ++ bs2, r2s)
c730d018ebfa blexer2
Chengsong
parents: 493
diff changeset
   575
        case (r1s, r2s) => ASEQ(bs1, r1s, r2s)
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   576
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   577
        case AALTS(bs1, rs) => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   578
          // println("alts case")
494
c730d018ebfa blexer2
Chengsong
parents: 493
diff changeset
   579
          val rs_simp = rs.map(strongBsimp5(_))
c730d018ebfa blexer2
Chengsong
parents: 493
diff changeset
   580
          val flat_res = flats(rs_simp)
500
Chengsong
parents: 494
diff changeset
   581
          var dist_res = distinctBy5(flat_res)//distinctBy(flat_res, erase)
518
ff7945a988a3 more to thesis
Chengsong
parents: 516
diff changeset
   582
          // var dist2_res = distinctBy5(dist_res)
ff7945a988a3 more to thesis
Chengsong
parents: 516
diff changeset
   583
          // while(dist_res != dist2_res){
ff7945a988a3 more to thesis
Chengsong
parents: 516
diff changeset
   584
          //   dist_res = dist2_res
ff7945a988a3 more to thesis
Chengsong
parents: 516
diff changeset
   585
          //   dist2_res = distinctBy5(dist_res)
ff7945a988a3 more to thesis
Chengsong
parents: 516
diff changeset
   586
          // }
ff7945a988a3 more to thesis
Chengsong
parents: 516
diff changeset
   587
          (dist_res) match {
ff7945a988a3 more to thesis
Chengsong
parents: 516
diff changeset
   588
            case Nil => AZERO
ff7945a988a3 more to thesis
Chengsong
parents: 516
diff changeset
   589
            case s :: Nil => fuse(bs1, s)
ff7945a988a3 more to thesis
Chengsong
parents: 516
diff changeset
   590
            case rs => AALTS(bs1, rs)  
500
Chengsong
parents: 494
diff changeset
   591
          }
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   592
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   593
            case r => r
518
ff7945a988a3 more to thesis
Chengsong
parents: 516
diff changeset
   594
    }
ff7945a988a3 more to thesis
Chengsong
parents: 516
diff changeset
   595
  }
ff7945a988a3 more to thesis
Chengsong
parents: 516
diff changeset
   596
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   597
  def strongBsimp6(r: ARexp): ARexp =
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   598
  {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   599
    // println("was this called?")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   600
    r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   601
      case ASEQ(bs1, r1, r2) => (strongBsimp6(r1), strongBsimp6(r2)) match {
518
ff7945a988a3 more to thesis
Chengsong
parents: 516
diff changeset
   602
        case (AZERO, _) => AZERO
ff7945a988a3 more to thesis
Chengsong
parents: 516
diff changeset
   603
        case (_, AZERO) => AZERO
ff7945a988a3 more to thesis
Chengsong
parents: 516
diff changeset
   604
        case (AONE(bs2), r2s) => fuse(bs1 ++ bs2, r2s)
530
823d9b19d21c all comments addressed
Chengsong
parents: 526
diff changeset
   605
        case (r1s, AONE(bs2)) => fuse(bs1, r1s) //asserted bs2 == Nil
532
cc54ce075db5 restructured
Chengsong
parents: 530
diff changeset
   606
        //case (r1s, r2s) if(isOne(erase(r1s))) => fuse(bs1 ++ mkepsBC(r1s), r2s)
518
ff7945a988a3 more to thesis
Chengsong
parents: 516
diff changeset
   607
        case (r1s, r2s) => ASEQ(bs1, r1s, r2s)
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   608
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   609
        case AALTS(bs1, rs) => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   610
          // println("alts case")
518
ff7945a988a3 more to thesis
Chengsong
parents: 516
diff changeset
   611
          val rs_simp = rs.map(strongBsimp6(_))
ff7945a988a3 more to thesis
Chengsong
parents: 516
diff changeset
   612
          val flat_res = flats(rs_simp)
ff7945a988a3 more to thesis
Chengsong
parents: 516
diff changeset
   613
          var dist_res = distinctBy6(flat_res)//distinctBy(flat_res, erase)
ff7945a988a3 more to thesis
Chengsong
parents: 516
diff changeset
   614
          (dist_res) match {
494
c730d018ebfa blexer2
Chengsong
parents: 493
diff changeset
   615
            case Nil => AZERO
c730d018ebfa blexer2
Chengsong
parents: 493
diff changeset
   616
            case s :: Nil => fuse(bs1, s)
c730d018ebfa blexer2
Chengsong
parents: 493
diff changeset
   617
            case rs => AALTS(bs1, rs)  
c730d018ebfa blexer2
Chengsong
parents: 493
diff changeset
   618
          }
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   619
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   620
        //(erase(r0))) => AONE(bs)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   621
            case r => r
494
c730d018ebfa blexer2
Chengsong
parents: 493
diff changeset
   622
    }
532
cc54ce075db5 restructured
Chengsong
parents: 530
diff changeset
   623
  }
cc54ce075db5 restructured
Chengsong
parents: 530
diff changeset
   624
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   625
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   626
    def atMostEmpty(r: Rexp) : Boolean = r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   627
      case ZERO => true
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   628
      case ONE => true
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   629
      case STAR(r) => atMostEmpty(r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   630
      case SEQ(r1, r2) => atMostEmpty(r1) && atMostEmpty(r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   631
      case ALTS(r1, r2) => atMostEmpty(r1) && atMostEmpty(r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   632
      case CHAR(_) => false
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   633
    }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   634
533
Chengsong
parents: 532
diff changeset
   635
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   636
    def isOne(r: Rexp) : Boolean = r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   637
      case ONE => true
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   638
      case SEQ(r1, r2) => isOne(r1) && isOne(r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   639
      case ALTS(r1, r2) => (isOne(r1) || isOne(r2)) && (atMostEmpty(r1) && atMostEmpty(r2))//rs.forall(atMostEmpty) && rs.exists(isOne)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   640
      case STAR(r0) => atMostEmpty(r0)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   641
      case CHAR(c) => false
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   642
      case ZERO => false
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   643
    }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   644
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   645
  def distinctWith(rs: List[ARexp], 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   646
    pruneFunction: (ARexp, Set[Rexp]) => ARexp, 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   647
    acc: Set[Rexp] = Set()) : List[ARexp] = 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   648
      rs match{
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   649
        case Nil => Nil
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   650
        case r :: rs => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   651
          if(acc(erase(r)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   652
            distinctWith(rs, pruneFunction, acc)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   653
          else {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   654
            val pruned_r = pruneFunction(r, acc)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   655
            pruned_r :: 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   656
            distinctWith(rs, 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   657
              pruneFunction, 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   658
              turnIntoTerms(erase(pruned_r)) ++: acc
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   659
              )
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   660
          }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   661
      }
532
cc54ce075db5 restructured
Chengsong
parents: 530
diff changeset
   662
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   663
    //r = r' ~ tail' : If tail' matches tail => returns r'
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   664
    def removeSeqTail(r: Rexp, tail: Rexp) : Rexp = r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   665
      case SEQ(r1, r2) => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   666
        if(r2 == tail) 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   667
          r1
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   668
        else
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   669
          ZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   670
      case r => ZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   671
    }
532
cc54ce075db5 restructured
Chengsong
parents: 530
diff changeset
   672
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   673
    def prune(r: ARexp, acc: Set[Rexp]) : ARexp = r match{
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   674
      case AALTS(bs, rs) => rs.map(r => prune(r, acc)).filter(_ != ZERO) match
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   675
      {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   676
        //all components have been removed, meaning this is effectively a duplicate
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   677
        //flats will take care of removing this AZERO 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   678
        case Nil => AZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   679
        case r::Nil => fuse(bs, r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   680
        case rs1 => AALTS(bs, rs1)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   681
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   682
      case ASEQ(bs, r1, r2) => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   683
        //remove the r2 in (ra + rb)r2 to identify the duplicate contents of r1
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   684
        prune(r1, acc.map(r => removeSeqTail(r, erase(r2)))) match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   685
          //after pruning, returns 0
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   686
          case AZERO => AZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   687
          //after pruning, got r1'.r2, where r1' is equal to 1
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   688
          case r1p if(isOne(erase(r1p))) => fuse(bs ++ mkepsBC(r1p), r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   689
          //assemble the pruned head r1p with r2
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   690
          case r1p => ASEQ(bs, r1p, r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   691
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   692
        //this does the duplicate component removal task
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   693
      case r => if(acc(erase(r))) AZERO else r
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   694
    }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   695
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   696
    //a stronger version of simp
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   697
    def bsimpStrong(r: ARexp): ARexp =
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   698
    {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   699
      r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   700
        case ASEQ(bs1, r1, r2) => (bsimpStrong(r1), bsimpStrong(r2)) match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   701
          //normal clauses same as simp
532
cc54ce075db5 restructured
Chengsong
parents: 530
diff changeset
   702
        case (AZERO, _) => AZERO
cc54ce075db5 restructured
Chengsong
parents: 530
diff changeset
   703
        case (_, AZERO) => AZERO
cc54ce075db5 restructured
Chengsong
parents: 530
diff changeset
   704
        case (AONE(bs2), r2s) => fuse(bs1 ++ bs2, r2s)
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   705
        //bs2 can be discarded
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   706
        case (r1s, AONE(bs2)) => fuse(bs1, r1s) //assert bs2 == Nil
532
cc54ce075db5 restructured
Chengsong
parents: 530
diff changeset
   707
        case (r1s, r2s) => ASEQ(bs1, r1s, r2s)
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   708
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   709
        case AALTS(bs1, rs) => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   710
          //distinctBy(flat_res, erase)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   711
          distinctWith(flats(rs.map(bsimpStrong(_))), prune) match {
532
cc54ce075db5 restructured
Chengsong
parents: 530
diff changeset
   712
            case Nil => AZERO
cc54ce075db5 restructured
Chengsong
parents: 530
diff changeset
   713
            case s :: Nil => fuse(bs1, s)
cc54ce075db5 restructured
Chengsong
parents: 530
diff changeset
   714
            case rs => AALTS(bs1, rs)  
cc54ce075db5 restructured
Chengsong
parents: 530
diff changeset
   715
          }
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   716
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   717
        //stars that can be treated as 1
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   718
        case ASTAR(bs, r0) if(atMostEmpty(erase(r0))) => AONE(bs)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   719
        case r => r
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   720
      }
532
cc54ce075db5 restructured
Chengsong
parents: 530
diff changeset
   721
    }
431
Chengsong
parents:
diff changeset
   722
Chengsong
parents:
diff changeset
   723
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   724
    def bders (s: List[Char], r: ARexp) : ARexp = s match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   725
      case Nil => r
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   726
      case c::s => bders(s, bder(c, r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   727
    }
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   728
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   729
    def flats(rs: List[ARexp]): List[ARexp] = rs match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   730
      case Nil => Nil
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   731
      case AZERO :: rs1 => flats(rs1)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   732
      case AALTS(bs, rs1) :: rs2 => rs1.map(fuse(bs, _)) ::: flats(rs2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   733
      case r1 :: rs2 => r1 :: flats(rs2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   734
    }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   735
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   736
    def distinctBy[B, C](xs: List[B], f: B => C, acc: List[C] = Nil): List[B] = xs match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   737
      case Nil => Nil
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   738
      case (x::xs) => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   739
        val res = f(x)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   740
        if (acc.contains(res)) distinctBy(xs, f, acc)  
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   741
        else x::distinctBy(xs, f, res::acc)
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   742
      }
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   743
    } 
431
Chengsong
parents:
diff changeset
   744
Chengsong
parents:
diff changeset
   745
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   746
    def pruneRexp(r: ARexp, allowableTerms: List[Rexp]) : ARexp = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   747
      r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   748
        case ASEQ(bs, r1, r2) => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   749
          val termsTruncated = allowableTerms.collect(rt => rt match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   750
            case SEQ(r1p, r2p) if(r2p == erase(r2)) => r1p//if(r2p == erase(r2)) 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   751
          })
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   752
          val pruned : ARexp = pruneRexp(r1, termsTruncated)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   753
          pruned match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   754
            case AZERO => AZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   755
            case AONE(bs1) => fuse(bs ++ bs1, r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   756
            case pruned1 => ASEQ(bs, pruned1, r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   757
          }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   758
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   759
            case AALTS(bs, rs) => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   760
              //allowableTerms.foreach(a => println(shortRexpOutput(a)))        
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   761
              val rsp = rs.map(r => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   762
                  pruneRexp(r, allowableTerms)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   763
                  )
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   764
                    .filter(r => r != AZERO)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   765
                    rsp match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   766
                      case Nil => AZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   767
                      case r1::Nil => fuse(bs, r1)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   768
                      case rs1 => AALTS(bs, rs1)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   769
                    }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   770
                      case r => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   771
                        if(allowableTerms.contains(erase(r))) r else AZERO //assert(r != AZERO)
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   772
      }
431
Chengsong
parents:
diff changeset
   773
    }
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   774
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   775
    def oneSimp(r: Rexp) : Rexp = r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   776
      case SEQ(ONE, r) => r
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   777
      case SEQ(r1, r2) => SEQ(oneSimp(r1), r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   778
      case r => r//assert r != 0 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   779
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   780
    }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   781
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   782
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   783
    def distinctBy4(xs: List[ARexp], acc: List[Rexp] = Nil) : List[ARexp] = xs match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   784
      case Nil => Nil
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   785
      case x :: xs =>
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   786
        //assert(acc.distinct == acc)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   787
        val erased = erase(x)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   788
        if(acc.contains(erased))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   789
          distinctBy4(xs, acc)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   790
        else{
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   791
          val addToAcc =  breakIntoTerms(erased).filter(r => !acc.contains(oneSimp(r)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   792
          //val xp = pruneRexp(x, addToAcc)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   793
          pruneRexp(x, addToAcc) match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   794
            case AZERO => distinctBy4(xs, addToAcc.map(oneSimp(_)) ::: acc)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   795
            case xPrime => xPrime :: distinctBy4(xs, addToAcc.map(oneSimp(_)) ::: acc)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   796
          }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   797
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   798
    }
494
c730d018ebfa blexer2
Chengsong
parents: 493
diff changeset
   799
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   800
    // fun pAKC_aux :: "arexp list ⇒ arexp ⇒ rexp ⇒ arexp"
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   801
    //   where
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   802
    // "pAKC_aux rsa r ctx = (if (seqFold (SEQ (erase r) ( ctx) )) ⊆ (seqFold (erase (AALTs [] rsa))) then AZERO else
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   803
    //                           case r of (ASEQ bs r1 r2) ⇒ 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   804
    //                             bsimp_ASEQ bs (pAKC_aux rsa r1 (SEQ  (erase r2) ( ctx) )) r2   |
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   805
    //                                     (AALTs bs rs) ⇒ 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   806
    //                             bsimp_AALTs bs (flts (map (λr. pAKC_aux rsa r ( ctx) ) rs) )    |
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   807
    //                                     r             ⇒ r
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   808
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   809
    // def canonicalSeq(rs: List[Rexp], acc: Rexp) = rs match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   810
    //   case r::Nil => SEQ(r, acc)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   811
    //   case Nil => acc
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   812
    //   case r1::r2::Nil => SEQ(SEQ(r1, r2), acc)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   813
    // }
494
c730d018ebfa blexer2
Chengsong
parents: 493
diff changeset
   814
c730d018ebfa blexer2
Chengsong
parents: 493
diff changeset
   815
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   816
    //the "fake" Language interpretation: just concatenates!
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   817
    def seqFold(acc: Rexp, rs: List[Rexp]) : Rexp = rs match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   818
      case Nil => acc
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   819
      case r :: rs1 => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   820
        // if(acc == ONE) 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   821
        //   seqFold(r, rs1) 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   822
        // else
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   823
        seqFold(SEQ(acc, r), rs1)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   824
    }
494
c730d018ebfa blexer2
Chengsong
parents: 493
diff changeset
   825
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   826
    def rprint(r: Rexp) : Unit = println(shortRexpOutput(r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   827
    def rsprint(rs: Iterable[Rexp]) = rs.foreach(r => println(shortRexpOutput(r)))
500
Chengsong
parents: 494
diff changeset
   828
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   829
    def aprint(a: ARexp) = println(shortRexpOutput(erase(a)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   830
    def asprint(as: List[ARexp]) = as.foreach(a => println(shortRexpOutput(erase(a))))
500
Chengsong
parents: 494
diff changeset
   831
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   832
    def pAKC(acc: List[Rexp], r: ARexp, ctx: List[Rexp]) : ARexp = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   833
      // println("pakc")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   834
      // println(shortRexpOutput(erase(r)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   835
      // println("acc")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   836
      // rsprint(acc)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   837
      // println("ctx---------")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   838
      // rsprint(ctx)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   839
      // println("ctx---------end")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   840
      // rsprint(breakIntoTerms(seqFold(erase(r), ctx)).map(oneSimp))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   841
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   842
      if (breakIntoTerms(seqFold(erase(r), ctx)).map(oneSimp).forall(acc.contains)) {//acc.flatMap(breakIntoTerms
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   843
        AZERO
494
c730d018ebfa blexer2
Chengsong
parents: 493
diff changeset
   844
      }
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   845
      else{
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   846
        r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   847
          case ASEQ(bs, r1, r2) => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   848
            (pAKC(acc, r1, erase(r2) :: ctx)) match{
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   849
              case AZERO => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   850
                AZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   851
              case AONE(bs1) => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   852
                fuse(bs1, r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   853
              case r1p => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   854
                ASEQ(bs, r1p, r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   855
            }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   856
              case AALTS(bs, rs0) => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   857
                // println("before pruning")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   858
                // println(s"ctx is ")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   859
                // ctx.foreach(r => println(shortRexpOutput(r)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   860
                // println(s"rs0 is ")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   861
                // rs0.foreach(r => println(shortRexpOutput(erase(r))))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   862
                // println(s"acc is ")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   863
                // acc.foreach(r => println(shortRexpOutput(r)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   864
                rs0.map(r => pAKC(acc, r, ctx)).filter(_ != AZERO) match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   865
                  case Nil => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   866
                    // println("after pruning Nil")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   867
                    AZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   868
                  case r :: Nil => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   869
                    // println("after pruning singleton")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   870
                    // println(shortRexpOutput(erase(r)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   871
                    r 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   872
                  case rs0p => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   873
                    // println("after pruning non-singleton")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   874
                    AALTS(bs, rs0p)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   875
                }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   876
                  case r => r
494
c730d018ebfa blexer2
Chengsong
parents: 493
diff changeset
   877
        }
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   878
      }
494
c730d018ebfa blexer2
Chengsong
parents: 493
diff changeset
   879
    }
c730d018ebfa blexer2
Chengsong
parents: 493
diff changeset
   880
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   881
    def distinctBy5(xs: List[ARexp], acc: List[Rexp] = Nil) : List[ARexp] = xs match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   882
      case Nil => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   883
        Nil
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   884
      case x :: xs => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   885
        val erased = erase(x)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   886
        if(acc.contains(erased)){
494
c730d018ebfa blexer2
Chengsong
parents: 493
diff changeset
   887
          distinctBy5(xs, acc)
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   888
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   889
        else{
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   890
          val pruned = pAKC(acc, x, Nil)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   891
          val newTerms = breakIntoTerms(erase(pruned))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   892
          pruned match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   893
            case AZERO => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   894
              distinctBy5(xs, acc)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   895
            case xPrime => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   896
              xPrime :: distinctBy5(xs, newTerms.map(oneSimp) ::: acc)//distinctBy5(xs, addToAcc.map(oneSimp(_)) ::: acc)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   897
          }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   898
        }
494
c730d018ebfa blexer2
Chengsong
parents: 493
diff changeset
   899
      }
c730d018ebfa blexer2
Chengsong
parents: 493
diff changeset
   900
    }
431
Chengsong
parents:
diff changeset
   901
Chengsong
parents:
diff changeset
   902
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   903
    def isOne1(r: Rexp) : Boolean = r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   904
      case ONE => true
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   905
      case SEQ(r1, r2) => false//isOne1(r1) && isOne1(r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   906
      case ALTS(r1, r2) => false//(isOne1(r1) || isOne1(r2)) && (atMostEmpty(r1) && atMostEmpty(r2))//rs.forall(atMostEmpty) && rs.exists(isOne)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   907
      case STAR(r0) => false//atMostEmpty(r0)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   908
      case CHAR(c) => false
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   909
      case ZERO => false
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   910
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   911
    }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   912
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   913
    def turnIntoTerms(r: Rexp): List[Rexp] = r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   914
      case SEQ(r1, r2)  => if(isOne1(r1)) 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   915
      turnIntoTerms(r2) 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   916
    else 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   917
      turnIntoTerms(r1).flatMap(r11 => furtherSEQ(r11, r2))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   918
      case ALTS(r1, r2) => turnIntoTerms(r1) ::: turnIntoTerms(r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   919
      case ZERO => Nil
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   920
      case _ => r :: Nil
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   921
    }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   922
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   923
    def furtherSEQ(r11: Rexp, r2: Rexp) : List[Rexp] = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   924
      if(r11 == ONE)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   925
        turnIntoTerms(r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   926
      else
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   927
        SEQ(r11, r2) :: Nil
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   928
    }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   929
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   930
    def attachCtx(r: ARexp, ctx: List[Rexp]) : Set[Rexp] = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   931
      turnIntoTerms((seqFold(erase(r), ctx)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   932
        .toSet
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   933
    }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   934
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   935
    def attachCtxcc(r: Rexp, ctx: List[Rexp]) : Set[Rexp] =
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   936
      turnIntoTerms(seqFold(r, ctx)).toSet
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   937
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   938
    def ABIncludedByC[A, B, C](a: A, b: B, c: C, f: (A, B) => C, 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   939
      subseteqPred: (C, C) => Boolean) : Boolean = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   940
        subseteqPred(f(a, b), c)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   941
    }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   942
      def rs1_subseteq_rs2(rs1: Set[Rexp], rs2: Set[Rexp]) : Boolean = 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   943
        //rs1 \subseteq rs2
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   944
      rs1.forall(rs2.contains)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   945
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   946
      def prune6(acc: Set[Rexp], r: ARexp, ctx: List[Rexp] = Nil) : ARexp = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   947
        if (ABIncludedByC(a = r, b = ctx, c = acc, 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   948
          f = attachCtx, subseteqPred = rs1_subseteq_rs2)) 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   949
          {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   950
            AZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   951
          }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   952
          else{
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   953
            r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   954
              case ASEQ(bs, r1, r2) => (prune6(acc, r1, erase(r2) :: ctx)) match{
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   955
                case AZERO => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   956
                  AZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   957
                case AONE(bs1) => //when r1 becomes 1, chances to further prune r2
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   958
                  prune6(acc, fuse(bs1, r2), ctx)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   959
                case r1p => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   960
                  ASEQ(bs, r1p, r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   961
              }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   962
                case AALTS(bs, rs0) => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   963
                  rs0.map(r => prune6(acc, r, ctx)).filter(_ != AZERO) match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   964
                    case Nil => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   965
                      AZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   966
                    case r :: Nil => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   967
                      fuse(bs, r) 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   968
                    case rs0p => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   969
                      AALTS(bs, rs0p)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   970
                  }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   971
                    case r => r
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   972
            }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   973
          }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   974
      }
431
Chengsong
parents:
diff changeset
   975
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   976
      def prune6cc(acc: Set[Rexp], r: Rexp, ctx: List[Rexp]) : Rexp = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   977
        if (ABIncludedByC(a = r, b = ctx, c = acc, 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   978
          f = attachCtxcc, subseteqPred = rs1_subseteq_rs2)) 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   979
          {//acc.flatMap(breakIntoTerms
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   980
            ZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   981
          }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   982
          else{
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   983
            r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   984
              case SEQ(r1, r2) => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   985
                (prune6cc(acc, r1, r2 :: ctx)) match{
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   986
                  case ZERO => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   987
                    ZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   988
                  case ONE => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   989
                    r2
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   990
                  case r1p => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   991
                    SEQ(r1p, r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   992
                }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   993
                  case ALTS(r1, r2) => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   994
                    List(r1, r2).map(r => prune6cc(acc, r, ctx)).filter(_ != AZERO) match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   995
                      case Nil => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   996
                        ZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   997
                      case r :: Nil => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   998
                        r 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   999
                      case ra :: rb :: Nil => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1000
                        ALTS(ra, rb)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1001
                    }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1002
                      case r => r
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1003
            }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1004
          }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1005
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1006
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1007
      def distinctBy6(xs: List[ARexp], acc: Set[Rexp] = Set()) : 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1008
      List[ARexp] = xs match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1009
        case Nil => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1010
          Nil
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1011
        case x :: xs => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1012
          val erased = erase(x)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1013
          if(acc.contains(erased)){
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1014
            distinctBy6(xs, acc)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1015
          }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1016
          else{
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1017
            val pruned = prune6(acc, x)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1018
            val newTerms = turnIntoTerms(erase(pruned))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1019
            pruned match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1020
              case AZERO => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1021
                distinctBy6(xs, acc)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1022
              case xPrime => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1023
                xPrime :: distinctBy6(xs, newTerms ++: acc)//distinctBy5(xs, addToAcc.map(oneSimp(_)) ::: acc)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1024
            }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1025
          }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1026
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1027
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1028
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1029
      def distinctByacc(xs: List[Rexp], acc: Set[Rexp] = Set()) : Set[Rexp] = xs match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1030
        case Nil => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1031
          acc
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1032
        case x :: xs => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1033
          if(acc.contains(x)){
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1034
            distinctByacc(xs, acc)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1035
          }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1036
          else{
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1037
            val pruned = prune6cc(acc, x, Nil)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1038
            val newTerms = turnIntoTerms(pruned)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1039
            pruned match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1040
              case ZERO => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1041
                distinctByacc(xs, acc)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1042
              case xPrime => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1043
                distinctByacc(xs, newTerms.map(oneSimp) ++: acc)//distinctBy5(xs, addToAcc.map(oneSimp(_)) ::: acc)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1044
            }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1045
          }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1046
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1047
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1048
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1049
      def breakIntoTerms(r: Rexp) : List[Rexp] = r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1050
        case SEQ(r1, r2)  => breakIntoTerms(r1).map(r11 => SEQ(r11, r2))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1051
        case ALTS(r1, r2) => breakIntoTerms(r1) ::: breakIntoTerms(r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1052
        case ZERO => Nil
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1053
        case _ => r::Nil
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1054
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1055
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1056
      def flatsIntoTerms(r: Rexp) : List[Rexp] = r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1057
        //case SEQ(r1, r2)  => flatsIntoTerms(r1).map(r11 => SEQ(r11, r2))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1058
        case ALTS(r1, r2) => flatsIntoTerms(r1) ::: flatsIntoTerms(r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1059
        case ZERO => Nil
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1060
        case _ => r::Nil
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1061
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1062
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1063
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1064
      def decode_aux(r: Rexp, bs: Bits) : (Val, Bits) = (r, bs) match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1065
        case (ONE, bs) => (Empty, bs)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1066
        case (CHAR(f), bs) => (Chr(f), bs)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1067
        case (ALTS(r1, r2), Z::bs1) => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1068
          val (v, bs2) = decode_aux(r1, bs1)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1069
          (Left(v), bs2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1070
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1071
        case (ALTS(r1, r2), S::bs1) => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1072
          val (v, bs2) = decode_aux(r2, bs1)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1073
          (Right(v), bs2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1074
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1075
        case (SEQ(r1, r2), bs) => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1076
          val (v1, bs1) = decode_aux(r1, bs)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1077
          val (v2, bs2) = decode_aux(r2, bs1)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1078
          (Sequ(v1, v2), bs2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1079
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1080
        case (STAR(r1), S::bs) => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1081
          val (v, bs1) = decode_aux(r1, bs)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1082
          //(v)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1083
          val (Stars(vs), bs2) = decode_aux(STAR(r1), bs1)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1084
          (Stars(v::vs), bs2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1085
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1086
        case (STAR(_), Z::bs) => (Stars(Nil), bs)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1087
        case (RECD(x, r1), bs) => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1088
          val (v, bs1) = decode_aux(r1, bs)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1089
          (Rec(x, v), bs1)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1090
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1091
        case (NOT(r), bs) => (Nots(r.toString), bs)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1092
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1093
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1094
      def decode(r: Rexp, bs: Bits) = decode_aux(r, bs) match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1095
        case (v, Nil) => v
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1096
        case _ => throw new Exception("Not decodable")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1097
      }
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
  1098
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
  1099
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
  1100
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1101
      def blexing_simp(r: Rexp, s: String) : Val = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1102
        val bit_code = blex_simp(internalise(r), s.toList)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1103
        decode(r, bit_code)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1104
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1105
      def simpBlexer(r: Rexp, s: String) : Val = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1106
        Try(blexing_simp(r, s)).getOrElse(Failure)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1107
      }
431
Chengsong
parents:
diff changeset
  1108
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1109
      def strong_blexing_simp(r: Rexp, s: String) : Val = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1110
        decode(r, strong_blex_simp(internalise(r), s.toList))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1111
      }
431
Chengsong
parents:
diff changeset
  1112
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1113
      def strong_blexing_simp5(r: Rexp, s: String) : Val = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1114
        decode(r, strong_blex_simp5(internalise(r), s.toList))
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
  1115
      }
431
Chengsong
parents:
diff changeset
  1116
Chengsong
parents:
diff changeset
  1117
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
  1118
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
  1119
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1120
      //def blexerStrong(r: ARexp, s: String) : Val = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1121
      //  Try(strong_blexing_simp(r, s)).getOrElse(Failure)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1122
      //}
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1123
      def strongBlexer5(r: Rexp, s: String): Val = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1124
        Try(strong_blexing_simp5(r, s)).getOrElse(Failure)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1125
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1126
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1127
      def strongBlexer(r: Rexp, s: String) : Option[Val] = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1128
        Try(Some(decode(r, strong_blex_simp(internalise(r), s.toList)))).getOrElse(None)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1129
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1130
      def strong_blex_simp(r: ARexp, s: List[Char]) : Bits = s match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1131
        case Nil => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1132
          if (bnullable(r)) {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1133
            mkepsBC(r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1134
          }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1135
          else 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1136
            throw new Exception("Not matched")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1137
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1138
        case c::cs => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1139
          strong_blex_simp(strongBsimp(bder(c, r)), cs)      
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1140
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1141
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1142
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1143
      def strong_blex_simp5(r: ARexp, s: List[Char]) : Bits = s match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1144
        case Nil => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1145
          if (bnullable(r)) {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1146
            val bits = mkepsBC(r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1147
            bits
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1148
          }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1149
          else 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1150
            throw new Exception("Not matched")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1151
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1152
        case c::cs => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1153
          val der_res = bder(c,r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1154
          val simp_res = strongBsimp5(der_res)  
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1155
          strong_blex_simp5(simp_res, cs)      
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1156
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1157
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1158
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1159
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1160
      def bders_simp(s: List[Char], r: ARexp) : ARexp = s match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1161
        case Nil => r
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1162
        case c::s => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1163
          //println(erase(r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1164
          bders_simp(s, bsimp(bder(c, r)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1165
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1166
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1167
      def bdersStrong5(s: List[Char], r: ARexp) : ARexp = s match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1168
        case Nil => r
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1169
        case c::s => bdersStrong5(s, strongBsimp5(bder(c, r)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1170
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1171
      def bdersStrong6(s: List[Char], r: ARexp) : ARexp = s match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1172
        case Nil => r
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1173
        case c::s => bdersStrong6(s, strongBsimp6(bder(c, r)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1174
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1175
      //Conjecture: [| bdersStrong(s, r) |] = O([| r |]^3)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1176
      def bdersStrong(s: List[Char], r: ARexp) : ARexp = s match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1177
        case Nil => r
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1178
        case c::s => bdersStrong(s, bsimpStrong(bder(c, r)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1179
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1180
      def bdersSimp(s: String, r: Rexp) : ARexp = bders_simp(s.toList, internalise(r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1181
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1182
      //def bdersStrong(s: List[Char], r: ARexp) : ARexp = s match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1183
      //  case Nil => r 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1184
      //  case c::s => bdersStrong(s, strongBsimp(bder(c, r)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1185
      //}
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1186
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1187
      def bdersStrongRexp(s: String, r: Rexp) : ARexp = bdersStrong(s.toList, internalise(r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1188
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1189
      def erase(r:ARexp): Rexp = r match{
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1190
        case AZERO => ZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1191
        case AONE(_) => ONE
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1192
        case ACHAR(bs, c) => CHAR(c)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1193
        case AALTS(bs, Nil) => ZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1194
        case AALTS(bs, a::Nil) => erase(a)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1195
        case AALTS(bs, a::as) => ALTS(erase(a), erase(AALTS(bs, as)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1196
        case ASEQ(bs, r1, r2) => SEQ (erase(r1), erase(r2))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1197
        case ASTAR(cs, r)=> STAR(erase(r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1198
        case ANOT(bs, r) => NOT(erase(r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1199
        case AANYCHAR(bs) => ANYCHAR
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1200
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1201
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1202
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1203
      def allCharSeq(r: Rexp) : Boolean = r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1204
        case CHAR(c) => true
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1205
        case SEQ(r1, r2) => allCharSeq(r1) && allCharSeq(r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1206
        case _ => false
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1207
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1208
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1209
      def flattenSeq(r: Rexp) : String = r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1210
        case CHAR(c) => c.toString
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1211
        case SEQ(r1, r2) => flattenSeq(r1) ++ flattenSeq(r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1212
        case _ => throw new Error("flatten unflattenable rexp")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1213
      } 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1214
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1215
      def shortRexpOutput(r: Rexp) : String = r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1216
        case CHAR(c) => c.toString
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1217
        case ONE => "1"
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1218
        case ZERO => "0"
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1219
        case SEQ(r1, r2) if(allCharSeq(r)) => flattenSeq(r)//"[" ++ shortRexpOutput(r1) ++ "~" ++ shortRexpOutput(r2) ++ "]"
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1220
        case SEQ(r1, r2) => "[" ++ shortRexpOutput(r1) ++ "~" ++ shortRexpOutput(r2) ++ "]"
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1221
        case ALTS(r1, r2) => "(" ++ shortRexpOutput(r1) ++ "+" ++ shortRexpOutput(r2) ++ ")"
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1222
        case STAR(STAR(r)) => "(..)*"// ++ shortRexpOutput(r) ++ "]*"
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1223
        case STAR(r) => "STAR(" ++ shortRexpOutput(r) ++ ")"
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1224
        //case RTOP => "RTOP"
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1225
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1226
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1227
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1228
      def blex_simp(r: ARexp, s: List[Char]) : Bits = s match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1229
        case Nil => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1230
          if (bnullable(r)) {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1231
            val bits = mkepsBC(r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1232
            bits
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1233
          }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1234
          else 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1235
            throw new Exception("Not matched")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1236
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1237
        case c::cs => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1238
          val der_res = bder(c,r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1239
          val simp_res = bsimp(der_res)  
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1240
          blex_simp(simp_res, cs)      
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1241
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1242
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1243
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1244
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1245
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1246
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1247
      def size(r: Rexp) : Int = r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1248
        case ZERO => 1
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1249
        case ONE => 1
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1250
        case CHAR(_) => 1
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1251
        case ANYCHAR => 1
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1252
        case NOT(r0) => 1 + size(r0)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1253
        case SEQ(r1, r2) => 1 + size(r1) + size(r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1254
        case ALTS(r1, r2) => 1 + List(r1, r2).map(size).sum
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1255
        case STAR(r) => 1 + size(r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1256
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1257
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1258
      def asize(a: ARexp) = size(erase(a))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1259
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1260
      //pder related
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1261
      type Mon = (Char, Rexp)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1262
      type Lin = Set[Mon]
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1263
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1264
      def dot_prod(rs: Set[Rexp], r: Rexp): Set[Rexp] = r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1265
        case ZERO => Set()
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1266
        case ONE => rs
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1267
        case r => rs.map((re) => if (re == ONE) r else SEQ(re, r)  )   
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1268
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1269
      def cir_prod(l: Lin, t: Rexp): Lin = t match {//remember this Lin is different from the Lin in Antimirov's paper. Here it does not mean the set of all subsets of linear forms that does not contain zero, but rather the type a set of linear forms
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1270
        case ZERO => Set()
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1271
        // case ONE => l
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1272
        case t => l.map( m => m._2 match 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1273
        {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1274
          case ZERO => m 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1275
          case ONE => (m._1, t) 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1276
          case p => (m._1, SEQ(p, t)) 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1277
        }  
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1278
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1279
        )
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1280
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1281
      def cir_prodList(l : List[Mon], t: Rexp): List[Mon] = t match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1282
        case ZERO => Nil
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1283
        case ONE => l
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1284
        case t => l.map(m => m._2 match
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1285
        {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1286
          case ZERO => m
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1287
          case ONE => (m._1, t)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1288
          case p => (m._1, SEQ(p, t))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1289
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1290
        )
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1291
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1292
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1293
      def lfList(r: Rexp) : List[Mon] = r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1294
        case ZERO => Nil
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1295
        case ONE => Nil
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1296
        case CHAR(f) => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1297
          (f, ONE) :: Nil
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1298
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1299
        case ALTS(r1, r2) => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1300
          lfList(r1) ++ lfList(r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1301
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1302
        case STAR(r1) => cir_prodList(lfList(r1), STAR(r1))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1303
        case SEQ(r1, r2) => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1304
          if(nullable(r1))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1305
            cir_prodList(lfList(r1), r2) ++ lfList(r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1306
          else
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1307
            cir_prodList(lfList(r1), r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1308
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1309
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1310
      def lfprint(ls: Lin) = ls.foreach(m =>{
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1311
        println(m._1)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1312
        rprint(m._2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1313
      })
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1314
    def lf(r: Rexp): Lin = r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1315
      case ZERO => Set()
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1316
      case ONE => Set()
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1317
      case CHAR(f) => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1318
        //val Some(c) = alphabet.find(f) 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1319
        Set((f, ONE))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1320
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1321
      case ALTS(r1, r2) => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1322
        lf(r1 ) ++ lf(r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1323
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1324
      case STAR(r1) => cir_prod(lf(r1), STAR(r1)) //may try infix notation later......
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1325
      case SEQ(r1, r2) =>{
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1326
        if (nullable(r1))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1327
          cir_prod(lf(r1), r2) ++ lf(r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1328
        else
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1329
          cir_prod(lf(r1), r2) 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1330
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1331
    }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1332
    def lfs(r: Set[Rexp]): Lin = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1333
      r.foldLeft(Set[Mon]())((acc, r) => acc ++ lf(r))
431
Chengsong
parents:
diff changeset
  1334
    }
Chengsong
parents:
diff changeset
  1335
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1336
    def pder(x: Char, t: Rexp): Set[Rexp] = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1337
      val lft = lf(t)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1338
      (lft.filter(mon => if(mon._1 == x) true else false)).map(mon => mon._2)
543
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1339
    }
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1340
    def pders_single(s: List[Char], t: Rexp) : Set[Rexp] = s match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1341
      case x::xs => pders(xs, pder(x, t))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1342
      case Nil => Set(t)
543
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1343
    }
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1344
    def pders(s: List[Char], ts: Set[Rexp]) : Set[Rexp] = s match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1345
      case x::xs => pders(xs, ts.foldLeft(Set[Rexp]())((acc, t) => acc ++ pder(x, t)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1346
      case Nil => ts 
543
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1347
    }
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1348
    def pderss(ss: List[List[Char]], t: Rexp): Set[Rexp] = 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1349
      ss.foldLeft( Set[Rexp]() )( (acc, s) => pders_single(s, t) ++ acc )
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1350
    def pdera(t: Rexp): Set[Rexp] = lf(t).map(mon => mon._2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1351
    //all implementation of partial derivatives that involve set union are potentially buggy
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1352
    //because they don't include the original regular term before they are pdered.
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1353
    //now only pderas is fixed.
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1354
    def pderas(t: Set[Rexp], d: Int): Set[Rexp] = 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1355
      if(d > 0) 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1356
        pderas(lfs(t).map(mon => mon._2), d - 1) ++ t 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1357
      else 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1358
        lfs(t).map(mon => mon._2) ++ t//repeated application of pderas over the newest set of pders.
431
Chengsong
parents:
diff changeset
  1359
  def pderUNIV(r: Rexp) : Set[Rexp] = pderas(Set(r), awidth(r) + 1)
Chengsong
parents:
diff changeset
  1360
  def awidth(r: Rexp) : Int = r match {
Chengsong
parents:
diff changeset
  1361
    case CHAR(c) => 1
Chengsong
parents:
diff changeset
  1362
    case SEQ(r1, r2) => awidth(r1) + awidth(r2)
Chengsong
parents:
diff changeset
  1363
    case ALTS(r1, r2) => awidth(r1) + awidth(r2)
Chengsong
parents:
diff changeset
  1364
    case ONE => 0
Chengsong
parents:
diff changeset
  1365
    case ZERO => 0
Chengsong
parents:
diff changeset
  1366
    case STAR(r) => awidth(r)
Chengsong
parents:
diff changeset
  1367
  }
Chengsong
parents:
diff changeset
  1368
  //def sigma_lf(l: Set[Mon]) : Rexp = ALTS(l.map(mon => SEQ(CHAR(mon._1),mon._2)).toList)
Chengsong
parents:
diff changeset
  1369
  //def sigma(rs: Set[Rexp]) : Rexp = ALTS(rs.toList)
Chengsong
parents:
diff changeset
  1370
  def o(r: Rexp) = if (nullable(r)) ONE else ZERO
Chengsong
parents:
diff changeset
  1371
  //def nlf(t: Rexp) : Rexp = ALTS(List( o(t), sigma_lf(lf(t)) ))
Chengsong
parents:
diff changeset
  1372
  def pdp(x: Char, r: Rexp) : Set[Rexp] = r match {
Chengsong
parents:
diff changeset
  1373
    case ZERO => Set[Rexp]()
Chengsong
parents:
diff changeset
  1374
    case ONE => Set[Rexp]()
Chengsong
parents:
diff changeset
  1375
    case CHAR(f) => if(x == f) Set(ONE) else Set[Rexp]()
Chengsong
parents:
diff changeset
  1376
    case ALTS(r1, r2) => pdp(x, r1) ++ pdp(x, r2)
Chengsong
parents:
diff changeset
  1377
    case STAR(r1) => pdp(x, r).map(a => SEQ(a, STAR(r1)))
Chengsong
parents:
diff changeset
  1378
    case SEQ(a0, b) => if(nullable(a0)) pdp(x, a0).map(a => SEQ(a, b)) ++ pdp(x, b) else pdp(x, a0).map(a => SEQ(a, b))
Chengsong
parents:
diff changeset
  1379
  }
Chengsong
parents:
diff changeset
  1380
  def pdps(s: List[Char], ts: Set[Rexp]): Set[Rexp] = s match {
Chengsong
parents:
diff changeset
  1381
    case x::xs => pdps(xs, ts.foldLeft(Set[Rexp]())((acc, t) => acc ++ pder(x, t)))
Chengsong
parents:
diff changeset
  1382
    case Nil => ts   
Chengsong
parents:
diff changeset
  1383
  }
Chengsong
parents:
diff changeset
  1384
  def pdpss(ss: List[List[Char]], t: Rexp): Set[Rexp] = ss.foldLeft( Set[Rexp]())((acc, s) => pdps(s, Set(t)) ++ acc)
Chengsong
parents:
diff changeset
  1385
Chengsong
parents:
diff changeset
  1386
Chengsong
parents:
diff changeset
  1387
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1388
  def starPrint(r: Rexp) : Unit = r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1389
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1390
    case SEQ(head, rstar) =>
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1391
      println(shortRexpOutput(head) ++ "~STARREG")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1392
    case STAR(rstar) =>
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1393
      println("STARREG")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1394
    case ALTS(r1, r2) =>  
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1395
      println("(")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1396
      starPrint(r1)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1397
      println("+")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1398
      starPrint(r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1399
      println(")")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1400
    case ZERO => println("0")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1401
  }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1402
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1403
  // @arg(doc = "small tests")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1404
  def n_astar_list(d: Int) : Rexp = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1405
    if(d == 0) STAR("a") 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1406
    else ALTS(STAR("a" * d), n_astar_list(d - 1))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1407
  }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1408
  def n_astar_alts(d: Int) : Rexp = d match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1409
    case 0 => n_astar_list(0)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1410
    case d => STAR(n_astar_list(d))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1411
  }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1412
  def n_astar_alts2(d: Int) : Rexp = d match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1413
    case 0 => n_astar_list(0)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1414
    case d => STAR(STAR(n_astar_list(d)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1415
  }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1416
  def n_astar_aux(d: Int) = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1417
    if(d == 0) n_astar_alts(0)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1418
    else ALTS(n_astar_alts(d), n_astar_alts(d - 1))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1419
  }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1420
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1421
  def n_astar(d: Int) : Rexp = STAR(n_astar_aux(d))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1422
  //val STARREG = n_astar(3)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1423
  // ( STAR("a") | 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1424
  //                  ("a" | "aa").% | 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1425
  //                 ( "a" | "aa" | "aaa").% 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1426
  //                 ).%
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1427
  //( "a" | "aa" | "aaa" | "aaaa").% |
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1428
  //( "a" | "aa" | "aaa" | "aaaa" | "aaaaa").% 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1429
  (((STAR("a") | ( STAR("aaa")) | STAR("aaaaa"| ( STAR("aaaaaaa")) | STAR("aaaaaaaaaaa"))).%).%).%
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1430
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1431
  // @main
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1432
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1433
  def lcm(list: Seq[Int]):Int=list.foldLeft(1:Int){
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1434
    (a, b) => b * a /
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1435
    Stream.iterate((a,b)){case (x,y) => (y, x%y)}.dropWhile(_._2 != 0).head._1.abs
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1436
  }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1437
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1438
  def small() = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1439
    //val pderSTAR = pderUNIV(STARREG)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1440
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1441
    //val refSize = pderSTAR.map(size(_)).sum
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1442
    for(n <- 5 to 5){
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1443
      val STARREG = n_astar_alts2(n)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1444
      val iMax = (lcm((1 to n).toList))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1445
      for(i <- 0 to iMax ){// 100, 400, 800, 840, 841, 900 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1446
        val prog0 = "a" * i
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1447
        //println(s"test: $prog0")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1448
        print(i)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1449
        print(" ")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1450
        // print(i)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1451
        // print(" ")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1452
        println(asize(bders_simp(prog0.toList, internalise(STARREG))))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1453
        // println(asize(bdersStrong(prog0.toList, internalise(STARREG))))
431
Chengsong
parents:
diff changeset
  1454
      }
Chengsong
parents:
diff changeset
  1455
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1456
    }
533
Chengsong
parents: 532
diff changeset
  1457
  }
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1458
  // small()
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
  1459
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1460
  def aaa_star() = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1461
    val r = STAR(("a" | "aa"))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1462
    for(i <- 0 to 20) {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1463
      val prog = "a" * i
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1464
      print(i+" ")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1465
      println(asize(bders_simp(prog.toList, internalise(r))))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1466
      //println(size(ders_simp(prog.toList, r)))
516
6fecb7fe8cd0 blexer2: modified for plotting
Chengsong
parents: 514
diff changeset
  1467
    }
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
  1468
  }
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1469
  // aaa_star()
536
aff7bf93b9c7 comments addressed all
Chengsong
parents: 533
diff changeset
  1470
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1471
  def matching_ways_counting(n: Int): Int = 
573
454ced557605 chapter2 finished polishing
Chengsong
parents: 564
diff changeset
  1472
  {
454ced557605 chapter2 finished polishing
Chengsong
parents: 564
diff changeset
  1473
    if(n == 0) 1
454ced557605 chapter2 finished polishing
Chengsong
parents: 564
diff changeset
  1474
    else if(n == 1) 2
454ced557605 chapter2 finished polishing
Chengsong
parents: 564
diff changeset
  1475
    else (for(i <- 1 to n - 1) 
454ced557605 chapter2 finished polishing
Chengsong
parents: 564
diff changeset
  1476
      yield matching_ways_counting(i) * matching_ways_counting(n - i) ).sum + (n + 1)
454ced557605 chapter2 finished polishing
Chengsong
parents: 564
diff changeset
  1477
  }
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1478
  def naive_matcher() {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1479
    val r = STAR(STAR("a") ~ STAR("a"))
536
aff7bf93b9c7 comments addressed all
Chengsong
parents: 533
diff changeset
  1480
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1481
    // for(i <- 0 to 10) {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1482
    //   val s = "a" * i 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1483
    //   val t1 = System.nanoTime
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1484
    //   matcher(s, r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1485
    //   val duration = (System.nanoTime - t1) / 1e9d
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1486
    //   print(i)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1487
    //   print(" ")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1488
    //   // print(duration)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1489
    //   // print(" ")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1490
    //   (aprint(bders_simp(s.toList, internalise(r))))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1491
    //   //print(size(ders_simp(s.toList, r)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1492
    //   println()
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1493
    // }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1494
    for(i <- 1 to 3) {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1495
      val s = "a" * i
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1496
      val t1 = System.nanoTime
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1497
      val derssimp_result = ders_simp(s.toList, r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1498
      println(i)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1499
      println(matching_ways_counting(i))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1500
      println(size(derssimp_result))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1501
      rprint(derssimp_result)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1502
    }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1503
573
454ced557605 chapter2 finished polishing
Chengsong
parents: 564
diff changeset
  1504
  }
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1505
  naive_matcher()
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1506
  //single(SEQ(SEQ(STAR(CHAR('b')),STAR(STAR(SEQ(CHAR('a'),CHAR('b'))))),
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1507
  //  SEQ(SEQ(CHAR('b'),STAR(ALTS(CHAR('a'),ONE))),ONE)))
543
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1508
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1509
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1510
  //STAR(SEQ(ALTS(CHAR(b),STAR(CHAR(b))),ALTS(ALTS(ONE,CHAR(b)),SEQ(CHAR(c),ONE))))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1511
  def generator_test() {
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
  1512
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1513
    test(single(STAR(SEQ(ALTS(STAR(CHAR('b')),ALTS(CHAR('b'),CHAR('a'))),ALTS(ALTS(CHAR('b'),CHAR('c')),STAR(ZERO))))), 1) { (r: Rexp) => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1514
      // ALTS(SEQ(SEQ(ONE,CHAR('a')),STAR(CHAR('a'))),SEQ(ALTS(CHAR('c'),ONE),STAR(ZERO))))))), 1) { (r: Rexp) => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1515
      val ss = Set("ab")//stringsFromRexp(r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1516
      val boolList = ss.map(s => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1517
        //val bdStrong = bdersStrong(s.toList, internalise(r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1518
        val bdStrong6 = bdersStrong6(s.toList, internalise(r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1519
        val bdStrong6Set = breakIntoTerms(erase(bdStrong6))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1520
        val pdersSet = pderUNIV(r)//.flatMap(r => turnIntoTerms(r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1521
        val pdersSetBroken = pdersSet.flatMap(r => turnIntoTerms(r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1522
        (rs1_subseteq_rs2(bdStrong6Set.toSet, distinctByacc(pdersSet.toList)) ||
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1523
          bdStrong6Set.size <= pdersSet.size || bdStrong6Set.size <= pdersSetBroken.size ||
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1524
          rs1_subseteq_rs2(bdStrong6Set.toSet, pdersSet union pdersSetBroken))//|| bdStrong6Set.size <= pdersSetBroken.size
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1525
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1526
      })
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1527
      //!boolList.exists(b => b == false)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1528
      !boolList.exists(b => b == false)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1529
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1530
    }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1531
    // small()
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1532
    // generator_test()
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1533
543
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1534
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1535
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1536
    //STAR(STAR(STAR(SEQ(SEQ(ALTS(STAR(ALTS(ONE,CHAR('c'))),
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1537
    //  CHAR('c')),ALTS(CHAR('a'),ALTS(STAR(CHAR('b')),ALTS(CHAR('a'),ZERO)))),
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1538
    //  CHAR('c')))))//SEQ(STAR(CHAR('c')),STAR(SEQ(STAR(CHAR('c')),ONE)))//STAR(SEQ(ALTS(STAR(CHAR('c')),CHAR('c')),SEQ(ALTS(CHAR('c'),ONE),ONE)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1539
    //counterexample1: STAR(SEQ(ALTS(STAR(ZERO),ALTS(CHAR(a),CHAR(b))),SEQ(ONE,ALTS(CHAR(a),CHAR(b)))))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1540
    //counterexample2: SEQ(ALTS(SEQ(CHAR(a),STAR(ONE)),STAR(ONE)),ALTS(CHAR(a),SEQ(ALTS(CHAR(c),CHAR(a)),CHAR(b))))
541
5bf9f94c02e1 some comments implemented
Chengsong
parents: 539
diff changeset
  1541
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1542
    //new ce1 : STAR(SEQ(ALTS(ALTS(ONE,CHAR(a)),SEQ(ONE,CHAR(b))),ALTS(CHAR(a),ALTS(CHAR(b),CHAR(a)))))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1543
    //new ce2 : ALTS(CHAR(b),SEQ(ALTS(ZERO,ALTS(CHAR(b),CHAR(b))),ALTS(ALTS(CHAR(a),CHAR(b)),SEQ(CHAR(c),ONE))))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1544
    //new ce3 : SEQ(CHAR(b),ALTS(ALTS(ALTS(ONE,CHAR(a)),SEQ(CHAR(c),ONE)),SEQ(STAR(ZERO),SEQ(ONE,CHAR(b)))))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1545
    //circular double-nullable STAR(SEQ((STAR("b") | "a" | "b"), ("b" | ONE)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1546
    def counterexample_check() {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1547
      val r = STAR(SEQ(ALTS(STAR(CHAR('b')),ALTS(CHAR('b'),CHAR('a'))),
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1548
        ALTS(ALTS(CHAR('b'),CHAR('c')),STAR(ZERO))))//SEQ(SEQ(STAR(ALTS(CHAR('a'),CHAR('b'))),
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1549
      //ALTS(ALTS(CHAR('c'),CHAR('b')),STAR(ONE))),STAR(CHAR('b')))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1550
      val s = "ab"
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1551
      val bdStrong5 = bdersStrong6(s.toList, internalise(r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1552
      val bdStrong5Set = breakIntoTerms(erase(bdStrong5))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1553
      val pdersSet = pderUNIV(r)//.map(r => erase(bsimp(internalise(r))))//.flatMap(r => turnIntoTerms(r))//.map(oneSimp).flatMap(r => breakIntoTerms(r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1554
      val apdersSet = pdersSet.map(internalise)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1555
      println("original regex ")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1556
      rprint(r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1557
      println("after strong bsimp")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1558
      aprint(bdStrong5)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1559
      println("turned into a set %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%   ")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1560
      rsprint(bdStrong5Set)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1561
      println("after pderUNIV")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1562
      rsprint(pdersSet.toList)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1563
      println("pderUNIV distinctBy6")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1564
      //asprint(distinctBy6(apdersSet.toList))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1565
      rsprint((pdersSet.toList).flatMap(turnIntoTerms))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1566
      // rsprint(turnIntoTerms(pdersSet.toList(3)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1567
      // println("NO 3 not into terms")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1568
      // rprint((pdersSet.toList()))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1569
      // println("after pderUNIV broken")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1570
      // rsprint(pdersSet.flatMap(r => turnIntoTerms(r)).toList)
532
cc54ce075db5 restructured
Chengsong
parents: 530
diff changeset
  1571
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1572
    }
543
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1573
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1574
    // counterexample_check()
543
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1575
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1576
    def lf_display() {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1577
      val r = STAR(SEQ(ALTS(STAR(CHAR('b')),ALTS(CHAR('b'),CHAR('a'))),
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1578
        ALTS(ALTS(CHAR('b'),CHAR('c')),STAR(ZERO))))//SEQ(SEQ(STAR(ALTS(CHAR('a'),CHAR('b'))),
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1579
      //ALTS(ALTS(CHAR('c'),CHAR('b')),STAR(ONE))),STAR(CHAR('b')))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1580
      val s = "ab"
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1581
      val bdStrong5 = bdersStrong6(s.toList, internalise(r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1582
      val bdStrong5Set = breakIntoTerms(erase(bdStrong5))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1583
      val pdersSet = pderUNIV(r)//.map(r => erase(bsimp(internalise(r))))//.flatMap(r => turnIntoTerms(r))//.map(oneSimp).flatMap(r => breakIntoTerms(r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1584
      val apdersSet = pdersSet.map(internalise)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1585
      lfprint(lf(r))
543
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1586
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1587
    }
543
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1588
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1589
    lf_display()
541
5bf9f94c02e1 some comments implemented
Chengsong
parents: 539
diff changeset
  1590
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1591
    def breakable(r: Rexp) : Boolean = r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1592
      case SEQ(ALTS(_, _), _) => true
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1593
      case SEQ(r1, r2) => breakable(r1)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1594
      case _ => false
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1595
    }
532
cc54ce075db5 restructured
Chengsong
parents: 530
diff changeset
  1596
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1597
    def linform_test() {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1598
      val r = STAR(SEQ(STAR(CHAR('c')),ONE))//SEQ(STAR(CHAR('c')),STAR(SEQ(STAR(CHAR('c')),ONE))) //
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1599
      val r_linforms = lf(r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1600
      println(r_linforms.size)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1601
      val pderuniv = pderUNIV(r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1602
      println(pderuniv.size)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1603
    }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1604
    // linform_test()
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1605
    // 1
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1606
    def newStrong_test() {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1607
      val r2 = (CHAR('b') | ONE)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1608
      val r0 = CHAR('d')
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1609
      val r1 = (ONE | CHAR('c'))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1610
      val expRexp = (SEQ(r2, r0) | SEQ(SEQ(r1, r2), r0))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1611
      println(s"original regex is: ")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1612
      rprint(expRexp)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1613
      val expSimp5 = strongBsimp5(internalise(expRexp))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1614
      val expSimp6 = strongBsimp6(internalise(expRexp))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1615
      aprint(expSimp5)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1616
      aprint(expSimp6)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1617
    }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1618
    // newStrong_test()
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1619
    // SEQ(SEQ(SEQ(ONE,CHAR('b')),STAR(CHAR('b'))),
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1620
    // SEQ(ALTS(ALTS(ZERO,STAR(CHAR('b'))),
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1621
    // STAR(ALTS(CHAR('a'),SEQ(SEQ(STAR(ALTS(STAR(CHAR('c')),CHAR('a'))),
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1622
    // SEQ(CHAR('a'),SEQ(ALTS(CHAR('b'),ZERO),SEQ(ONE,CHAR('b'))))),ONE)))),ONE))
493
Chengsong
parents: 492
diff changeset
  1623
Chengsong
parents: 492
diff changeset
  1624
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1625
    // Sequ(Sequ(Sequ(Empty,Chr(b)),Stars(List(Chr(b), Chr(b)))),Sequ(Right(Stars(List(Right(Sequ(Sequ(Stars(List(Right(Chr(a)), Right(Chr(a)))),Sequ(Chr(a),Sequ(Left(Chr(b)),Sequ(Empty,Chr(b))))),Empty)), Right(Sequ(Sequ(Stars(List(Right(Chr(a)), Right(Chr(a)))),Sequ(Chr(a),Sequ(Left(Chr(b)),Sequ(Empty,Chr(b))))),Empty))))),Empty))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1626
    // Sequ(Sequ(Sequ(Empty,Chr(b)),Stars(List(Chr(b), Chr(b)))),Sequ(Right(Stars(List(Right(Sequ(Sequ(Stars(List(Right(Chr(a)), Right(Chr(a)))),Sequ(Chr(a),Sequ(Left(Chr(b)),Sequ(Empty,Chr(b))))),Empty)), Right(Sequ(Sequ(Stars(List(Right(Chr(a)), Right(Chr(a)))),Sequ(Chr(a),Sequ(Left(Chr(b)),Sequ(Empty,Chr(b))))),Empty))))),Empty))
543
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1627
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1628
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1629
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1630
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1631
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1632
    def bders_bderssimp() {
543
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1633
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1634
      test(single(SEQ(ALTS(ONE,CHAR('c')),
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1635
        SEQ(SEQ(CHAR('a'),CHAR('a')),ALTS(ONE,CHAR('c'))))), 1) { (r: Rexp) => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1636
          // ALTS(SEQ(SEQ(ONE,CHAR('a')),STAR(CHAR('a'))),SEQ(ALTS(CHAR('c'),ONE),STAR(ZERO))))))), 1) { (r: Rexp) => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1637
          val ss = Set("aa")//stringsFromRexp(r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1638
          val boolList = ss.map(s => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1639
            //val bdStrong = bdersStrong(s.toList, internalise(r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1640
            val bds = bsimp(bders(s.toList, internalise(r)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1641
            val bdssimp = bsimp(bders_simp(s.toList, internalise(r)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1642
            //val pdersSet = pderUNIV(r)//.flatMap(r => turnIntoTerms(r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1643
            //val pdersSetBroken = pdersSet.flatMap(r => turnIntoTerms(r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1644
            //rs1_subseteq_rs2(bdStrong6Set.toSet, distinctByacc(pdersSet.toList))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1645
            //bdStrong6Set.size <= pdersSet.size || bdStrong6Set.size <= pdersSetBroken.size ||
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1646
            //rs1_subseteq_rs2(bdStrong6Set.toSet, pdersSet union pdersSetBroken)//|| bdStrong6Set.size <= pdersSetBroken.size
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1647
            rprint(r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1648
            println(bds)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1649
            println(bdssimp)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1650
            bds == bdssimp
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1651
          })
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1652
          //!boolList.exists(b => b == false)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1653
          !boolList.exists(b => b == false)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1654
          }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1655
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1656
        //  bders_bderssimp()
543
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1657
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1658
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1659