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 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722
|
//############################################################################
// Programmation IV - 2002 - Week 07
//############################################################################
object 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 = {
Console.println(" 0 = " + eval(new Number(0)));
Console.println(" 1 = " + eval(new Number(1)));
Console.println(" 0 + 1 = " +
eval(new Sum(new Number(0),new Number(1))));
Console.println(" 1 + 2 = " +
eval(new Sum(new Number(1),new Number(2))));
Console.println("2 + 3 + 4 = " +
eval(new Sum(new Sum(new Number(2),new Number(3)),new Number(4))));
Console.println;
}
}
//############################################################################
object 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 = {
Console.println(" 0 = " + new Number(0).eval);
Console.println(" 1 = " + new Number(1).eval);
Console.println(" 0 + 1 = " +
new Sum(new Number(0),new Number(1)).eval);
Console.println(" 1 + 2 = " +
new Sum(new Number(1),new Number(2)).eval);
Console.println("2 + 3 + 4 = " +
new Sum(new Sum(new Number(2),new Number(3)),new Number(4)).eval);
Console.println;
}
}
//############################################################################
object 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 = {
Console.println(" 0 = " + eval(Number(0)));
Console.println(" 1 = " + eval(Number(1)));
Console.println(" 0 + 1 = " + eval(Sum(Number(0),Number(1))));
Console.println(" 1 + 2 = " + eval(Sum(Number(1),Number(2))));
Console.println("2 + 3 + 4 = " + eval(Sum(Sum(Number(2),Number(3)),
Number(4))));
Console.println;
}
}
//############################################################################
object 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 = {
Console.println(" 0 = " + Number(0).eval);
Console.println(" 1 = " + Number(1).eval);
Console.println(" 0 + 1 = " + Sum(Number(0),Number(1)).eval);
Console.println(" 1 + 2 = " + Sum(Number(1),Number(2)).eval);
Console.println("2 + 3 + 4 = " + Sum(Sum(Number(2),Number(3)),
Number(4)).eval);
Console.println;
}
}
//############################################################################
object 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]]) = {
Console.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)));
Console.println;
}
}
//############################################################################
object 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]) = {
Console.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'));
Console.println;
}
}
//############################################################################
object M6 {
def zipFun[a,b](xs:List[a], ys:List[b]):List[Pair[a,b]] = (Pair(xs,ys): @unchecked) 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]) = {
Console.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'));
Console.println;
}
}
//############################################################################
object 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]]) = {
Console.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)));
Console.println;
}
}
//############################################################################
object 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]]) = {
Console.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)));
Console.println;
}
}
//############################################################################
object M9 {
trait Expr {
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) => 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;
Console.println("f (x) = " + f0);
Console.println("f'(x) = " + f1);
Console.println;
}
}
//############################################################################
object 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[(String,Int)]): Expr => 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;
Console.println("f (x) = " + f0);
Console.println("f'(x) = " + f1);
val g0 = Number(2) * x * x + Number(3) * x;
val g1 = g0 derive x;
Console.println("g (x) = " + g0);
Console.println("g'(x) = " + g1);
Console.println("g (3) = " + evalvars(List(Pair("x",3)))(g0));
Console.println("g'(3) = " + evalvars(List(Pair("x",3)))(g1));
Console.println;
}
}
//############################################################################
object Utils {
private def power0(x: Int, y: Int): Int =
if (y == 1) x else if (y % 2 == 0) power0(x*x,y/2) else x*power0(x, y-1);
def power(x: Int, y: Int): Int = (x,y) match {
case Pair(0,0) => error("power(0,0)")
case Pair(0,_) => 0
case Pair(1,_) => 1
case Pair(_,0) => 1
case Pair(_,1) => x
case Pair(_,2) => x*x
case Pair(_,_) => if (y < 0) 1/power0(x,y) else power0(x,y)
}
def lookup(entries: List[(String,Int)], key: String): Int = entries match {
case List() => error("no value for " + key)
case Pair(k,v) :: _ if (k == key) => v
case _ :: rest => lookup(rest, key)
}
def compare(xs: List[String], ys: List[String]): Int = (xs, ys) match {
case Pair(List(), List()) => 0
case Pair(List(), _ ) => -1
case Pair(_ , List()) => +1
case Pair(x::xs , y::ys ) => {
val diff = x.compareTo(y);
if (diff != 0) diff else compare(xs,ys)
}
}
}
object MB {
import Utils._;
trait Expr {
private def count: Int = this match {
case Lit(n) => n
case Mul(Lit(n),_) => n
case _ => 1
}
private def term: Expr = this match {
case Lit(_) => Lit(1)
case Mul(Lit(_),r) => r
case _ => this
}
private def vars: List[String] = this match {
case Var(n) => List(n)
case Mul(l,r) => l.vars ::: r.vars
case Pow(l,n) => { val vs = l.vars; List.range(0,n).flatMap(i => vs) }
case _ => List()
}
private def +< (that: Expr): Boolean = (this +<? that) < 0;
private def +<= (that: Expr): Boolean = (this +<? that) <= 0;
private def +<? (that: Expr): Int = Pair(this,that) match {
case Pair(Add(_,_), _ ) => 0
case Pair(_ , Add(_,_)) => 0
case Pair(_ , _ ) => compare(this.vars,that.vars)
}
def + (that: Expr): Expr = if (that +<= this) Pair(this,that) match {
case Pair(_ , Lit(0) ) => this
case Pair(Lit(l) , Lit(r) ) => Lit(l + r)
case Pair(_ , Add(rl,rr)) => (this + rl) + rr
case Pair(Add(ll,lr), _ ) if (lr +<= that) => ll + (that + lr)
case Pair(_ , _ ) => {
val l = this.term;
val r = that.term;
if (l equ r) Lit(this.count + that.count) * r else Add(this, that)
}
} else that + this;
private def *< (that: Expr): Boolean = (this *<? that) < 0;
private def *<= (that: Expr): Boolean = (this *<? that) <= 0;
private def *<? (that: Expr): Int = Pair(this,that) match {
case Pair(Mul(_,_), _ ) => 0
case Pair(_ , Mul(_,_)) => 0
case Pair(Add(_,_), Add(_,_)) => 0
case Pair(Add(_,_), _ ) => -1
case Pair(_ , Add(_,_)) => +1
case Pair(Lit(_) , Lit(_) ) => 0
case Pair(Lit(_) , _ ) => -1
case Pair(_ , Lit(_) ) => +1
case Pair(Var(l) , Var(r) ) => l.compareTo(r)
case Pair(Var(_) , Pow(r,_)) => if (this *<= r) -1 else +1
case Pair(Pow(l,_), Var(_) ) => if (l *< that) -1 else +1
case Pair(Pow(l,_), Pow(r,_)) => l *<? r
}
def * (that: Expr): Expr = if (this *<= that) Pair(this,that) match {
case Pair(Lit(0) , _ ) => this
case Pair(Lit(1) , _ ) => that
case Pair(Mul(ll,lr), r ) => ll * (lr * r)
case Pair(Add(ll,lr), r ) => ll * r + lr * r
case Pair(Lit(l) , Lit(r) ) => Lit(l * r)
case Pair(Var(_) , Var(_) ) if (this equ that) => Pow(this,2)
case Pair(Var(_) , Pow(r,n) ) if (this equ r) => Pow(this,n + 1)
case Pair(Pow(ll,lr), Pow(rl,rr)) if (ll equ rl) => Pow(ll,lr + rr)
case Pair(l , Mul(rl,rr)) if (rl *<= l) => (rl * l) * rr
case Pair(_ , _ ) => Mul(this,that)
} else that * this;
def ^ (that: Int): Expr = (this,that) match {
case Pair(_ ,1) => this
case Pair(Lit(i) ,n) => Lit(power(i,n))
case Pair(Var(_) ,n) => Pow(this,n)
case Pair(Add(_,_),n) => this * (this ^ (n - 1))
case Pair(Mul(l,r),n) => (l ^ n) * (r ^ n)
case Pair(Pow(e,m),n) => Pow(e,m + n)
}
def derive(v: Var): Expr = this match {
case Lit(_) => Lit(0)
case Var(name) => if (name == v.name) Lit(1) else Lit(0)
case Add(e1, e2) => (e1 derive v) + (e2 derive v)
case Mul(e1, e2) => e1 * (e2 derive v) + e2 * (e1 derive v)
case Pow(e1, i2) => Lit(i2) * (e1 derive v) * (e1 ^ (i2 - 1))
}
def evaluate(vars: List[(String,Int)]): Int = this match {
case Lit(cst) => cst
case Var (name) => lookup(vars, name)
case Add (l, r) => l.evaluate(vars) + r.evaluate(vars)
case Mul (l, r) => l.evaluate(vars) * r.evaluate(vars)
case Pow(l, r) => power(l.evaluate(vars), r)
}
def equ(that: Expr): Boolean = Pair(this,that) match {
case Pair(Lit(l) ,Lit(r)) => l == r
case Pair(Var(l) ,Var(r)) => l == r
case Pair(Add(ll,lr),Add(rl,rr)) => (ll equ rl) && (lr equ rr)
case Pair(Mul(ll,lr),Mul(rl,rr)) => (ll equ rl) && (lr equ rr)
case Pair(Pow(ll,lr),Pow(rl,rr)) => (ll equ rl) && (lr == rr)
case _ => false
}
}
case class Lit(x: Int) extends Expr {
override def toString = x.toString
}
case class Var(name: String) extends Expr {
override def toString = name;
}
case class Add(e1: Expr, e2: Expr) extends Expr {
override def toString = e1.toString + " + " + e2.toString; // !!! .toString
}
case class Mul(e1: Expr, e2: Expr) extends Expr {
override def toString = {
def factorToString(e: Expr) = e match {
case Add(_, _) => "(" + e.toString + ")"
case _ => e.toString
}
factorToString(e1) + " * " + factorToString(e2);
}
}
case class Pow(e1: Expr, i2: Int) extends Expr {
override def toString = {
def factorToString(e: Expr) = e match {
case Add(_, _) => "(" + e.toString + ")"
case Mul(_, _) => "(" + e.toString + ")"
case _ => e.toString
}
factorToString(e1) + "^" + i2;
}
}
def test = {
val _1 = Lit(1);
val _2 = Lit(2);
val _3 = Lit(3);
val _4 = Lit(4);
val _5 = Lit(5);
val x = Var("x");
val ta = (_1 + (_2 + x));
val tb = (_1 + (x + _2));
val tc = ((_1 + x) + _2);
val td = ((x + _1) + _2);
val te = ((x + _1) + (x + _2));
val tf = ((_1 + x) + (_2 + x));
val tg = x + x + (x * _2) + x + x;
val th = x * x * (x ^ 2) * x * x;
Console.println("ta(x) = " + ta);
Console.println("tb(x) = " + tb);
Console.println("tc(x) = " + tc);
Console.println("td(x) = " + td);
Console.println("te(x) = " + te);
Console.println("tf(x) = " + tf);
Console.println("tg(x) = " + tg);
Console.println("th(x) = " + th);
Console.println;
val f4 = (x+ _3)*(_2+x)*x*(x+ _1) + (x+ _5)*(x*(x+ _2)+x+ _1) + (x^2) + x;
val f3 = f4.derive(x);
val f2 = f3.derive(x);
val f1 = f2.derive(x);
val f0 = f1.derive(x);
Console.println("f4(x) = " + f4);
Console.println("f3(x) = " + f3);
Console.println("f2(x) = " + f2);
Console.println("f1(x) = " + f1);
Console.println("f0(x) = " + f0);
Console.println;
def check(n: String, f: Expr, x: Int, e: Int) {
val a: Int = f.evaluate(List(Pair("x",x)));
val s: String = if (a == e) "ok" else "KO(" + e + ")";
Console.println(n + "(" + x + ") = " + a + " " + s);
}
check("f4", f4, 0, 5);
check("f4", f4, 1, 56);
check("f4", f4, 2, 203);
check("f4", f4, 3, 524);
check("f4", f4, 4, 1121);
Console.println;
check("f3", f3, 0, 23);
check("f3", f3, 1, 88);
check("f3", f3, 2, 219);
check("f3", f3, 3, 440);
Console.println;
check("f2", f2, 0, 40);
check("f2", f2, 1, 94);
check("f2", f2, 2, 172);
Console.println;
check("f1", f1, 0, 42);
check("f1", f1, 1, 66);
Console.println;
check("f0", f0, 0, 24);
Console.println;
}
}
//############################################################################
object Test {
def main(args: Array[String]) {
M0.test;
M1.test;
M2.test;
M3.test;
M4.test;
M5.test;
// !!! M6.test;
M7.test;
M8.test;
M9.test;
MA.test;
MB.test;
()
}
}
//############################################################################
|