fix typo in derive of multiplication test

Signed-off-by: Muhan Song <songmuhan@stu.pku.edu.cn>
This commit is contained in:
Muhan Song
2023-09-18 17:26:10 +08:00
parent ec6b346364
commit 1c140c1cce

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();