Open jwmerrill opened 10 years ago
What do you consider conceptually distinct between PowerSeries and Polynomial?
PowerSeries always truncates to a fixed order.
At the time I opened this ticket, Polynomial.jl also had no docs and very little activity, which made me even more hesitant to depend on it. I've since contributed some docs for Polynomial.jl.
In PowerSeries.jl, I intentionally stuck to the same notation as Polynomial.jl for integration, differentiation, and evaluation:
polyint
,polyder
, andpolyeval
. This notation is in turn borrowed from matlab.I currently don't import those methods from Polynomial because PowerSeries doesn't "depend" on Polynomial any more than Polynomial depends on PowerSeries, and I don't want to make Polynomial a requirement for this library.
This causes problems if you try to import both of them at the same time
What's the right thing to do here?
I'm hoping the answer isn't "depend on Polynomial", because the packages are actually peers, and breaking one shouldn't break the other.