Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions src/embed_permute.jl
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,19 @@ embed(basis_l::CompositeBasis, basis_r::CompositeBasis, index::Integer, op::Abst
embed(basis::CompositeBasis, indices, operators::Vector{T}) where {T<:AbstractOperator} = embed(basis, basis, indices, operators)
embed(basis::CompositeBasis, indices, op::AbstractOperator) = embed(basis, basis, indices, op)

"""
embed(basis::Basis, indices, ops::AbstractOperator)

Special case of the `embed` to handle embedding an operator `ops` into a single
basis.
"""
function embed(basis::Basis, indices, ops::AbstractOperator)
if indices == 1 || indices == (1,) || indices == [1]
return ops
else
throw(ArgumentError("Invalid indices for single basis."))
end
end

"""
embed(basis1[, basis2], indices::Vector, operators::Vector)
Expand Down