Skip to content

Commit 63b9315

Browse files
delete unused function
1 parent 45e4cb0 commit 63b9315

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

src/ensemble/basic_ensemble_solve.jl

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -262,15 +262,3 @@ function thread_monte(prob,I,alg,procid;kwargs...)
262262
end
263263
batch_data
264264
end
265-
266-
function vector_batch_data_to_arr(batch_data)
267-
_batch_data = Vector{Any}(undef,sum((length(x) for x in batch_data)))
268-
idx = 0
269-
@inbounds for a in batch_data
270-
for x in a
271-
idx += 1
272-
_batch_data[idx] = x
273-
end
274-
end
275-
map(i->_batch_data[i],1:length(_batch_data))
276-
end

0 commit comments

Comments
 (0)