-
Notifications
You must be signed in to change notification settings - Fork 13
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
Rename tdvp Functions #59
Conversation
…pdate_sweep, tdvp_step to update_step)
Thanks! A next step would be to remove the |
I'll look out for that issue. There's a question of how much we want to do in this PR. Id be happy to change the t argument. Another issue is whether we want to keep all 3 (?) versions of the |
Yes, I wasn't suggesting doing that in this PR, I'm tracking future changes here: #60. |
Looks like the function: tdvp(solver, t, A, x; kwargs...) is missing. |
I formatted the package in #61, guess it caused some merge conflicts but hopefully they are easy to resolve. |
I decided to just remove those failing tests, which correspond to the tdvp function allowing multiple permutations of its arguments. Thinking about it more, I think we should just have a single interface with one argument ordering. |
That sounds good. So is the interface now: tdvp(A, t, x; kwargs...) # Uses the default solver, which will be `KrylovKit.exponentiate`.
tdvp(solver, A, t, x; kwargs...) # Specify the solver where in both cases it computes |
Yes, correct that's the interface now following this PR. I did happen to leave the other "permuted" overloads of |
Yeah, let's remove those as well. |
(Seeing some test errors about |
Those will be fixed by #65. |
Great, I thought so, thanks for clarifying. |
Ready to merge? Looks like the tests were fixed by ITensor/NamedGraphs.jl#31. |
Yea this one’s ready to merge, thanks. Then I’ll keep working my way
through the items in the issue you opened.
On Mon, Feb 13, 2023 at 12:49 PM Matt Fishman ***@***.***> wrote:
Ready to merge? Looks like the tests were fixed by
ITensor/NamedGraphs.jl#31
<ITensor/NamedGraphs.jl#31>.
—
Reply to this email directly, view it on GitHub
<#59 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAHJ3RKG2VYSXWSYOSUEASDWXJXZFANCNFSM6AAAAAAUOMYXJQ>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
--
-=Miles Stoudenmire=-
***@***.***
***@***.***
http://itensor.org/miles/
|
Main changes
List of commits