BayesianOptimization
BayesianOptimization copied to clipboard
Fix replace list with deque
Replace queue
implemented using list
with deque
.
The implementation with list
appears to be due to the use of append()
and #370 .
If append()
is used, deque
is more efficient, and #370 is also solved.