marking/drumb_test3.scala
author Christian Urban <urbanc@in.tum.de>
Thu, 15 Nov 2018 14:23:55 +0000
changeset 203 eb188f9ac038
parent 169 b37052895281
permissions -rw-r--r--
updated
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
82
28c8e17ab83a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     1
28c8e17ab83a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     2
val test_data = List(List(Some(71.539941), None), List(Some(76.974614), None), 
28c8e17ab83a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     3
                     List(Some(65.226685), Some(6.35)), List(Some(78.354649), Some(12.241)), 
28c8e17ab83a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     4
                     List(Some(85.517645), Some(38.188)))
28c8e17ab83a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     5
28c8e17ab83a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     6
val test_deltas = List(List(Some(0.07596697626574789), None), 
28c8e17ab83a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     7
                       List(Some(-0.152620823795232), None), 
28c8e17ab83a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     8
                       List(Some(0.20126676681483952), Some(0.9277165354330709)), 
28c8e17ab83a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     9
                       List(Some(0.09141762603007778), Some(2.119679764725104)))
28c8e17ab83a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    10
169
b37052895281 updated
Christian Urban <urbanc@in.tum.de>
parents: 82
diff changeset
    11
assert((yearly_yield(test_deltas, 100, 0) - 107).abs <= 2)
b37052895281 updated
Christian Urban <urbanc@in.tum.de>
parents: 82
diff changeset
    12
assert((yearly_yield(test_deltas, 100, 1) - 85).abs <= 2)
b37052895281 updated
Christian Urban <urbanc@in.tum.de>
parents: 82
diff changeset
    13
assert((yearly_yield(test_deltas, 100, 2) - 156).abs <= 2)
b37052895281 updated
Christian Urban <urbanc@in.tum.de>
parents: 82
diff changeset
    14
assert((yearly_yield(test_deltas, 100, 3) - 210).abs <= 2)
b37052895281 updated
Christian Urban <urbanc@in.tum.de>
parents: 82
diff changeset
    15
assert((investment(List("IBM", "BIDU"), 2004 to 2008, 100) - 298).abs <= 10)
82
28c8e17ab83a updated
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    16