thys2/blexer2.sc
author Chengsong
Sat, 26 Nov 2022 16:18:10 +0000
changeset 628 7af4e2420a8c
parent 591 b2d0de6aee18
child 629 96e009a446d5
permissions -rw-r--r--
ready to submit~~
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'
628
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
   664
    def removeSeqTail(r: Rexp, tail: Rexp) : Rexp = 
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
   665
      if (r == tail)
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
   666
        ONE
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
   667
      else {
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
   668
        r match {
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
   669
          case SEQ(r1, r2) => 
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
   670
            if(r2 == tail) 
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
   671
              r1
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
   672
            else
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
   673
              ZERO
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
   674
          case r => ZERO
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
   675
        }
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
   676
      }
532
cc54ce075db5 restructured
Chengsong
parents: 530
diff changeset
   677
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   678
    def prune(r: ARexp, acc: Set[Rexp]) : ARexp = r match{
628
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
   679
      case AALTS(bs, rs) => rs.map(r => prune(r, acc)).filter(_ != AZERO) match
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   680
      {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   681
        //all components have been removed, meaning this is effectively a duplicate
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   682
        //flats will take care of removing this AZERO 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   683
        case Nil => AZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   684
        case r::Nil => fuse(bs, r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   685
        case rs1 => AALTS(bs, rs1)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   686
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   687
      case ASEQ(bs, r1, r2) => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   688
        //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
   689
        prune(r1, acc.map(r => removeSeqTail(r, erase(r2)))) match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   690
          //after pruning, returns 0
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   691
          case AZERO => AZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   692
          //after pruning, got r1'.r2, where r1' is equal to 1
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   693
          case r1p if(isOne(erase(r1p))) => fuse(bs ++ mkepsBC(r1p), r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   694
          //assemble the pruned head r1p with r2
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   695
          case r1p => ASEQ(bs, r1p, r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   696
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   697
        //this does the duplicate component removal task
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   698
      case r => if(acc(erase(r))) AZERO else r
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   699
    }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   700
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   701
    //a stronger version of simp
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   702
    def bsimpStrong(r: ARexp): ARexp =
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   703
    {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   704
      r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   705
        case ASEQ(bs1, r1, r2) => (bsimpStrong(r1), bsimpStrong(r2)) match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   706
          //normal clauses same as simp
532
cc54ce075db5 restructured
Chengsong
parents: 530
diff changeset
   707
        case (AZERO, _) => AZERO
cc54ce075db5 restructured
Chengsong
parents: 530
diff changeset
   708
        case (_, AZERO) => AZERO
cc54ce075db5 restructured
Chengsong
parents: 530
diff changeset
   709
        case (AONE(bs2), r2s) => fuse(bs1 ++ bs2, r2s)
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   710
        //bs2 can be discarded
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   711
        case (r1s, AONE(bs2)) => fuse(bs1, r1s) //assert bs2 == Nil
532
cc54ce075db5 restructured
Chengsong
parents: 530
diff changeset
   712
        case (r1s, r2s) => ASEQ(bs1, r1s, r2s)
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   713
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   714
        case AALTS(bs1, rs) => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   715
          //distinctBy(flat_res, erase)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   716
          distinctWith(flats(rs.map(bsimpStrong(_))), prune) match {
532
cc54ce075db5 restructured
Chengsong
parents: 530
diff changeset
   717
            case Nil => AZERO
cc54ce075db5 restructured
Chengsong
parents: 530
diff changeset
   718
            case s :: Nil => fuse(bs1, s)
cc54ce075db5 restructured
Chengsong
parents: 530
diff changeset
   719
            case rs => AALTS(bs1, rs)  
cc54ce075db5 restructured
Chengsong
parents: 530
diff changeset
   720
          }
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   721
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   722
        //stars that can be treated as 1
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   723
        case ASTAR(bs, r0) if(atMostEmpty(erase(r0))) => AONE(bs)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   724
        case r => r
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   725
      }
532
cc54ce075db5 restructured
Chengsong
parents: 530
diff changeset
   726
    }
431
Chengsong
parents:
diff changeset
   727
Chengsong
parents:
diff changeset
   728
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   729
    def bders (s: List[Char], r: ARexp) : ARexp = s match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   730
      case Nil => r
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   731
      case c::s => bders(s, bder(c, r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   732
    }
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   733
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   734
    def flats(rs: List[ARexp]): List[ARexp] = rs match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   735
      case Nil => Nil
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   736
      case AZERO :: rs1 => flats(rs1)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   737
      case AALTS(bs, rs1) :: rs2 => rs1.map(fuse(bs, _)) ::: flats(rs2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   738
      case r1 :: rs2 => r1 :: flats(rs2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   739
    }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   740
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   741
    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
   742
      case Nil => Nil
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   743
      case (x::xs) => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   744
        val res = f(x)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   745
        if (acc.contains(res)) distinctBy(xs, f, acc)  
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   746
        else x::distinctBy(xs, f, res::acc)
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   747
      }
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   748
    } 
431
Chengsong
parents:
diff changeset
   749
Chengsong
parents:
diff changeset
   750
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   751
    def pruneRexp(r: ARexp, allowableTerms: List[Rexp]) : ARexp = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   752
      r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   753
        case ASEQ(bs, r1, r2) => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   754
          val termsTruncated = allowableTerms.collect(rt => rt match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   755
            case SEQ(r1p, r2p) if(r2p == erase(r2)) => r1p//if(r2p == erase(r2)) 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   756
          })
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   757
          val pruned : ARexp = pruneRexp(r1, termsTruncated)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   758
          pruned match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   759
            case AZERO => AZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   760
            case AONE(bs1) => fuse(bs ++ bs1, r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   761
            case pruned1 => ASEQ(bs, pruned1, r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   762
          }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   763
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   764
            case AALTS(bs, rs) => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   765
              //allowableTerms.foreach(a => println(shortRexpOutput(a)))        
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   766
              val rsp = rs.map(r => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   767
                  pruneRexp(r, allowableTerms)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   768
                  )
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   769
                    .filter(r => r != AZERO)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   770
                    rsp match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   771
                      case Nil => AZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   772
                      case r1::Nil => fuse(bs, r1)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   773
                      case rs1 => AALTS(bs, rs1)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   774
                    }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   775
                      case r => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   776
                        if(allowableTerms.contains(erase(r))) r else AZERO //assert(r != AZERO)
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   777
      }
431
Chengsong
parents:
diff changeset
   778
    }
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   779
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   780
    def oneSimp(r: Rexp) : Rexp = r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   781
      case SEQ(ONE, r) => r
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   782
      case SEQ(r1, r2) => SEQ(oneSimp(r1), r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   783
      case r => r//assert r != 0 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   784
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   785
    }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   786
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
   787
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   788
    def distinctBy4(xs: List[ARexp], acc: List[Rexp] = Nil) : List[ARexp] = xs match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   789
      case Nil => Nil
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   790
      case x :: xs =>
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   791
        //assert(acc.distinct == acc)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   792
        val erased = erase(x)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   793
        if(acc.contains(erased))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   794
          distinctBy4(xs, acc)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   795
        else{
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   796
          val addToAcc =  breakIntoTerms(erased).filter(r => !acc.contains(oneSimp(r)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   797
          //val xp = pruneRexp(x, addToAcc)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   798
          pruneRexp(x, addToAcc) match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   799
            case AZERO => distinctBy4(xs, addToAcc.map(oneSimp(_)) ::: acc)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   800
            case xPrime => xPrime :: distinctBy4(xs, addToAcc.map(oneSimp(_)) ::: acc)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   801
          }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   802
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   803
    }
494
c730d018ebfa blexer2
Chengsong
parents: 493
diff changeset
   804
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   805
    // fun pAKC_aux :: "arexp list ⇒ arexp ⇒ rexp ⇒ arexp"
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   806
    //   where
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   807
    // "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
   808
    //                           case r of (ASEQ bs r1 r2) ⇒ 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   809
    //                             bsimp_ASEQ bs (pAKC_aux rsa r1 (SEQ  (erase r2) ( ctx) )) r2   |
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   810
    //                                     (AALTs bs rs) ⇒ 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   811
    //                             bsimp_AALTs bs (flts (map (λr. pAKC_aux rsa r ( ctx) ) rs) )    |
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   812
    //                                     r             ⇒ r
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   813
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   814
    // def canonicalSeq(rs: List[Rexp], acc: Rexp) = rs match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   815
    //   case r::Nil => SEQ(r, acc)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   816
    //   case Nil => acc
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   817
    //   case r1::r2::Nil => SEQ(SEQ(r1, r2), acc)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   818
    // }
494
c730d018ebfa blexer2
Chengsong
parents: 493
diff changeset
   819
c730d018ebfa blexer2
Chengsong
parents: 493
diff changeset
   820
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   821
    //the "fake" Language interpretation: just concatenates!
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   822
    def seqFold(acc: Rexp, rs: List[Rexp]) : Rexp = rs match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   823
      case Nil => acc
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   824
      case r :: rs1 => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   825
        // if(acc == ONE) 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   826
        //   seqFold(r, rs1) 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   827
        // else
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   828
        seqFold(SEQ(acc, r), rs1)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   829
    }
494
c730d018ebfa blexer2
Chengsong
parents: 493
diff changeset
   830
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   831
    def rprint(r: Rexp) : Unit = println(shortRexpOutput(r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   832
    def rsprint(rs: Iterable[Rexp]) = rs.foreach(r => println(shortRexpOutput(r)))
500
Chengsong
parents: 494
diff changeset
   833
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   834
    def aprint(a: ARexp) = println(shortRexpOutput(erase(a)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   835
    def asprint(as: List[ARexp]) = as.foreach(a => println(shortRexpOutput(erase(a))))
500
Chengsong
parents: 494
diff changeset
   836
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   837
    def pAKC(acc: List[Rexp], r: ARexp, ctx: List[Rexp]) : ARexp = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   838
      // println("pakc")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   839
      // println(shortRexpOutput(erase(r)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   840
      // println("acc")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   841
      // rsprint(acc)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   842
      // println("ctx---------")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   843
      // rsprint(ctx)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   844
      // println("ctx---------end")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   845
      // rsprint(breakIntoTerms(seqFold(erase(r), ctx)).map(oneSimp))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   846
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   847
      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
   848
        AZERO
494
c730d018ebfa blexer2
Chengsong
parents: 493
diff changeset
   849
      }
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   850
      else{
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   851
        r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   852
          case ASEQ(bs, r1, r2) => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   853
            (pAKC(acc, r1, erase(r2) :: ctx)) match{
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   854
              case AZERO => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   855
                AZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   856
              case AONE(bs1) => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   857
                fuse(bs1, r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   858
              case r1p => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   859
                ASEQ(bs, r1p, r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   860
            }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   861
              case AALTS(bs, rs0) => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   862
                // println("before pruning")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   863
                // println(s"ctx is ")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   864
                // ctx.foreach(r => println(shortRexpOutput(r)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   865
                // println(s"rs0 is ")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   866
                // rs0.foreach(r => println(shortRexpOutput(erase(r))))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   867
                // println(s"acc is ")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   868
                // acc.foreach(r => println(shortRexpOutput(r)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   869
                rs0.map(r => pAKC(acc, r, ctx)).filter(_ != AZERO) match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   870
                  case Nil => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   871
                    // println("after pruning Nil")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   872
                    AZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   873
                  case r :: Nil => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   874
                    // println("after pruning singleton")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   875
                    // println(shortRexpOutput(erase(r)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   876
                    r 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   877
                  case rs0p => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   878
                    // println("after pruning non-singleton")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   879
                    AALTS(bs, rs0p)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   880
                }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   881
                  case r => r
494
c730d018ebfa blexer2
Chengsong
parents: 493
diff changeset
   882
        }
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   883
      }
494
c730d018ebfa blexer2
Chengsong
parents: 493
diff changeset
   884
    }
c730d018ebfa blexer2
Chengsong
parents: 493
diff changeset
   885
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   886
    def distinctBy5(xs: List[ARexp], acc: List[Rexp] = Nil) : List[ARexp] = xs match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   887
      case Nil => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   888
        Nil
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   889
      case x :: xs => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   890
        val erased = erase(x)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   891
        if(acc.contains(erased)){
494
c730d018ebfa blexer2
Chengsong
parents: 493
diff changeset
   892
          distinctBy5(xs, acc)
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   893
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   894
        else{
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   895
          val pruned = pAKC(acc, x, Nil)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   896
          val newTerms = breakIntoTerms(erase(pruned))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   897
          pruned match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   898
            case AZERO => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   899
              distinctBy5(xs, acc)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   900
            case xPrime => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   901
              xPrime :: distinctBy5(xs, newTerms.map(oneSimp) ::: acc)//distinctBy5(xs, addToAcc.map(oneSimp(_)) ::: acc)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   902
          }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   903
        }
494
c730d018ebfa blexer2
Chengsong
parents: 493
diff changeset
   904
      }
c730d018ebfa blexer2
Chengsong
parents: 493
diff changeset
   905
    }
431
Chengsong
parents:
diff changeset
   906
Chengsong
parents:
diff changeset
   907
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   908
    def isOne1(r: Rexp) : Boolean = r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   909
      case ONE => true
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   910
      case SEQ(r1, r2) => false//isOne1(r1) && isOne1(r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   911
      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
   912
      case STAR(r0) => false//atMostEmpty(r0)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   913
      case CHAR(c) => false
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   914
      case ZERO => false
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   915
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   916
    }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   917
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   918
    def turnIntoTerms(r: Rexp): List[Rexp] = r match {
628
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
   919
      case SEQ(r1, r2)  => 
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
   920
    //   if(isOne1(r1)) 
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
   921
    //   turnIntoTerms(r2) 
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
   922
    // else 
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
   923
        turnIntoTerms(r1).flatMap(r11 => furtherSEQ(r11, r2))
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
   924
          case ALTS(r1, r2) => turnIntoTerms(r1) ::: turnIntoTerms(r2)
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
   925
          case ZERO => Nil
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
   926
          case _ => r :: Nil
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   927
    }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   928
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   929
    def furtherSEQ(r11: Rexp, r2: Rexp) : List[Rexp] = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   930
      if(r11 == ONE)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   931
        turnIntoTerms(r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   932
      else
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   933
        SEQ(r11, r2) :: Nil
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   934
    }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   935
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   936
    def attachCtx(r: ARexp, ctx: List[Rexp]) : Set[Rexp] = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   937
      turnIntoTerms((seqFold(erase(r), ctx)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   938
        .toSet
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   939
    }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   940
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   941
    def attachCtxcc(r: Rexp, ctx: List[Rexp]) : Set[Rexp] =
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   942
      turnIntoTerms(seqFold(r, ctx)).toSet
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   943
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   944
    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
   945
      subseteqPred: (C, C) => Boolean) : Boolean = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   946
        subseteqPred(f(a, b), c)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   947
    }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   948
      def rs1_subseteq_rs2(rs1: Set[Rexp], rs2: Set[Rexp]) : Boolean = 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   949
        //rs1 \subseteq rs2
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   950
      rs1.forall(rs2.contains)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   951
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   952
      def prune6(acc: Set[Rexp], r: ARexp, ctx: List[Rexp] = Nil) : ARexp = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   953
        if (ABIncludedByC(a = r, b = ctx, c = acc, 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   954
          f = attachCtx, subseteqPred = rs1_subseteq_rs2)) 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   955
          {
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
          }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   958
          else{
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   959
            r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   960
              case ASEQ(bs, r1, r2) => (prune6(acc, r1, erase(r2) :: ctx)) match{
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   961
                case AZERO => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   962
                  AZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   963
                case AONE(bs1) => //when r1 becomes 1, chances to further prune r2
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   964
                  prune6(acc, fuse(bs1, r2), ctx)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   965
                case r1p => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   966
                  ASEQ(bs, r1p, r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   967
              }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   968
                case AALTS(bs, rs0) => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   969
                  rs0.map(r => prune6(acc, r, ctx)).filter(_ != AZERO) match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   970
                    case Nil => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   971
                      AZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   972
                    case r :: Nil => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   973
                      fuse(bs, r) 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   974
                    case rs0p => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   975
                      AALTS(bs, rs0p)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   976
                  }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   977
                    case r => r
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   978
            }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   979
          }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   980
      }
431
Chengsong
parents:
diff changeset
   981
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   982
      def prune6cc(acc: Set[Rexp], r: Rexp, ctx: List[Rexp]) : Rexp = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   983
        if (ABIncludedByC(a = r, b = ctx, c = acc, 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   984
          f = attachCtxcc, subseteqPred = rs1_subseteq_rs2)) 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   985
          {//acc.flatMap(breakIntoTerms
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   986
            ZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   987
          }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   988
          else{
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   989
            r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   990
              case SEQ(r1, r2) => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   991
                (prune6cc(acc, r1, r2 :: ctx)) match{
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   992
                  case ZERO => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   993
                    ZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   994
                  case ONE => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   995
                    r2
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   996
                  case r1p => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   997
                    SEQ(r1p, r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   998
                }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
   999
                  case ALTS(r1, r2) => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1000
                    List(r1, r2).map(r => prune6cc(acc, r, ctx)).filter(_ != AZERO) match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1001
                      case Nil => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1002
                        ZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1003
                      case r :: Nil => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1004
                        r 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1005
                      case ra :: rb :: Nil => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1006
                        ALTS(ra, rb)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1007
                    }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1008
                      case r => r
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1009
            }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1010
          }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1011
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1012
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1013
      def distinctBy6(xs: List[ARexp], acc: Set[Rexp] = Set()) : 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1014
      List[ARexp] = xs match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1015
        case Nil => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1016
          Nil
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1017
        case x :: xs => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1018
          val erased = erase(x)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1019
          if(acc.contains(erased)){
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1020
            distinctBy6(xs, acc)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1021
          }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1022
          else{
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1023
            val pruned = prune6(acc, x)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1024
            val newTerms = turnIntoTerms(erase(pruned))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1025
            pruned match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1026
              case AZERO => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1027
                distinctBy6(xs, acc)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1028
              case xPrime => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1029
                xPrime :: distinctBy6(xs, newTerms ++: acc)//distinctBy5(xs, addToAcc.map(oneSimp(_)) ::: acc)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1030
            }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1031
          }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1032
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1033
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1034
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1035
      def distinctByacc(xs: List[Rexp], acc: Set[Rexp] = Set()) : Set[Rexp] = xs match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1036
        case Nil => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1037
          acc
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1038
        case x :: xs => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1039
          if(acc.contains(x)){
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1040
            distinctByacc(xs, acc)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1041
          }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1042
          else{
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1043
            val pruned = prune6cc(acc, x, Nil)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1044
            val newTerms = turnIntoTerms(pruned)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1045
            pruned match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1046
              case ZERO => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1047
                distinctByacc(xs, acc)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1048
              case xPrime => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1049
                distinctByacc(xs, newTerms.map(oneSimp) ++: acc)//distinctBy5(xs, addToAcc.map(oneSimp(_)) ::: acc)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1050
            }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1051
          }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1052
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1053
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1054
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1055
      def breakIntoTerms(r: Rexp) : List[Rexp] = r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1056
        case SEQ(r1, r2)  => breakIntoTerms(r1).map(r11 => SEQ(r11, r2))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1057
        case ALTS(r1, r2) => breakIntoTerms(r1) ::: breakIntoTerms(r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1058
        case ZERO => Nil
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1059
        case _ => r::Nil
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1060
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1061
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1062
      def flatsIntoTerms(r: Rexp) : List[Rexp] = r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1063
        //case SEQ(r1, r2)  => flatsIntoTerms(r1).map(r11 => SEQ(r11, r2))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1064
        case ALTS(r1, r2) => flatsIntoTerms(r1) ::: flatsIntoTerms(r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1065
        case ZERO => Nil
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1066
        case _ => r::Nil
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1067
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1068
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1069
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1070
      def decode_aux(r: Rexp, bs: Bits) : (Val, Bits) = (r, bs) match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1071
        case (ONE, bs) => (Empty, bs)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1072
        case (CHAR(f), bs) => (Chr(f), bs)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1073
        case (ALTS(r1, r2), Z::bs1) => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1074
          val (v, bs2) = decode_aux(r1, bs1)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1075
          (Left(v), bs2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1076
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1077
        case (ALTS(r1, r2), S::bs1) => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1078
          val (v, bs2) = decode_aux(r2, bs1)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1079
          (Right(v), bs2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1080
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1081
        case (SEQ(r1, r2), bs) => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1082
          val (v1, bs1) = decode_aux(r1, bs)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1083
          val (v2, bs2) = decode_aux(r2, bs1)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1084
          (Sequ(v1, v2), 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(r1), S::bs) => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1087
          val (v, bs1) = decode_aux(r1, bs)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1088
          //(v)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1089
          val (Stars(vs), bs2) = decode_aux(STAR(r1), bs1)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1090
          (Stars(v::vs), bs2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1091
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1092
        case (STAR(_), Z::bs) => (Stars(Nil), bs)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1093
        case (RECD(x, r1), bs) => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1094
          val (v, bs1) = decode_aux(r1, bs)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1095
          (Rec(x, v), bs1)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1096
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1097
        case (NOT(r), bs) => (Nots(r.toString), bs)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1098
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1099
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1100
      def decode(r: Rexp, bs: Bits) = decode_aux(r, bs) match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1101
        case (v, Nil) => v
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1102
        case _ => throw new Exception("Not decodable")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1103
      }
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
  1104
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
  1105
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
  1106
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1107
      def blexing_simp(r: Rexp, s: String) : Val = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1108
        val bit_code = blex_simp(internalise(r), s.toList)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1109
        decode(r, bit_code)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1110
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1111
      def simpBlexer(r: Rexp, s: String) : Val = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1112
        Try(blexing_simp(r, s)).getOrElse(Failure)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1113
      }
431
Chengsong
parents:
diff changeset
  1114
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1115
      def strong_blexing_simp(r: Rexp, s: String) : Val = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1116
        decode(r, strong_blex_simp(internalise(r), s.toList))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1117
      }
431
Chengsong
parents:
diff changeset
  1118
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1119
      def strong_blexing_simp5(r: Rexp, s: String) : Val = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1120
        decode(r, strong_blex_simp5(internalise(r), s.toList))
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
  1121
      }
431
Chengsong
parents:
diff changeset
  1122
Chengsong
parents:
diff changeset
  1123
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
  1124
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
  1125
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1126
      //def blexerStrong(r: ARexp, s: String) : Val = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1127
      //  Try(strong_blexing_simp(r, s)).getOrElse(Failure)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1128
      //}
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1129
      def strongBlexer5(r: Rexp, s: String): Val = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1130
        Try(strong_blexing_simp5(r, s)).getOrElse(Failure)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1131
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1132
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1133
      def strongBlexer(r: Rexp, s: String) : Option[Val] = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1134
        Try(Some(decode(r, strong_blex_simp(internalise(r), s.toList)))).getOrElse(None)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1135
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1136
      def strong_blex_simp(r: ARexp, s: List[Char]) : Bits = s match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1137
        case Nil => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1138
          if (bnullable(r)) {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1139
            mkepsBC(r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1140
          }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1141
          else 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1142
            throw new Exception("Not matched")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1143
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1144
        case c::cs => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1145
          strong_blex_simp(strongBsimp(bder(c, r)), cs)      
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1146
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1147
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1148
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1149
      def strong_blex_simp5(r: ARexp, s: List[Char]) : Bits = s match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1150
        case Nil => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1151
          if (bnullable(r)) {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1152
            val bits = mkepsBC(r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1153
            bits
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1154
          }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1155
          else 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1156
            throw new Exception("Not matched")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1157
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1158
        case c::cs => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1159
          val der_res = bder(c,r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1160
          val simp_res = strongBsimp5(der_res)  
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1161
          strong_blex_simp5(simp_res, cs)      
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1162
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1163
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1164
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1165
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1166
      def bders_simp(s: List[Char], r: ARexp) : ARexp = s match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1167
        case Nil => r
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1168
        case c::s => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1169
          //println(erase(r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1170
          bders_simp(s, bsimp(bder(c, r)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1171
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1172
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1173
      def bdersStrong5(s: List[Char], r: ARexp) : ARexp = s match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1174
        case Nil => r
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1175
        case c::s => bdersStrong5(s, strongBsimp5(bder(c, r)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1176
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1177
      def bdersStrong6(s: List[Char], r: ARexp) : ARexp = s match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1178
        case Nil => r
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1179
        case c::s => bdersStrong6(s, strongBsimp6(bder(c, r)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1180
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1181
      //Conjecture: [| bdersStrong(s, r) |] = O([| r |]^3)
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, bsimpStrong(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
      def bdersSimp(s: String, r: Rexp) : ARexp = bders_simp(s.toList, internalise(r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1187
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1188
      //def bdersStrong(s: List[Char], r: ARexp) : ARexp = s match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1189
      //  case Nil => r 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1190
      //  case c::s => bdersStrong(s, strongBsimp(bder(c, r)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1191
      //}
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1192
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1193
      def bdersStrongRexp(s: String, r: Rexp) : ARexp = bdersStrong(s.toList, internalise(r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1194
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1195
      def erase(r:ARexp): Rexp = r match{
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1196
        case AZERO => ZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1197
        case AONE(_) => ONE
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1198
        case ACHAR(bs, c) => CHAR(c)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1199
        case AALTS(bs, Nil) => ZERO
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1200
        case AALTS(bs, a::Nil) => erase(a)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1201
        case AALTS(bs, a::as) => ALTS(erase(a), erase(AALTS(bs, as)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1202
        case ASEQ(bs, r1, r2) => SEQ (erase(r1), erase(r2))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1203
        case ASTAR(cs, r)=> STAR(erase(r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1204
        case ANOT(bs, r) => NOT(erase(r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1205
        case AANYCHAR(bs) => ANYCHAR
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1206
      }
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 allCharSeq(r: Rexp) : Boolean = r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1210
        case CHAR(c) => true
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1211
        case SEQ(r1, r2) => allCharSeq(r1) && allCharSeq(r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1212
        case _ => false
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 flattenSeq(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 SEQ(r1, r2) => flattenSeq(r1) ++ flattenSeq(r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1218
        case _ => throw new Error("flatten unflattenable rexp")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1219
      } 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1220
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1221
      def shortRexpOutput(r: Rexp) : String = r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1222
        case CHAR(c) => c.toString
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1223
        case ONE => "1"
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1224
        case ZERO => "0"
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1225
        case SEQ(r1, r2) if(allCharSeq(r)) => flattenSeq(r)//"[" ++ shortRexpOutput(r1) ++ "~" ++ shortRexpOutput(r2) ++ "]"
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1226
        case SEQ(r1, r2) => "[" ++ shortRexpOutput(r1) ++ "~" ++ shortRexpOutput(r2) ++ "]"
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1227
        case ALTS(r1, r2) => "(" ++ shortRexpOutput(r1) ++ "+" ++ shortRexpOutput(r2) ++ ")"
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1228
        case STAR(STAR(r)) => "(..)*"// ++ shortRexpOutput(r) ++ "]*"
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1229
        case STAR(r) => "STAR(" ++ shortRexpOutput(r) ++ ")"
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1230
        //case RTOP => "RTOP"
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1231
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1232
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1233
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1234
      def blex_simp(r: ARexp, s: List[Char]) : Bits = s match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1235
        case Nil => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1236
          if (bnullable(r)) {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1237
            val bits = mkepsBC(r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1238
            bits
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1239
          }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1240
          else 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1241
            throw new Exception("Not matched")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1242
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1243
        case c::cs => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1244
          val der_res = bder(c,r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1245
          val simp_res = bsimp(der_res)  
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1246
          blex_simp(simp_res, cs)      
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1247
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1248
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1249
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1250
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1251
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1252
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1253
      def size(r: Rexp) : Int = r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1254
        case ZERO => 1
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1255
        case ONE => 1
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1256
        case CHAR(_) => 1
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1257
        case ANYCHAR => 1
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1258
        case NOT(r0) => 1 + size(r0)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1259
        case SEQ(r1, r2) => 1 + size(r1) + size(r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1260
        case ALTS(r1, r2) => 1 + List(r1, r2).map(size).sum
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1261
        case STAR(r) => 1 + size(r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1262
      }
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 asize(a: ARexp) = size(erase(a))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1265
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1266
      //pder related
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1267
      type Mon = (Char, Rexp)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1268
      type Lin = Set[Mon]
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1269
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1270
      def dot_prod(rs: Set[Rexp], r: Rexp): Set[Rexp] = r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1271
        case ZERO => Set()
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1272
        case ONE => rs
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1273
        case r => rs.map((re) => if (re == ONE) r else SEQ(re, r)  )   
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1274
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1275
      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
  1276
        case ZERO => Set()
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1277
        // case ONE => l
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1278
        case t => l.map( m => m._2 match 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1279
        {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1280
          case ZERO => m 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1281
          case ONE => (m._1, t) 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1282
          case p => (m._1, SEQ(p, t)) 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1283
        }  
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1284
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1285
        )
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1286
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1287
      def cir_prodList(l : List[Mon], t: Rexp): List[Mon] = t match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1288
        case ZERO => Nil
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1289
        case ONE => l
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1290
        case t => l.map(m => m._2 match
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1291
        {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1292
          case ZERO => m
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1293
          case ONE => (m._1, t)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1294
          case p => (m._1, SEQ(p, t))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1295
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1296
        )
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1297
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1298
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1299
      def lfList(r: Rexp) : List[Mon] = r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1300
        case ZERO => Nil
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1301
        case ONE => Nil
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1302
        case CHAR(f) => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1303
          (f, ONE) :: Nil
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1304
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1305
        case ALTS(r1, r2) => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1306
          lfList(r1) ++ lfList(r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1307
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1308
        case STAR(r1) => cir_prodList(lfList(r1), STAR(r1))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1309
        case SEQ(r1, r2) => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1310
          if(nullable(r1))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1311
            cir_prodList(lfList(r1), r2) ++ lfList(r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1312
          else
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1313
            cir_prodList(lfList(r1), r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1314
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1315
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1316
      def lfprint(ls: Lin) = ls.foreach(m =>{
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1317
        println(m._1)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1318
        rprint(m._2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1319
      })
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1320
    def lf(r: Rexp): Lin = r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1321
      case ZERO => Set()
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1322
      case ONE => Set()
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1323
      case CHAR(f) => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1324
        //val Some(c) = alphabet.find(f) 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1325
        Set((f, ONE))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1326
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1327
      case ALTS(r1, r2) => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1328
        lf(r1 ) ++ lf(r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1329
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1330
      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
  1331
      case SEQ(r1, r2) =>{
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1332
        if (nullable(r1))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1333
          cir_prod(lf(r1), r2) ++ lf(r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1334
        else
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1335
          cir_prod(lf(r1), r2) 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1336
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1337
    }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1338
    def lfs(r: Set[Rexp]): Lin = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1339
      r.foldLeft(Set[Mon]())((acc, r) => acc ++ lf(r))
431
Chengsong
parents:
diff changeset
  1340
    }
Chengsong
parents:
diff changeset
  1341
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1342
    def pder(x: Char, t: Rexp): Set[Rexp] = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1343
      val lft = lf(t)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1344
      (lft.filter(mon => if(mon._1 == x) true else false)).map(mon => mon._2)
543
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1345
    }
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1346
    def pders_single(s: List[Char], t: Rexp) : Set[Rexp] = s match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1347
      case x::xs => pders(xs, pder(x, t))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1348
      case Nil => Set(t)
543
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1349
    }
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1350
    def pders(s: List[Char], ts: Set[Rexp]) : Set[Rexp] = s match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1351
      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
  1352
      case Nil => ts 
543
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1353
    }
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1354
    def pderss(ss: List[List[Char]], t: Rexp): Set[Rexp] = 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1355
      ss.foldLeft( Set[Rexp]() )( (acc, s) => pders_single(s, t) ++ acc )
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1356
    def pdera(t: Rexp): Set[Rexp] = lf(t).map(mon => mon._2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1357
    //all implementation of partial derivatives that involve set union are potentially buggy
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1358
    //because they don't include the original regular term before they are pdered.
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1359
    //now only pderas is fixed.
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1360
    def pderas(t: Set[Rexp], d: Int): Set[Rexp] = 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1361
      if(d > 0) 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1362
        pderas(lfs(t).map(mon => mon._2), d - 1) ++ t 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1363
      else 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1364
        lfs(t).map(mon => mon._2) ++ t//repeated application of pderas over the newest set of pders.
431
Chengsong
parents:
diff changeset
  1365
  def pderUNIV(r: Rexp) : Set[Rexp] = pderas(Set(r), awidth(r) + 1)
Chengsong
parents:
diff changeset
  1366
  def awidth(r: Rexp) : Int = r match {
Chengsong
parents:
diff changeset
  1367
    case CHAR(c) => 1
Chengsong
parents:
diff changeset
  1368
    case SEQ(r1, r2) => awidth(r1) + awidth(r2)
Chengsong
parents:
diff changeset
  1369
    case ALTS(r1, r2) => awidth(r1) + awidth(r2)
Chengsong
parents:
diff changeset
  1370
    case ONE => 0
Chengsong
parents:
diff changeset
  1371
    case ZERO => 0
Chengsong
parents:
diff changeset
  1372
    case STAR(r) => awidth(r)
Chengsong
parents:
diff changeset
  1373
  }
Chengsong
parents:
diff changeset
  1374
  //def sigma_lf(l: Set[Mon]) : Rexp = ALTS(l.map(mon => SEQ(CHAR(mon._1),mon._2)).toList)
Chengsong
parents:
diff changeset
  1375
  //def sigma(rs: Set[Rexp]) : Rexp = ALTS(rs.toList)
Chengsong
parents:
diff changeset
  1376
  def o(r: Rexp) = if (nullable(r)) ONE else ZERO
Chengsong
parents:
diff changeset
  1377
  //def nlf(t: Rexp) : Rexp = ALTS(List( o(t), sigma_lf(lf(t)) ))
Chengsong
parents:
diff changeset
  1378
  def pdp(x: Char, r: Rexp) : Set[Rexp] = r match {
Chengsong
parents:
diff changeset
  1379
    case ZERO => Set[Rexp]()
Chengsong
parents:
diff changeset
  1380
    case ONE => Set[Rexp]()
Chengsong
parents:
diff changeset
  1381
    case CHAR(f) => if(x == f) Set(ONE) else Set[Rexp]()
Chengsong
parents:
diff changeset
  1382
    case ALTS(r1, r2) => pdp(x, r1) ++ pdp(x, r2)
Chengsong
parents:
diff changeset
  1383
    case STAR(r1) => pdp(x, r).map(a => SEQ(a, STAR(r1)))
Chengsong
parents:
diff changeset
  1384
    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
  1385
  }
Chengsong
parents:
diff changeset
  1386
  def pdps(s: List[Char], ts: Set[Rexp]): Set[Rexp] = s match {
Chengsong
parents:
diff changeset
  1387
    case x::xs => pdps(xs, ts.foldLeft(Set[Rexp]())((acc, t) => acc ++ pder(x, t)))
Chengsong
parents:
diff changeset
  1388
    case Nil => ts   
Chengsong
parents:
diff changeset
  1389
  }
Chengsong
parents:
diff changeset
  1390
  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
  1391
Chengsong
parents:
diff changeset
  1392
Chengsong
parents:
diff changeset
  1393
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1394
  def starPrint(r: Rexp) : Unit = r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1395
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1396
    case SEQ(head, rstar) =>
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1397
      println(shortRexpOutput(head) ++ "~STARREG")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1398
    case STAR(rstar) =>
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1399
      println("STARREG")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1400
    case ALTS(r1, r2) =>  
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1401
      println("(")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1402
      starPrint(r1)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1403
      println("+")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1404
      starPrint(r2)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1405
      println(")")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1406
    case ZERO => println("0")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1407
  }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1408
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1409
  // @arg(doc = "small tests")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1410
  def n_astar_list(d: Int) : Rexp = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1411
    if(d == 0) STAR("a") 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1412
    else ALTS(STAR("a" * d), n_astar_list(d - 1))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1413
  }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1414
  def n_astar_alts(d: Int) : Rexp = d match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1415
    case 0 => n_astar_list(0)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1416
    case d => STAR(n_astar_list(d))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1417
  }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1418
  def n_astar_alts2(d: Int) : Rexp = d match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1419
    case 0 => n_astar_list(0)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1420
    case d => STAR(STAR(n_astar_list(d)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1421
  }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1422
  def n_astar_aux(d: Int) = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1423
    if(d == 0) n_astar_alts(0)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1424
    else ALTS(n_astar_alts(d), n_astar_alts(d - 1))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1425
  }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1426
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1427
  def n_astar(d: Int) : Rexp = STAR(n_astar_aux(d))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1428
  //val STARREG = n_astar(3)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1429
  // ( STAR("a") | 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1430
  //                  ("a" | "aa").% | 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1431
  //                 ( "a" | "aa" | "aaa").% 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1432
  //                 ).%
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1433
  //( "a" | "aa" | "aaa" | "aaaa").% |
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1434
  //( "a" | "aa" | "aaa" | "aaaa" | "aaaaa").% 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1435
  (((STAR("a") | ( STAR("aaa")) | STAR("aaaaa"| ( STAR("aaaaaaa")) | STAR("aaaaaaaaaaa"))).%).%).%
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1436
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1437
  // @main
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1438
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1439
  def lcm(list: Seq[Int]):Int=list.foldLeft(1:Int){
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1440
    (a, b) => b * a /
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1441
    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
  1442
  }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1443
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1444
  def small() = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1445
    //val pderSTAR = pderUNIV(STARREG)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1446
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1447
    //val refSize = pderSTAR.map(size(_)).sum
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1448
    for(n <- 5 to 5){
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1449
      val STARREG = n_astar_alts2(n)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1450
      val iMax = (lcm((1 to n).toList))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1451
      for(i <- 0 to iMax ){// 100, 400, 800, 840, 841, 900 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1452
        val prog0 = "a" * i
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1453
        //println(s"test: $prog0")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1454
        print(i)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1455
        print(" ")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1456
        // print(i)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1457
        // print(" ")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1458
        println(asize(bders_simp(prog0.toList, internalise(STARREG))))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1459
        // println(asize(bdersStrong(prog0.toList, internalise(STARREG))))
431
Chengsong
parents:
diff changeset
  1460
      }
Chengsong
parents:
diff changeset
  1461
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1462
    }
533
Chengsong
parents: 532
diff changeset
  1463
  }
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1464
  // small()
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
  1465
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1466
  def aaa_star() = {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1467
    val r = STAR(("a" | "aa"))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1468
    for(i <- 0 to 20) {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1469
      val prog = "a" * i
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1470
      print(i+" ")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1471
      println(asize(bders_simp(prog.toList, internalise(r))))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1472
      //println(size(ders_simp(prog.toList, r)))
516
6fecb7fe8cd0 blexer2: modified for plotting
Chengsong
parents: 514
diff changeset
  1473
    }
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
  1474
  }
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1475
  // aaa_star()
536
aff7bf93b9c7 comments addressed all
Chengsong
parents: 533
diff changeset
  1476
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1477
  def matching_ways_counting(n: Int): Int = 
573
454ced557605 chapter2 finished polishing
Chengsong
parents: 564
diff changeset
  1478
  {
454ced557605 chapter2 finished polishing
Chengsong
parents: 564
diff changeset
  1479
    if(n == 0) 1
454ced557605 chapter2 finished polishing
Chengsong
parents: 564
diff changeset
  1480
    else if(n == 1) 2
454ced557605 chapter2 finished polishing
Chengsong
parents: 564
diff changeset
  1481
    else (for(i <- 1 to n - 1) 
454ced557605 chapter2 finished polishing
Chengsong
parents: 564
diff changeset
  1482
      yield matching_ways_counting(i) * matching_ways_counting(n - i) ).sum + (n + 1)
454ced557605 chapter2 finished polishing
Chengsong
parents: 564
diff changeset
  1483
  }
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1484
  def naive_matcher() {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1485
    val r = STAR(STAR("a") ~ STAR("a"))
536
aff7bf93b9c7 comments addressed all
Chengsong
parents: 533
diff changeset
  1486
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1487
    // for(i <- 0 to 10) {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1488
    //   val s = "a" * i 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1489
    //   val t1 = System.nanoTime
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1490
    //   matcher(s, r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1491
    //   val duration = (System.nanoTime - t1) / 1e9d
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1492
    //   print(i)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1493
    //   print(" ")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1494
    //   // print(duration)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1495
    //   // print(" ")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1496
    //   (aprint(bders_simp(s.toList, internalise(r))))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1497
    //   //print(size(ders_simp(s.toList, r)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1498
    //   println()
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1499
    // }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1500
    for(i <- 1 to 3) {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1501
      val s = "a" * i
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1502
      val t1 = System.nanoTime
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1503
      val derssimp_result = ders_simp(s.toList, r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1504
      println(i)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1505
      println(matching_ways_counting(i))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1506
      println(size(derssimp_result))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1507
      rprint(derssimp_result)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1508
    }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1509
573
454ced557605 chapter2 finished polishing
Chengsong
parents: 564
diff changeset
  1510
  }
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1511
  naive_matcher()
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1512
  //single(SEQ(SEQ(STAR(CHAR('b')),STAR(STAR(SEQ(CHAR('a'),CHAR('b'))))),
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1513
  //  SEQ(SEQ(CHAR('b'),STAR(ALTS(CHAR('a'),ONE))),ONE)))
543
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1514
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1515
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1516
  //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
  1517
  def generator_test() {
492
61eff2abb0b6 problem with erase
Chengsong
parents: 435
diff changeset
  1518
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1519
    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
  1520
      // 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
  1521
      val ss = Set("ab")//stringsFromRexp(r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1522
      val boolList = ss.map(s => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1523
        //val bdStrong = bdersStrong(s.toList, internalise(r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1524
        val bdStrong6 = bdersStrong6(s.toList, internalise(r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1525
        val bdStrong6Set = breakIntoTerms(erase(bdStrong6))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1526
        val pdersSet = pderUNIV(r)//.flatMap(r => turnIntoTerms(r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1527
        val pdersSetBroken = pdersSet.flatMap(r => turnIntoTerms(r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1528
        (rs1_subseteq_rs2(bdStrong6Set.toSet, distinctByacc(pdersSet.toList)) ||
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1529
          bdStrong6Set.size <= pdersSet.size || bdStrong6Set.size <= pdersSetBroken.size ||
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1530
          rs1_subseteq_rs2(bdStrong6Set.toSet, pdersSet union pdersSetBroken))//|| bdStrong6Set.size <= pdersSetBroken.size
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1531
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1532
      })
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1533
      //!boolList.exists(b => b == false)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1534
      !boolList.exists(b => b == false)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1535
      }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1536
    }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1537
    // small()
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1538
    // generator_test()
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1539
543
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1540
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1541
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1542
    //STAR(STAR(STAR(SEQ(SEQ(ALTS(STAR(ALTS(ONE,CHAR('c'))),
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1543
    //  CHAR('c')),ALTS(CHAR('a'),ALTS(STAR(CHAR('b')),ALTS(CHAR('a'),ZERO)))),
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1544
    //  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
  1545
    //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
  1546
    //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
  1547
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1548
    //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
  1549
    //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
  1550
    //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
  1551
    //circular double-nullable STAR(SEQ((STAR("b") | "a" | "b"), ("b" | ONE)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1552
    def counterexample_check() {
628
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
  1553
      val r : Rexp = SEQ(ALTS(ONE, 
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
  1554
        SEQ(ALTS(CHAR('f'), CHAR('b')), CHAR('g'))), SEQ(CHAR('a'), SEQ(CHAR('d'), CHAR('e'))))//(1+(f +b)·g)·(a·(d·e))//STAR(SEQ(ALTS(STAR(CHAR('b')),ALTS(CHAR('b'),CHAR('a'))),
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
  1555
      val acc : Set[Rexp] = Set(SEQ(CHAR('a'), SEQ(CHAR('d'), CHAR('e'))), SEQ(SEQ(CHAR('f'), CHAR('g')), SEQ(CHAR('a'), SEQ(CHAR('d'), CHAR('e')))) )
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
  1556
      val a = internalise(r)
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
  1557
      aprint(prune(a, acc));
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
  1558
        //ALTS(ALTS(CHAR('b'),CHAR('c')),STAR(ZERO))))//SEQ(SEQ(STAR(ALTS(CHAR('a'),CHAR('b'))),
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1559
      //ALTS(ALTS(CHAR('c'),CHAR('b')),STAR(ONE))),STAR(CHAR('b')))
628
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
  1560
      // val s = "ab"
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
  1561
      // val bdStrong5 = bdersStrong6(s.toList, internalise(r))
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
  1562
      // val bdStrong5Set = breakIntoTerms(erase(bdStrong5))
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
  1563
      // val pdersSet = pderUNIV(r)//.map(r => erase(bsimp(internalise(r))))//.flatMap(r => turnIntoTerms(r))//.map(oneSimp).flatMap(r => breakIntoTerms(r))
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
  1564
      // val apdersSet = pdersSet.map(internalise)
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
  1565
      // println("original regex ")
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
  1566
      // rprint(r)
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
  1567
      // println("after strong bsimp")
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
  1568
      // aprint(bdStrong5)
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
  1569
      // println("turned into a set %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%   ")
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
  1570
      // rsprint(bdStrong5Set)
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
  1571
      // println("after pderUNIV")
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
  1572
      // rsprint(pdersSet.toList)
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
  1573
      // println("pderUNIV distinctBy6")
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
  1574
      // //asprint(distinctBy6(apdersSet.toList))
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
  1575
      // rsprint((pdersSet.toList).flatMap(turnIntoTerms))
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1576
      // rsprint(turnIntoTerms(pdersSet.toList(3)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1577
      // println("NO 3 not into terms")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1578
      // rprint((pdersSet.toList()))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1579
      // println("after pderUNIV broken")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1580
      // rsprint(pdersSet.flatMap(r => turnIntoTerms(r)).toList)
532
cc54ce075db5 restructured
Chengsong
parents: 530
diff changeset
  1581
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1582
    }
543
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1583
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1584
    // counterexample_check()
543
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1585
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1586
    def lf_display() {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1587
      val r = STAR(SEQ(ALTS(STAR(CHAR('b')),ALTS(CHAR('b'),CHAR('a'))),
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1588
        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
  1589
      //ALTS(ALTS(CHAR('c'),CHAR('b')),STAR(ONE))),STAR(CHAR('b')))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1590
      val s = "ab"
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1591
      val bdStrong5 = bdersStrong6(s.toList, internalise(r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1592
      val bdStrong5Set = breakIntoTerms(erase(bdStrong5))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1593
      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
  1594
      val apdersSet = pdersSet.map(internalise)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1595
      lfprint(lf(r))
543
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1596
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1597
    }
543
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1598
628
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
  1599
    // lf_display()
541
5bf9f94c02e1 some comments implemented
Chengsong
parents: 539
diff changeset
  1600
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1601
    def breakable(r: Rexp) : Boolean = r match {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1602
      case SEQ(ALTS(_, _), _) => true
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1603
      case SEQ(r1, r2) => breakable(r1)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1604
      case _ => false
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1605
    }
532
cc54ce075db5 restructured
Chengsong
parents: 530
diff changeset
  1606
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1607
    def linform_test() {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1608
      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
  1609
      val r_linforms = lf(r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1610
      println(r_linforms.size)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1611
      val pderuniv = pderUNIV(r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1612
      println(pderuniv.size)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1613
    }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1614
    // linform_test()
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1615
    // 1
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1616
    def newStrong_test() {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1617
      val r2 = (CHAR('b') | ONE)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1618
      val r0 = CHAR('d')
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1619
      val r1 = (ONE | CHAR('c'))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1620
      val expRexp = (SEQ(r2, r0) | SEQ(SEQ(r1, r2), r0))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1621
      println(s"original regex is: ")
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1622
      rprint(expRexp)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1623
      val expSimp5 = strongBsimp5(internalise(expRexp))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1624
      val expSimp6 = strongBsimp6(internalise(expRexp))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1625
      aprint(expSimp5)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1626
      aprint(expSimp6)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1627
    }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1628
    // newStrong_test()
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1629
    // SEQ(SEQ(SEQ(ONE,CHAR('b')),STAR(CHAR('b'))),
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1630
    // SEQ(ALTS(ALTS(ZERO,STAR(CHAR('b'))),
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1631
    // STAR(ALTS(CHAR('a'),SEQ(SEQ(STAR(ALTS(STAR(CHAR('c')),CHAR('a'))),
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1632
    // SEQ(CHAR('a'),SEQ(ALTS(CHAR('b'),ZERO),SEQ(ONE,CHAR('b'))))),ONE)))),ONE))
493
Chengsong
parents: 492
diff changeset
  1633
Chengsong
parents: 492
diff changeset
  1634
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1635
    // 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
  1636
    // 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
  1637
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1638
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1639
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1640
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1641
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1642
    def bders_bderssimp() {
543
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1643
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1644
      test(single(SEQ(ALTS(ONE,CHAR('c')),
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1645
        SEQ(SEQ(CHAR('a'),CHAR('a')),ALTS(ONE,CHAR('c'))))), 1) { (r: Rexp) => 
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1646
          // 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
  1647
          val ss = Set("aa")//stringsFromRexp(r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1648
          val boolList = ss.map(s => {
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1649
            //val bdStrong = bdersStrong(s.toList, internalise(r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1650
            val bds = bsimp(bders(s.toList, internalise(r)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1651
            val bdssimp = bsimp(bders_simp(s.toList, internalise(r)))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1652
            //val pdersSet = pderUNIV(r)//.flatMap(r => turnIntoTerms(r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1653
            //val pdersSetBroken = pdersSet.flatMap(r => turnIntoTerms(r))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1654
            //rs1_subseteq_rs2(bdStrong6Set.toSet, distinctByacc(pdersSet.toList))
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1655
            //bdStrong6Set.size <= pdersSet.size || bdStrong6Set.size <= pdersSetBroken.size ||
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1656
            //rs1_subseteq_rs2(bdStrong6Set.toSet, pdersSet union pdersSetBroken)//|| bdStrong6Set.size <= pdersSetBroken.size
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1657
            rprint(r)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1658
            println(bds)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1659
            println(bdssimp)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1660
            bds == bdssimp
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1661
          })
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1662
          //!boolList.exists(b => b == false)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1663
          !boolList.exists(b => b == false)
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1664
          }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1665
        }
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1666
        //  bders_bderssimp()
543
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1667
b2bea5968b89 thesis_thys
Chengsong
parents: 541
diff changeset
  1668
591
b2d0de6aee18 more polishing integrated comments chap2
Chengsong
parents: 573
diff changeset
  1669
628
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
  1670
println("hi!!!!!")
7af4e2420a8c ready to submit~~
Chengsong
parents: 591
diff changeset
  1671
counterexample_check()