Skip to content

Commit

Permalink
Remove debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
shinaoka committed May 22, 2024
1 parent 3169484 commit a620540
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/divideandconquer/adaptivepartitioning.jl
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,6 @@ end
function fullindices(
po::PatchOrdering, prefix::Vector{Vector{Int}}, restindices::Vector{Vector{Int}}
)
if !(length(prefix) + length(restindices) == length(po.ordering))
@show po
@show prefix
@show length(restindices)
@show restindices
end
length(prefix) + length(restindices) == length(po.ordering) ||
error("Error in fullindices: Inconsistent length")
res = [Int[] for _ in 1:(length(prefix) + length(restindices))]
Expand Down

0 comments on commit a620540

Please sign in to comment.