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 89fc5e8 commit 2a77262Copy full SHA for 2a77262
test/rulesets.jl
@@ -25,7 +25,8 @@ end
25
@eqtest simplify(1 * x * 2) == 2 * x
26
@eqtest simplify(1 + x + 2) == 3 + x
27
@eqtest simplify(b*b) == b^2 # tests merge_repeats
28
- @eqtest simplify((a*b)^c) == a^c * b^c
+ @eqtest simplify((a*b)^2) == a^2 * b^2
29
+ @eqtest simplify((a*b)^c) == (a*b)^c
30
31
@eqtest simplify(1x + 2x) == 3x
32
@eqtest simplify(3x + 2x) == 5x
0 commit comments