-
Notifications
You must be signed in to change notification settings - Fork 22
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
Excited states solver #437
base: master
Are you sure you want to change the base?
Excited states solver #437
Conversation
54e1aba
to
3c2fbda
Compare
the latest commit introduces a bug, but commit |
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## master #437 +/- ##
==========================================
- Coverage 70.00% 68.67% -1.34%
==========================================
Files 183 185 +2
Lines 15593 15792 +199
==========================================
- Hits 10916 10845 -71
- Misses 4677 4947 +270
☔ View full report in Codecov by Sentry. |
bdd3904
to
dd9273f
Compare
dd9273f
to
837b038
Compare
Hydrogen molecule but not converging
… exit scf properly
Have highjacked LinearResponseSolver. TODO: - add excited ExcitedStatesSolver to template.yml - let response run along with excited states.
This reverts commit 0bf26fe.
Segfaults at function call to clear() on the unperturbed coulomb operator. Specificaly on the hasreal function.
59b6fb1
to
00d1998
Compare
Implementing the Excited states solver. This is a re-make of #395 with better structure and is rebased on the changes introduced in #435, which needs to be merged before this one.
I have Created an additional class called
ExcitedStatesSolver
to solve for the excited states.The functionality of this class is very similar to
LinearResponseSolver
so we might consider adding the excited states solver in theLinearResponseSolver
in the future, or creating an entirely new class to hold different response solvers, or the future,HigherOrderResponseSolver
.TODO:
First step is almost ready as I create this draft PR.