semantic-math / math-rules

Manipulate math-ast ASTs based on algebraic rules
MIT License
4 stars 1 forks source link

Negative exponents and Fractional exponents #44

Closed aliang8 closed 7 years ago

aliang8 commented 7 years ago

Do we want fractions to be matched by a single identifier (#b) or should we match it as division (#b / #c)?

kevinbarabash commented 7 years ago

Do we want fractions to be matched by a single identifier (#b) or should we match it as division (#b / #c)?

If you want to manipulate the fraction inside a rewrite pattern then you'll have to use #b / #c.

kevinbarabash commented 7 years ago

Looks good, but there merge conflicts you'll have to resolve.

aliang8 commented 7 years ago

Fixed.

kevinbarabash commented 7 years ago

Thanks.