Replies: 1 comment 1 reply
-
Thanks! The |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I now found this lib and I think it really cool, so thanks for the project.
My doubt is just: how can I step on the simplification?
For exemple:
take a algebraic expression like: (a + 2a) /(a + 2a)*4 + 8 / 2
What I want to is:
1-use the simplify but with receive some notification that the (a +2a) was divided, like a event or even something likes. Is possible? How?
2-or, instead of 1 above, step each call to simplify soomething like this:
input = (a + 2a) /(a + 2a)*4 + 8 / 2
call 1 = 1 / 4 + 8 / 2
call 2 = 1 / 4 + 4
call 3 = 17 / 4
Each call happens only when I run the function, and so, I can register the steps, something like put some "explain" about it.
Some ideia on that?
Beta Was this translation helpful? Give feedback.
All reactions