| 
232
 | 
     1  | 
// Part 2 about a "Compiler" for the Brainf*** language
  | 
| 
 | 
     2  | 
//======================================================
  | 
| 
 | 
     3  | 
  | 
| 
236
 | 
     4  | 
object CW10b { // only for producing the jar-file
 | 
| 
232
 | 
     5  | 
  | 
| 
 | 
     6  | 
// !!! Copy any function you need from file bf.scala !!!
  | 
| 
 | 
     7  | 
//
  | 
| 
 | 
     8  | 
// If you need any auxiliary function, feel free to 
  | 
| 
 | 
     9  | 
// implement it, but do not make any changes to the
  | 
| 
 | 
    10  | 
// templates below.
  | 
| 
 | 
    11  | 
  | 
| 
 | 
    12  | 
  | 
| 
 | 
    13  | 
def time_needed[T](n: Int, code: => T) = {
 | 
| 
 | 
    14  | 
  val start = System.nanoTime()
  | 
| 
 | 
    15  | 
  for (i <- 0 until n) code
  | 
| 
 | 
    16  | 
  val end = System.nanoTime()
  | 
| 
 | 
    17  | 
  (end - start)/(n * 1.0e9)
  | 
| 
 | 
    18  | 
}
  | 
| 
 | 
    19  | 
  | 
| 
 | 
    20  | 
type Mem = Map[Int, Int]
  | 
| 
 | 
    21  | 
  | 
| 
 | 
    22  | 
  | 
| 
 | 
    23  | 
import io.Source
  | 
| 
 | 
    24  | 
import scala.util._
  | 
| 
 | 
    25  | 
  | 
| 
 | 
    26  | 
def load_bff(name: String) : String = 
  | 
| 
 | 
    27  | 
  Try(Source.fromFile(name)("ISO-8859-1").mkString).getOrElse("")
 | 
| 
 | 
    28  | 
  | 
| 
 | 
    29  | 
def sread(mem: Mem, mp: Int) : Int = 
  | 
| 
 | 
    30  | 
  mem.getOrElse(mp, 0)
  | 
| 
 | 
    31  | 
  | 
| 
 | 
    32  | 
def write(mem: Mem, mp: Int, v: Int) : Mem =
  | 
| 
 | 
    33  | 
  mem.updated(mp, v)
  | 
| 
 | 
    34  | 
  | 
| 
 | 
    35  | 
def jumpRight(prog: String, pc: Int, level: Int) : Int = {
 | 
| 
 | 
    36  | 
  if (prog.length <= pc) pc 
  | 
| 
 | 
    37  | 
  else (prog(pc), level) match {
 | 
| 
 | 
    38  | 
    case (']', 0) => pc + 1
 | 
| 
 | 
    39  | 
    case (']', l) => jumpRight(prog, pc + 1, l - 1)
 | 
| 
 | 
    40  | 
    case ('[', l) => jumpRight(prog, pc + 1, l + 1)
 | 
| 
 | 
    41  | 
    case (_, l) => jumpRight(prog, pc + 1, l)
  | 
| 
 | 
    42  | 
  }
  | 
| 
 | 
    43  | 
}
  | 
| 
 | 
    44  | 
  | 
| 
 | 
    45  | 
def jumpLeft(prog: String, pc: Int, level: Int) : Int = {
 | 
| 
 | 
    46  | 
  if (pc < 0) pc 
  | 
| 
 | 
    47  | 
  else (prog(pc), level) match {
 | 
| 
 | 
    48  | 
    case ('[', 0) => pc + 1
 | 
| 
 | 
    49  | 
    case ('[', l) => jumpLeft(prog, pc - 1, l - 1)
 | 
| 
 | 
    50  | 
    case (']', l) => jumpLeft(prog, pc - 1, l + 1)
 | 
| 
 | 
    51  | 
    case (_, l) => jumpLeft(prog, pc - 1, l)
  | 
| 
 | 
    52  | 
  }
  | 
| 
 | 
    53  | 
}
  | 
| 
 | 
    54  | 
  | 
| 
 | 
    55  | 
def compute(prog: String, pc: Int, mp: Int, mem: Mem) : Mem = {
 | 
| 
 | 
    56  | 
  if (0 <= pc && pc < prog.length) { 
 | 
| 
 | 
    57  | 
    val (new_pc, new_mp, new_mem) = prog(pc) match {
 | 
| 
 | 
    58  | 
      case '>' => (pc + 1, mp + 1, mem)
  | 
| 
 | 
    59  | 
      case '<' => (pc + 1, mp - 1, mem)
  | 
| 
 | 
    60  | 
      case '+' => (pc + 1, mp, write(mem, mp, sread(mem, mp) + 1))
  | 
| 
 | 
    61  | 
      case '-' => (pc + 1, mp, write(mem, mp, sread(mem, mp) - 1))
  | 
| 
 | 
    62  | 
      case '.' => { print(sread(mem, mp).toChar); (pc + 1, mp, mem) }
 | 
| 
 | 
    63  | 
      case ',' => (pc + 1, mp, write(mem, mp, Console.in.read().toByte))
  | 
| 
 | 
    64  | 
      case '['  => 
  | 
| 
 | 
    65  | 
	if (sread(mem, mp) == 0) (jumpRight(prog, pc + 1, 0), mp, mem) else (pc + 1, mp, mem) 
  | 
| 
 | 
    66  | 
      case ']'  => 
  | 
| 
 | 
    67  | 
	if (sread(mem, mp) != 0) (jumpLeft(prog, pc - 1, 0), mp, mem) else (pc + 1, mp, mem) 
  | 
| 
 | 
    68  | 
      case _ => (pc + 1, mp, mem)
  | 
| 
 | 
    69  | 
    }		     
  | 
| 
 | 
    70  | 
    compute(prog, new_pc, new_mp, new_mem)	
  | 
| 
 | 
    71  | 
  }
  | 
| 
 | 
    72  | 
  else mem
  | 
| 
 | 
    73  | 
}
  | 
| 
 | 
    74  | 
  | 
| 
 | 
    75  | 
def run(prog: String, m: Mem = Map()) = compute(prog, 0, 0, m)
  | 
| 
 | 
    76  | 
  | 
| 
 | 
    77  | 
  | 
| 
233
 | 
    78  | 
// The baseline to what we can compare our "compiler"
  | 
| 
 | 
    79  | 
// implemented below. It should require something like 
  | 
| 
 | 
    80  | 
// 60 seconds for the calculation on my laptop
  | 
| 
232
 | 
    81  | 
//
  | 
| 
 | 
    82  | 
//time_needed(1, run(load_bff("benchmark.bf")))
 | 
| 
 | 
    83  | 
  | 
| 
 | 
    84  | 
  | 
| 
 | 
    85  | 
  | 
| 
233
 | 
    86  | 
// DEBUGGING INFORMATION!!!
  | 
| 
 | 
    87  | 
//
  | 
| 
 | 
    88  | 
// Compiler, even real ones, are fiedishly difficult to get
  | 
| 
 | 
    89  | 
// to prduce correct code. The point is that for example for
  | 
| 
 | 
    90  | 
// the sierpinski program, they need to still generate code
  | 
| 
 | 
    91  | 
// that displays such a triangle. If yes, then one usually
  | 
| 
 | 
    92  | 
// can take comfort that all is well. If not, then something
  | 
| 
 | 
    93  | 
// went wrong during the optimisations.
  | 
| 
 | 
    94  | 
  | 
| 
 | 
    95  | 
  | 
| 
232
 | 
    96  | 
  | 
| 
 | 
    97  | 
// (5) Write a function jtable that precomputes the "jump
  | 
| 
 | 
    98  | 
//     table" for a bf-program. This function takes a bf-program 
  | 
| 
 | 
    99  | 
//     as an argument and Returns a Map[Int, Int]. The 
  | 
| 
 | 
   100  | 
//     purpose of this map is to record the information
  | 
| 
233
 | 
   101  | 
//     that given on the position pc is a '[' or a ']',
  | 
| 
 | 
   102  | 
//     then to which pc-position do we need to jump next?
  | 
| 
232
 | 
   103  | 
// 
  | 
| 
 | 
   104  | 
//     For example for the program
  | 
| 
 | 
   105  | 
//    
  | 
| 
 | 
   106  | 
//       "+++++[->++++++++++<]>--<+++[->>++++++++++<<]>>++<<----------[+>.>.<+<]"
  | 
| 
 | 
   107  | 
//
  | 
| 
 | 
   108  | 
//     we obtain the map
  | 
| 
 | 
   109  | 
//
  | 
| 
 | 
   110  | 
//       Map(69 -> 61, 5 -> 20, 60 -> 70, 27 -> 44, 43 -> 28, 19 -> 6)
  | 
| 
 | 
   111  | 
//  
  | 
| 
 | 
   112  | 
//     This states that for the '[' on position 5, we need to
  | 
| 
 | 
   113  | 
//     jump to position 20, which is just after the corresponding ']'.
  | 
| 
 | 
   114  | 
//     Similarly, for the ']' on position 19, we need to jump to
  | 
| 
 | 
   115  | 
//     position 6, which is just after the '[' on position 5, and so
  | 
| 
233
 | 
   116  | 
//     on. The idea is to not calculate this information each time
  | 
| 
 | 
   117  | 
//     we hit a bracket, but just look up this information in the 
  | 
| 
 | 
   118  | 
//     jtable. You can use the jumpLeft and jumpRight functions
  | 
| 
 | 
   119  | 
//     from Part 1 for calculating the jtable.
  | 
| 
232
 | 
   120  | 
//
  | 
| 
233
 | 
   121  | 
//     Then adapt the compute and run functions from Part 1 in order 
  | 
| 
 | 
   122  | 
//     to take advantage of the information stored in the jtable. 
  | 
| 
 | 
   123  | 
//     This means whenever jumpLeft and jumpRight was called previously,
  | 
| 
 | 
   124  | 
//     you should look up the jump address in the jtable.
  | 
| 
232
 | 
   125  | 
 
  | 
| 
 | 
   126  | 
  | 
| 
 | 
   127  | 
def jtable(pg: String) : Map[Int, Int] = 
  | 
| 
 | 
   128  | 
    (0 until pg.length).collect { pc => pg(pc) match {
 | 
| 
 | 
   129  | 
      case '[' => (pc -> jumpRight(pg, pc + 1, 0))
  | 
| 
 | 
   130  | 
      case ']' => (pc -> jumpLeft(pg, pc - 1, 0))
  | 
| 
 | 
   131  | 
    }}.toMap
  | 
| 
 | 
   132  | 
  | 
| 
 | 
   133  | 
  | 
| 
 | 
   134  | 
// testcase
  | 
| 
 | 
   135  | 
// jtable("""+++++[->++++++++++<]>--<+++[->>++++++++++<<]>>++<<----------[+>.>.<+<]""")
 | 
| 
 | 
   136  | 
// =>  Map(69 -> 61, 5 -> 20, 60 -> 70, 27 -> 44, 43 -> 28, 19 -> 6)
  | 
| 
 | 
   137  | 
  | 
| 
 | 
   138  | 
  | 
| 
 | 
   139  | 
def compute2(pg: String, tb: Map[Int, Int], pc: Int, mp: Int, mem: Mem) : Mem = {
 | 
| 
 | 
   140  | 
  if (0 <= pc && pc < pg.length) { 
 | 
| 
 | 
   141  | 
    val (new_pc, new_mp, new_mem) = pg(pc) match {
 | 
| 
 | 
   142  | 
      case '>' => (pc + 1, mp + 1, mem)
  | 
| 
 | 
   143  | 
      case '<' => (pc + 1, mp - 1, mem)
  | 
| 
 | 
   144  | 
      case '+' => (pc + 1, mp, write(mem, mp, sread(mem, mp) + 1))
  | 
| 
 | 
   145  | 
      case '-' => (pc + 1, mp, write(mem, mp, sread(mem, mp) - 1))
  | 
| 
 | 
   146  | 
      case '.' => { print(sread(mem, mp).toChar); (pc + 1, mp, mem) }
 | 
| 
 | 
   147  | 
      case ',' => (pc + 1, mp, write(mem, mp, Console.in.read().toByte))
  | 
| 
 | 
   148  | 
      case '['  => 
  | 
| 
 | 
   149  | 
	if (sread(mem, mp) == 0) (tb(pc), mp, mem) else (pc + 1, mp, mem) 
  | 
| 
 | 
   150  | 
      case ']'  => 
  | 
| 
 | 
   151  | 
	if (sread(mem, mp) != 0) (tb(pc), mp, mem) else (pc + 1, mp, mem) 
  | 
| 
 | 
   152  | 
      case _ => (pc + 1, mp, mem)
  | 
| 
 | 
   153  | 
    }		     
  | 
| 
 | 
   154  | 
    compute2(pg, tb, new_pc, new_mp, new_mem)	
  | 
| 
 | 
   155  | 
  }
  | 
| 
 | 
   156  | 
  else mem
  | 
| 
 | 
   157  | 
}
  | 
| 
 | 
   158  | 
  | 
| 
 | 
   159  | 
  | 
| 
 | 
   160  | 
def run2(pg: String, m: Mem = Map()) = 
  | 
| 
 | 
   161  | 
  compute2(pg, jtable(pg), 0, 0, m)
  | 
| 
 | 
   162  | 
  | 
| 
 | 
   163  | 
//time_needed(1, run2(load_bff("benchmark.bf")))
 | 
| 
 | 
   164  | 
  | 
| 
 | 
   165  | 
  | 
| 
233
 | 
   166  | 
  | 
| 
232
 | 
   167  | 
// (6) Write a function optimise which deletes "dead code" (everything
  | 
| 
 | 
   168  | 
// that is not a bf-command) and also replaces substrings of the form
  | 
| 
233
 | 
   169  | 
// [-] by a new command 0. The idea is that the loop [-] just resets the
  | 
| 
232
 | 
   170  | 
// memory at the current location to 0. In the compute3 and run3 functions
  | 
| 
233
 | 
   171  | 
// below you implement this command by writing the number 0 to mem(mp), 
  | 
| 
 | 
   172  | 
// that is write(mem, mp, 0). 
  | 
| 
232
 | 
   173  | 
//
  | 
| 
 | 
   174  | 
// The easiest way to modify a string in this way is to use the regular
  | 
| 
233
 | 
   175  | 
// expression """[^<>+-.,\[\]]""", which recognises everything that is 
  | 
| 
232
 | 
   176  | 
// not a bf-command and replace it by the empty string. Similarly the
  | 
| 
 | 
   177  | 
// regular expression """\[-\]""" finds all occurences of [-] and 
  | 
| 
 | 
   178  | 
// by using the Scala method .replaceAll you can repplace it with the 
  | 
| 
233
 | 
   179  | 
// string "0" standing for the new bf-command.
  | 
| 
232
 | 
   180  | 
  | 
| 
 | 
   181  | 
def optimise(s: String) : String = 
  | 
| 
 | 
   182  | 
  s.replaceAll("""[^<>+-.,\[\]]""","").replaceAll("""\[-\]""", "0")
 | 
| 
 | 
   183  | 
  | 
| 
233
 | 
   184  | 
  | 
| 
232
 | 
   185  | 
def compute3(pg: String, tb: Map[Int, Int], pc: Int, mp: Int, mem: Mem) : Mem = {
 | 
| 
 | 
   186  | 
  if (0 <= pc && pc < pg.length) { 
 | 
| 
 | 
   187  | 
    val (new_pc, new_mp, new_mem) = pg(pc) match {
 | 
| 
 | 
   188  | 
      case '0' => (pc + 1, mp, write(mem, mp, 0))
  | 
| 
 | 
   189  | 
      case '>' => (pc + 1, mp + 1, mem)
  | 
| 
 | 
   190  | 
      case '<' => (pc + 1, mp - 1, mem)
  | 
| 
 | 
   191  | 
      case '+' => (pc + 1, mp, write(mem, mp, sread(mem, mp) + 1))
  | 
| 
 | 
   192  | 
      case '-' => (pc + 1, mp, write(mem, mp, sread(mem, mp) - 1))
  | 
| 
 | 
   193  | 
      case '.' => { print(sread(mem, mp).toChar); (pc + 1, mp, mem) }
 | 
| 
 | 
   194  | 
      case ',' => (pc + 1, mp, write(mem, mp, Console.in.read().toByte))
  | 
| 
 | 
   195  | 
      case '['  => 
  | 
| 
 | 
   196  | 
	if (sread(mem, mp) == 0) (tb(pc), mp, mem) else (pc + 1, mp, mem) 
  | 
| 
 | 
   197  | 
      case ']'  => 
  | 
| 
 | 
   198  | 
	if (sread(mem, mp) != 0) (tb(pc), mp, mem) else (pc + 1, mp, mem) 
  | 
| 
 | 
   199  | 
      case _ => (pc + 1, mp, mem)
  | 
| 
 | 
   200  | 
    }		     
  | 
| 
 | 
   201  | 
    compute3(pg, tb, new_pc, new_mp, new_mem)	
  | 
| 
 | 
   202  | 
  }
  | 
| 
 | 
   203  | 
  else mem
  | 
| 
 | 
   204  | 
}
  | 
| 
 | 
   205  | 
  | 
| 
 | 
   206  | 
def run3(pg: String, m: Mem = Map()) = { 
 | 
| 
 | 
   207  | 
  val pg_opt = optimise(pg)
  | 
| 
 | 
   208  | 
  compute3(pg_opt, jtable(pg_opt), 0, 0, m)
  | 
| 
 | 
   209  | 
}
  | 
| 
 | 
   210  | 
  | 
| 
 | 
   211  | 
  | 
| 
233
 | 
   212  | 
// testcases
  | 
| 
 | 
   213  | 
  | 
| 
 | 
   214  | 
//optimise(load_bff("benchmark.bf"))          // should have inserted 0's
 | 
| 
 | 
   215  | 
//optimise(load_bff("mandelbrot.bf")).length  // => 11203
 | 
| 
 | 
   216  | 
 
  | 
| 
 | 
   217  | 
//time_needed(1, run3(load_bff("benchmark.bf")))
 | 
| 
 | 
   218  | 
  | 
| 
232
 | 
   219  | 
  | 
| 
 | 
   220  | 
  | 
| 
233
 | 
   221  | 
// (7)  Write a function combine which replaces sequences
  | 
| 
 | 
   222  | 
// of repated increment and decrement commands by appropriate
  | 
| 
 | 
   223  | 
// two-character commands. For example for sequences of +
  | 
| 
 | 
   224  | 
//
  | 
| 
 | 
   225  | 
//              orig bf-cmds  | replacement
  | 
| 
 | 
   226  | 
//            ------------------------------
  | 
| 
 | 
   227  | 
//              +             | +A 
  | 
| 
 | 
   228  | 
//              ++            | +B
  | 
| 
 | 
   229  | 
//              +++           | +C
  | 
| 
 | 
   230  | 
//                            |
  | 
| 
 | 
   231  | 
//              ...           |
  | 
| 
 | 
   232  | 
//                            | 
  | 
| 
 | 
   233  | 
//              +++....+++    | +Z
  | 
| 
 | 
   234  | 
//                (where length = 26)
  | 
| 
 | 
   235  | 
//
  | 
| 
 | 
   236  | 
//  Similar for the bf-command -, > and <. All other commands should
  | 
| 
 | 
   237  | 
//  be unaffected by this change.
  | 
| 
 | 
   238  | 
//
  | 
| 
 | 
   239  | 
//  Adapt the compute4 and run4 functions such that they can deal
  | 
| 
 | 
   240  | 
//  appropriately with such two-character commands.
  | 
| 
232
 | 
   241  | 
  | 
| 
 | 
   242  | 
def splice(cs: List[Char], acc: List[(Char, Int)]) : List[(Char, Int)] = (cs, acc) match {
 | 
| 
 | 
   243  | 
  case (Nil, acc) => acc  
  | 
| 
 | 
   244  | 
  case ('[' :: cs, acc) => splice(cs, ('[', 1) :: acc)
 | 
| 
 | 
   245  | 
  case (']' :: cs, acc) => splice(cs, (']', 1) :: acc)
 | 
| 
 | 
   246  | 
  case ('.' :: cs, acc) => splice(cs, ('.', 1) :: acc)
 | 
| 
 | 
   247  | 
  case (',' :: cs, acc) => splice(cs, (',', 1) :: acc)
 | 
| 
 | 
   248  | 
  case ('0' :: cs, acc) => splice(cs, ('0', 1) :: acc)
 | 
| 
 | 
   249  | 
  case (c :: cs, Nil) => splice(cs, List((c, 1)))
  | 
| 
 | 
   250  | 
  case (c :: cs, (d, n) :: acc) => 
  | 
| 
 | 
   251  | 
    if (c == d && n < 26) splice(cs, (c, n + 1) :: acc)
  | 
| 
 | 
   252  | 
    else splice(cs, (c, 1) :: (d, n) :: acc)
  | 
| 
 | 
   253  | 
}
  | 
| 
 | 
   254  | 
  | 
| 
 | 
   255  | 
def spl(s: String) = splice(s.toList, Nil).reverse
  | 
| 
 | 
   256  | 
  | 
| 
234
 | 
   257  | 
//spl(load_bff("benchmark.bf"))
 | 
| 
232
 | 
   258  | 
  | 
| 
233
 | 
   259  | 
def combine(s: String) : String = {
 | 
| 
 | 
   260  | 
  (for ((c, n) <- spl(s)) yield c match {
 | 
| 
232
 | 
   261  | 
    case '>' => List('>', (n + '@').toChar)
 | 
| 
 | 
   262  | 
    case '<' => List('<', (n + '@').toChar)
 | 
| 
 | 
   263  | 
    case '+' => List('+', (n + '@').toChar)
 | 
| 
 | 
   264  | 
    case '-' => List('-', (n + '@').toChar)
 | 
| 
 | 
   265  | 
    case _ => List(c)
  | 
| 
 | 
   266  | 
  }).flatten.mkString
  | 
| 
 | 
   267  | 
}
  | 
| 
 | 
   268  | 
  | 
| 
 | 
   269  | 
  | 
| 
234
 | 
   270  | 
//combine(load_bff("benchmark.bf"))
 | 
| 
232
 | 
   271  | 
  | 
| 
 | 
   272  | 
def compute4(pg: String, tb: Map[Int, Int], pc: Int, mp: Int, mem: Mem) : Mem = {
 | 
| 
 | 
   273  | 
  if (0 <= pc && pc < pg.length) { 
 | 
| 
 | 
   274  | 
    val (new_pc, new_mp, new_mem) = pg(pc) match {
 | 
| 
 | 
   275  | 
      case '0' => (pc + 1, mp, write(mem, mp, 0))
  | 
| 
 | 
   276  | 
      case '>' => (pc + 2, mp + (pg(pc + 1) - '@'), mem)
  | 
| 
 | 
   277  | 
      case '<' => (pc + 2, mp - (pg(pc + 1) - '@'), mem)
  | 
| 
 | 
   278  | 
      case '+' => (pc + 2, mp, write(mem, mp, sread(mem, mp) + (pg(pc + 1) - '@')))
  | 
| 
 | 
   279  | 
      case '-' => (pc + 2, mp, write(mem, mp, sread(mem, mp) - (pg(pc + 1) - '@')))
  | 
| 
 | 
   280  | 
      case '.' => { print(sread(mem, mp).toChar); (pc + 1, mp, mem) }
 | 
| 
 | 
   281  | 
      case ',' => (pc + 1, mp, write(mem, mp, Console.in.read().toByte))
  | 
| 
 | 
   282  | 
      case '['  => 
  | 
| 
 | 
   283  | 
	if (sread(mem, mp) == 0) (tb(pc), mp, mem) else (pc + 1, mp, mem) 
  | 
| 
 | 
   284  | 
      case ']'  => 
  | 
| 
 | 
   285  | 
	if (sread(mem, mp) != 0) (tb(pc), mp, mem) else (pc + 1, mp, mem) 
  | 
| 
 | 
   286  | 
      case _ => (pc + 1, mp, mem)
  | 
| 
 | 
   287  | 
    }		     
  | 
| 
 | 
   288  | 
    compute4(pg, tb, new_pc, new_mp, new_mem)	
  | 
| 
 | 
   289  | 
  }
  | 
| 
 | 
   290  | 
  else mem
  | 
| 
 | 
   291  | 
}
  | 
| 
 | 
   292  | 
  | 
| 
 | 
   293  | 
def run4(pg: String, m: Mem = Map()) = { 
 | 
| 
233
 | 
   294  | 
  val pg_opt = combine(optimise(pg))
  | 
| 
232
 | 
   295  | 
  compute4(pg_opt, jtable(pg_opt), 0, 0, m)
  | 
| 
 | 
   296  | 
}
  | 
| 
 | 
   297  | 
  | 
| 
234
 | 
   298  | 
// testcases
  | 
| 
 | 
   299  | 
//combine(optimise(load_bff("benchmark.bf"))) // => """>A+B[<A+M>A-A]<A[[....."""
 | 
| 
233
 | 
   300  | 
  | 
| 
232
 | 
   301  | 
//time_needed(1, run4(load_bff("benchmark.bf")))
 | 
| 
233
 | 
   302  | 
  | 
| 
 | 
   303  | 
//time_needed(1, run(load_bff("sierpinski.bf"))) 
 | 
| 
 | 
   304  | 
//time_needed(1, run4(load_bff("sierpinski.bf"))) 
 | 
| 
 | 
   305  | 
  | 
| 
232
 | 
   306  | 
//time_needed(1, run4(load_bff("mandelbrot.bf")))
 | 
| 
 | 
   307  | 
  | 
| 
 | 
   308  | 
  | 
| 
234
 | 
   309  | 
}
  |