Commit 43b69bd1 authored by Taddeus Kroes's avatar Taddeus Kroes

Added power of one to implicit rules.

parent 34993e80
...@@ -9,6 +9,7 @@ from .negation import double_negation, negated_factor, negated_nominator, \ ...@@ -9,6 +9,7 @@ from .negation import double_negation, negated_factor, negated_nominator, \
negated_denominator, negated_zero negated_denominator, negated_zero
from .fractions import multiply_with_fraction from .fractions import multiply_with_fraction
from .integrals import factor_out_constant from .integrals import factor_out_constant
from .powers import remove_power_of_one
# Functions to move to the beginning of the possibilities list. Pairs of within # Functions to move to the beginning of the possibilities list. Pairs of within
...@@ -62,4 +63,5 @@ IMPLICIT_RULES = [ ...@@ -62,4 +63,5 @@ IMPLICIT_RULES = [
multiply_zero, multiply_zero,
negated_zero, negated_zero,
remove_zero, remove_zero,
remove_power_of_one,
] ]
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment