Skip to content
Snippets Groups Projects
Commit 491d59c1 authored by Regis Blanc's avatar Regis Blanc
Browse files

fix rational test

parent 48f7ffc1
No related branches found
No related tags found
No related merge requests found
...@@ -5,10 +5,10 @@ object Rationals { ...@@ -5,10 +5,10 @@ object Rationals {
// Represents n/d // Represents n/d
case class Q(n: BigInt, d: BigInt) case class Q(n: BigInt, d: BigInt)
def +(a: Q, b: Q) = { def op(a: Q, b: Q) = {
require(isRational(a) && isRational(b)) require(isRational(a) && isRational(b))
Q(a.n*b.d + b.n*a.d, a.d*b.d) Q(a.n + b.n, a.d)
} ensuring { } ensuring {
isRational(_) isRational(_)
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment