BayesianOptimization icon indicating copy to clipboard operation
BayesianOptimization copied to clipboard

Fix replace list with deque

Open phi-friday opened this issue 6 months ago • 0 comments

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.

phi-friday avatar Jul 26 '24 11:07 phi-friday