ndinsmore

Results 6 issues of ndinsmore

Simplify seems to be struggling with basic polynomial common factor extraction. It in fact seems to favor the expanded form of a factor*polynomial ie `2*(a+b)` "simplifies" to `2a+2b`. ```julia julia>...

The use of user_data in callbacks is of importance because it can allow callback to a class method when using C++/OOP via a non capturing Lambda function, which is great....

Right now ```setindex!``` does not work on `MultiDict` which also means `dict[1]=1` does not work. Is that intentional?

During some profileing I noticed the `isempty` test on children were causing a call to `next` then `iterate` This remedies that buy replacing any call to `isempty(children(node))` with effectively `ischildrenempty(children(node))`...

This PR changes most of the processing of the base string case over to using a DFA State Machine that can run both forward and reverse. This is similar to...

performance
strings

It would be great if you could relink a channel like dev to a new location without having to undefault it then remove it first.

help wanted
good first issue