Skip to content

Commit 83dd4b4

Browse files
committed
update API
1 parent 2272934 commit 83dd4b4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/PhaseEstimation.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function PEBlock(UG::GeneralMatrixBlock, n_reg::Int, n_b::Int)
2323
end
2424

2525
# Inverse QFT Block.
26-
iqft = concentrate(nbit, EasyBuild.qft_circuit(n_reg)',[1:n_reg...,])
26+
iqft = subroutine(nbit, EasyBuild.qft_circuit(n_reg)',[1:n_reg...,])
2727
chain(hs, control_circuit, iqft)
2828
end
2929

src/TaylorTrunc.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ n : total number of qubits
178178
V : T input matrix
179179
c : starting qubit
180180
"""
181-
v(n::Int,c::Int, T::Int, V::AbstractMatrix) = concentrate(n, matblock(V), (c + 1:T + c...,))
181+
v(n::Int,c::Int, T::Int, V::AbstractMatrix) = subroutine(n, matblock(V), (c + 1:T + c...,))
182182

183183
"""
184184
v(n::Int,c::Int, j::Tuple, T::Int, V::AbstractMatrix) -> ControlBlock{n}
@@ -190,7 +190,7 @@ c : starting qubit
190190
j : control bits tuple
191191
"""
192192
v(n::Int,c::Int, j::Tuple, T::Int, V::AbstractMatrix) = control(n, j,(1 + c:T + c...,)=>matblock(V))
193-
lc(n::Int,c::Int, i::Int, k::Int,l::Int, V::AbstractMatrix) = concentrate(n, matblock(V), (k+c+1+(i-1)*l:k+1+c+i*l-1...,))
193+
lc(n::Int,c::Int, i::Int, k::Int,l::Int, V::AbstractMatrix) = subroutine(n, matblock(V), (k+c+1+(i-1)*l:k+1+c+i*l-1...,))
194194

195195

196196
"""

0 commit comments

Comments
 (0)