-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v0.6 #3
v0.6 #3
Conversation
GreenFunction is now a subtype of AbstractArray. The Base broadcasting machinery appears to have been updated and now proper broadcasting (with custom setindex!es ) simply works off the self
Would it make sense to completely get rid of GreenFunction objects and substitute them for, e.g., That would mean that then a GreenFunction would be a "higher-order" object, that uses these data structures to access correctly the data but then could also have more traits such as the underlying time-grid, quantum number information, etc. |
It's very strange that the solver doesn't achieve the precision levels we want ever for a very simple "integrable" model. Also: why manually running the tests works but through the package manager it throws some weird errors? |
It appears the problem was in the test suite 😄 |
To be able to remove both the dependancy on Given that the solver is essentially a 1-time ODE stepper that each step calculates
This This hopefully would make the solver even more general (notation-wise) but, who knows, possibly even faster due to more in-place operations. |
…ce regression, may abandon this idea
…ght performance improvement on the update of the 2point functions
This reverts commit a5239b2.
There are a couple of key goals for this version:
- [ ] Reformulate the VCABM functions to operate in-place in the Green functions (see branch v0.5 ideas)- [ ] Remove the dependency on RecursiveArrayToolscopy!
)