summaryrefslogtreecommitdiff
path: root/test/files/run/Course-2002-07.scala
blob: aebef8b429415c36424bb91720480cf8f6155d75 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
//############################################################################
// Programmation IV - 2002 - Week 07
//############################################################################
// $Id$

module M0 {

  trait Expr {
    def isNumber: boolean;
    def isSum: boolean;
    def numValue: int;
    def leftOp: Expr;
    def rightOp: Expr;
  }

  class Number(n: int) extends Expr {
    def isNumber: boolean = true;
    def isSum: boolean = false;
    def numValue: int = n;
    def leftOp: Expr = error("Number.leftOp");
    def rightOp: Expr = error("Number.rightOp");
  }
  class Sum(e1: Expr, e2: Expr) extends Expr {
    def isNumber: boolean = false;
    def isSum: boolean = true;
    def numValue: int = error("Sum.numValue");
    def leftOp: Expr = e1;
    def rightOp: Expr = e2;
  }

  class Prod(e1: Expr, e2: Expr) extends Expr {
    def isNumber: boolean = false;
    def isSum: boolean = false;
    def numValue: int = error("Prod.numValue");
    def leftOp: Expr = e1;
    def rightOp: Expr = e2;
  }

  class Var(x: String) extends Expr {
    def isNumber: boolean = false;
    def isSum: boolean = false;
    def numValue: int = error("Var.numValue");
    def leftOp: Expr = error("Var.leftOp");
    def rightOp: Expr = error("Var.rightOp");
  }

  def eval(e: Expr): int = {
    if (e.isNumber) e.numValue
    else if (e.isSum) eval(e.leftOp) + eval(e.rightOp)
    else error("unknown expression")
  }

  def test = {
    System.out.println("        0 = " + eval(new Number(0)));
    System.out.println("        1 = " + eval(new Number(1)));
    System.out.println("    0 + 1 = " +
      eval(new Sum(new Number(0),new Number(1))));
    System.out.println("    1 + 2 = " +
      eval(new Sum(new Number(1),new Number(2))));
    System.out.println("2 + 3 + 4 = " +
      eval(new Sum(new Sum(new Number(2),new Number(3)),new Number(4))));
    System.out.println();
  }

}

//############################################################################

module M1 {

  trait Expr {
    def eval: int;
  }
  class Number(n: int) extends Expr {
    def eval: int = n;
  }
  class Sum(e1: Expr, e2: Expr) extends Expr {
    def eval: int = e1.eval + e2.eval;
  }

  def test = {
    System.out.println("        0 = " + new Number(0).eval);
    System.out.println("        1 = " + new Number(1).eval);
    System.out.println("    0 + 1 = " +
      new Sum(new Number(0),new Number(1)).eval);
    System.out.println("    1 + 2 = " +
      new Sum(new Number(1),new Number(2)).eval);
    System.out.println("2 + 3 + 4 = " +
      new Sum(new Sum(new Number(2),new Number(3)),new Number(4)).eval);
    System.out.println();
  }
}

//############################################################################

module M2 {

  trait Expr;
  case class Number(n: int) extends Expr;
  case class Sum(e1: Expr, e2: Expr) extends Expr;

  def eval(e: Expr): int = e match {
    case Number(n) => n
    case Sum(e1, e2) => eval(e1) + eval(e2)
  }

  def test = {
    System.out.println("        0 = " + eval(Number(0)));
    System.out.println("        1 = " + eval(Number(1)));
    System.out.println("    0 + 1 = " + eval(Sum(Number(0),Number(1))));
    System.out.println("    1 + 2 = " + eval(Sum(Number(1),Number(2))));
    System.out.println("2 + 3 + 4 = " + eval(Sum(Sum(Number(2),Number(3)),
                                             Number(4))));
    System.out.println();
  }
}

//############################################################################

module M3 {

  trait Expr {
    def eval: int = this match {
      case Number(n) => n
      case Sum(e1, e2) => e1.eval + e2.eval
    }
  }
  case class Number(n: int) extends Expr;
  case class Sum(e1: Expr, e2: Expr) extends Expr;

  def test = {
    System.out.println("        0 = " + Number(0).eval);
    System.out.println("        1 = " + Number(1).eval);
    System.out.println("    0 + 1 = " + Sum(Number(0),Number(1)).eval);
    System.out.println("    1 + 2 = " + Sum(Number(1),Number(2)).eval);
    System.out.println("2 + 3 + 4 = " + Sum(Sum(Number(2),Number(3)),
                                             Number(4)).eval);
    System.out.println();
  }

}

//############################################################################

module M4 {

  def concat[a](xss: List[List[a]]): List[a] = xss match {
    case List() => List()
    case xs :: xss1 => xs ::: concat(xss1)
  }

  def test_concat[a](xss: List[List[a]]) = {
    System.out.println(concat(xss).toString() + " = concat(" + xss + ")"); // !!! .toString()
  }

  def test = {
    test_concat(List());
    test_concat(List(List()));
    test_concat(List(List(),List()));
    test_concat(List(List(),List(),List()));

    test_concat(List(List(1,2,3,4,5,6)));
    test_concat(List(List(1,2,3,4,5,6),List[int]())); // !!! [int]
    test_concat(List(List(1,2,3),List(4,5,6)));
    test_concat(List(List[int](),List(1,2,3,4,5,6))); // !!! [int]
    test_concat(List(List(1,2,3,4,5,6),List[int](),List[int]())); // !!! [int]
    test_concat(List(List(1,2,3,4,5),List(6),List[int]())); // !!! [int]
    test_concat(List(List(1,2,3),List(4,5,6),List[int]())); // !!! [int]
    test_concat(List(List(1),List(2,3,4,5,6),List[int]())); // !!! [int]
    test_concat(List(List[int](),List(1,2,3,4,5,6),List[int]())); // !!! [int]
    test_concat(List(List[int](),List(1,2,3,4,5),List(6))); // !!! [int]
    test_concat(List(List[int](),List(1,2,3),List(4,5,6))); // !!! [int]
    test_concat(List(List[int](),List(1),List(2,3,4,5,6))); // !!! [int]
    test_concat(List(List[int](),List[int](),List(1,2,3,4,5,6))); // !!! [int]
    test_concat(List(List(1,2),List(3,4),List(5,6)));
    System.out.println();
  }

}

//############################################################################

module M5 {

  def zipFun[a,b](xs:List[a], ys:List[b]):List[Pair[a,b]] = Pair(xs,ys) match {
    case Pair(List(), _) => List()
    case Pair(_, List()) => List()
    case Pair(x :: xs1, y :: ys1) => Pair(x, y) :: zipFun(xs1, ys1)
  }

  def test_zipFun[a,b](xs: List[a], ys: List[b]) = {
    System.out.println(zipFun(xs,ys).toString() + " = zipFun(" + xs + "," + ys + ")"); // !!! .toString()
  }

  def test = {
    test_zipFun(List(),List());
    test_zipFun(List(),List('a','b','c'));
    test_zipFun(List(1,2,3),List());

    test_zipFun(List(1),List('a'));
    test_zipFun(List(1),List('a','b','c'));
    test_zipFun(List(1,2,3),List('a'));

    test_zipFun(List(1,2),List('a','b'));
    test_zipFun(List(1,2),List('a','b','c'));
    test_zipFun(List(1,2,3),List('a','b'));

    test_zipFun(List(1,2,3),List('a','b','c'));

    System.out.println();
  }

}


//############################################################################

module M6 {

  def zipFun[a,b](xs:List[a], ys:List[b]):List[Pair[a,b]] = Pair(xs,ys) match {
    // !!! case Pair(List(), _), Pair(_, List()) => List()
    case Pair(x :: xs1, y :: ys1) => Pair(x, y) :: zipFun(xs1, ys1)
  }

  def test_zipFun[a,b](xs: List[a], ys: List[b]) = {
    System.out.println(zipFun(xs,ys).toString() + " = zipFun(" + xs + "," + ys + ")"); // !!! .toString()
  }

  def test = {
    test_zipFun(List(),List());
    test_zipFun(List(),List('a','b','c'));
    test_zipFun(List(1,2,3),List());

    test_zipFun(List(1),List('a'));
    test_zipFun(List(1),List('a','b','c'));
    test_zipFun(List(1,2,3),List('a'));

    test_zipFun(List(1,2),List('a','b'));
    test_zipFun(List(1,2),List('a','b','c'));
    test_zipFun(List(1,2,3),List('a','b'));

    test_zipFun(List(1,2,3),List('a','b','c'));

    System.out.println();
  }

}

//############################################################################

module M7 {

  def heads[a](xss: List[List[a]]): List[a] = xss flatMap {
    case x :: xs => List(x)
    case List() => List()
  }

  def test_heads[a](xss: List[List[a]]) = {
    System.out.println(heads(xss).toString() + " = heads(" + xss + ")"); // !!! .toString()
  }


  def test = {
    test_heads(List());
    test_heads(List(List()));
    test_heads(List(List(),List()));
    test_heads(List(List(),List(),List()));

    test_heads(List(List(1,2,3,4,5,6)));
    test_heads(List(List(1,2,3,4,5,6),List[int]())); // !!! [int]
    test_heads(List(List[int](),List(1,2,3,4,5,6))); // !!! [int]
    test_heads(List(List(1,2,3,4,5,6),List[int](),List[int]())); // !!! [int]
    test_heads(List(List[int](),List(1,2,3,4,5,6),List[int]())); // !!! [int]
    test_heads(List(List[int](),List[int](),List(1,2,3,4,5,6))); // !!! [int]

    test_heads(List(List(1),List(2,3,4,5,6),List[int]())); // !!! [int]
    test_heads(List(List[int](),List(1),List(2,3,4,5,6))); // !!! [int]

    test_heads(List(List(1,2,3),List(4,5,6)));
    test_heads(List(List(1,2,3),List(4,5,6),List[int]())); // !!! [int]
    test_heads(List(List[int](),List(1,2,3),List(4,5,6))); // !!! [int]

    test_heads(List(List(1,2,3,4,5),List(6),List[int]())); // !!! [int]
    test_heads(List(List[int](),List(1,2,3,4,5),List(6))); // !!! [int]

    test_heads(List(List(1,2),List(3,4),List(5,6)));

    System.out.println();
  }

}

//############################################################################

module M8 {

  def heads[a](xss: List[List[a]]): List[a] = xss.flatMap {
    y => y match {
      case x :: xs => List(x)
      case List() => List()
    }
  }

  def test_heads[a](xss: List[List[a]]) = {
    System.out.println(heads(xss).toString() + " = heads(" + xss + ")"); // !!! .toString()
  }


  def test = {
    test_heads(List());
    test_heads(List(List()));
    test_heads(List(List(),List()));
    test_heads(List(List(),List(),List()));

    test_heads(List(List(1,2,3,4,5,6)));
    test_heads(List(List(1,2,3,4,5,6),List[int]())); // !!! [int]
    test_heads(List(List[int](),List(1,2,3,4,5,6))); // !!! [int]
    test_heads(List(List(1,2,3,4,5,6),List[int](),List[int]())); // !!! [int]
    test_heads(List(List[int](),List(1,2,3,4,5,6),List[int]())); // !!! [int]
    test_heads(List(List[int](),List[int](),List(1,2,3,4,5,6))); // !!! [int]

    test_heads(List(List(1),List(2,3,4,5,6),List[int]())); // !!! [int]
    test_heads(List(List[int](),List(1),List(2,3,4,5,6))); // !!! [int]

    test_heads(List(List(1,2,3),List(4,5,6)));
    test_heads(List(List(1,2,3),List(4,5,6),List[int]())); // !!! [int]
    test_heads(List(List[int](),List(1,2,3),List(4,5,6))); // !!!

    test_heads(List(List(1,2,3,4,5),List(6),List[int]())); // !!! [int]
    test_heads(List(List[int](),List(1,2,3,4,5),List(6))); // !!! [int]

    test_heads(List(List(1,2),List(3,4),List(5,6)));

    System.out.println();
  }

}

//############################################################################

module M9 {

  trait Expr {
    def derive(v: Var): Expr = match {
      case Number(_) => Number(0)
      case Var(name) => if (name == v.name) Number(1) else Number(0)
      case Sum(e1, e2) => Sum(e1 derive v, e2 derive v)
      case Prod(e1, e2) => Sum(Prod(e1, e2 derive v), Prod(e2, e1 derive v))
    }
  }
  case class Number(x: int) extends Expr {
    override def toString() = "Number(" + x + ")"; // !!! remove !
  }
  case class Var(name: String) extends Expr {
    override def toString() = "Var(" + name + ")"; // !!! remove !
  }
  case class Sum(e1: Expr, e2: Expr) extends Expr {
    override def toString() = "Sum(" + e1 + ", " + e2 + ")"; // !!! remove !
  }
  case class Prod(e1: Expr, e2: Expr) extends Expr {
    override def toString() = "Prod(" + e1 + ", " + e2 + ")"; // !!! remove !
  }

  def test = {
    val x = Var("x");
    val f0 = Prod(x, x);
    val f1 = f0 derive x;
    System.out.println("f (x) = " + f0);
    System.out.println("f'(x) = " + f1);
    System.out.println();
  }

}

//############################################################################

module MA {

  def lookup[k,v](xs: List[Pair[k,v]], k: k): v = xs match {
    case List() => error("no value for " + k)
    case Pair(k1,v1) :: xs1 => if (k1 == k) v1 else lookup(xs1, k)
  }

  trait Expr {
    def + (that: Expr) = Sum(this, that);
    def * (that: Expr) = Prod(this, that);
    def derive(v: Var): Expr = this match {
      case Number(_) => Number(0)
      case Var(name) => if (name == v.name) Number(1) else Number(0)
      case Sum(e1, e2) => (e1 derive v) + (e2 derive v)
      case Prod(e1, e2) => e1 * (e2 derive v) + e2 * (e1 derive v)
    }
  }
  case class Number(x: int) extends Expr {
    override def toString() = x.toString()
  }
  case class Var(name: String) extends Expr {
    override def toString() = name;
  }
  case class Sum(e1: Expr, e2: Expr) extends Expr {
    override def toString() = e1.toString() + " + " + e2.toString();
  }
  case class Prod(e1: Expr, e2: Expr) extends Expr {
    override def toString() = {
      def factorToString(e: Expr) = e match {
        case Sum(_, _) => "(" + e.toString() + ")"
        case _ => e.toString()
      }
      factorToString(e1) + " * " + factorToString(e2);
    }
  }

  def eval(e: Expr): int = e match {
    case Number(n) => n
    case Var(_) => error("cannot evaluate variable")
    case Sum(e1, e2) => eval(e1) + eval(e2)
    case Prod(e1, e2) => eval(e1) * eval(e2)
  }

  def evalvars(xs: List[Pair[String,int]]) = {
    def loop(e: Expr): int = e match {
      case Number(n) => n
      case Var(name) => lookup(xs,name)
      case Sum(e1, e2) => loop(e1) + loop(e2)
      case Prod(e1, e2) => loop(e1) * loop(e2)
    }
    loop
  }

  def test = {
    val x = Var("x");

    val f0 = x * x;
    val f1 = f0 derive x;
    System.out.println("f (x) = " + f0);
    System.out.println("f'(x) = " + f1);

    val g0 = Number(2) * x * x + Number(3) * x;
    val g1 = g0 derive x;
    System.out.println("g (x) = " + g0);
    System.out.println("g'(x) = " + g1);
    System.out.println("g (3) = " + evalvars(List(Pair("x",3)))(g0));
    System.out.println("g'(3) = " + evalvars(List(Pair("x",3)))(g1));

    System.out.println();
  }

}

//############################################################################

module Test {
  def main(args: Array[String]): unit = {
    M0.test;
    M1.test;
    M2.test;
    M3.test;
    M4.test;
    M5.test;
    // !!! M6.test;
    M7.test;
    M8.test;
    M9.test;
    MA.test;
    ()
  }
}

//############################################################################