We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7086676 commit 6a68db5Copy full SHA for 6a68db5
test/nf.jl
@@ -3,7 +3,6 @@ using SymbolicUtils: polynormalize
3
@testset "polyform" begin
4
@syms a b c d
5
@test polynormalize(a * (b + -1 * c) + -1 * (b * a + -1 * c * a)) == 0
6
- @eqtest polynormalize(sin((a+b)^2)^2) == sin(a^2+b^2+2*a*b)^2
7
- # fixme: can this be made faster?
+ @eqtest simplify(polynormalize(sin((a+b)^2)^2)) == simplify(sin(a^2+2*(b*a)+b^2)^2)
8
@test simplify(polynormalize(sin((a+b)^2)^2 + cos((a+b)^2)^2)) == 1
9
end
0 commit comments