breandan / kotlingrad

🧩 Shape-Safe Symbolic Differentiation with Algebraic Data Types
https://breandan.net/public/masters_thesis.pdf#page=49
Apache License 2.0
515 stars 21 forks source link

Typo in test #2

Closed headinthebox closed 5 years ago

headinthebox commented 5 years ago

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")