Skip to content

Commit ad874a5

Browse files
committed
Fix line of code in time_evolve
1 parent 3882692 commit ad874a5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/solvers/applyexp.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ function time_evolve(
9898
time_points,
9999
init_state;
100100
process_time=process_real_times,
101-
sweep_printer=(a...; k...)->applyexp_sweep_printer(a...; process_time, k...),
101+
sweep_printer=(a...; k...)->sweep_printer(a...; process_time, k...),
102102
kws...,
103103
)
104104
exponents = [-im*t for t in time_points]

test/solvers/test_tree_applyexp.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ function chain_plus_ancilla(; nchain)
2020
return g
2121
end
2222

23-
@testset "Tree TDVP on chain plus ancilla" begin
23+
@testset "Test Applyexp" begin
2424
outputlevel = 0
2525

2626
N = 10

0 commit comments

Comments
 (0)