Merge pull request #269 from songmuhan/fix-typo

fix typo in derive of multiplication test
This commit is contained in:
Rhee Jung In
2023-09-27 21:15:01 +09:00
committed by GitHub

View File

@@ -172,7 +172,7 @@ mod test {
// Mult
//
// d/dx (2x^4 * cos(x) * exp(x)) =
// 8x^2 * cos(x) * exp(x) - 2x^4 * sin(x) * exp(x) + 2x^4 * cos(x) * exp(x)
// 8x^3 * cos(x) * exp(x) - 2x^4 * sin(x) * exp(x) + 2x^4 * cos(x) * exp(x)
let f1 = SingletonPolynomial::new_poly(TWO, FOUR);
let f2 = Trignometric::new_cosine(ONE);
let f3 = Exp::new();