breandan/kotlingrad

Typo in test

Closed this issue · 0 comments

https://github.com/breandan/kotlingrad/blob/master/src/test/kotlin/edu/umontreal/kotlingrad/calculus/TestGradient.kt

val x = Var("x")
val y = Var("x")

I guess that should be

val x = Var("x")
val y = Var("y")