You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
No plans to slot that functionality into the infix library, but it looks interesting and I can see how you would use our $= to convert an infix expression into prefix, much like the definition in the book:
(defuninfix->prefix (infix-exp)
"Convert fully parenthesized infix-exp to a prefix expression";; Don't use this version for non-fully parenthesized exps!
However, one thing this library ought to do is to provide a mechanism to convert a prefix expression into infix. You would need that to implement the simplifier, I guess.
Infix looks sophisticated yet simple. Are there plans or suggestions how to implement basic derivation/integration rules similar to those described in a text-book:
https://github.com/norvig/paip-lisp/blob/master/docs/chapter8.md
Can you give a hint where to start?
The text was updated successfully, but these errors were encountered: