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 4c29aeb commit 7086676Copy full SHA for 7086676
test/nf.jl
@@ -2,7 +2,7 @@ using SymbolicUtils, Test
2
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), mpoly=true) == 0
+ @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?
8
@test simplify(polynormalize(sin((a+b)^2)^2 + cos((a+b)^2)^2)) == 1
0 commit comments