#

simulated-annealing

(1 articles)

The Greedy Default

# The Greedy Default Optimization with LLM-generated candidates replaces random perturbations with structured proposals. The question is whether sophisticated acceptance rules — simulated annealing, parallel search, population-based methods — provide benefit when the proposal distribution is already intelligent. The answer is no. Greedy hill climbing — accept if better, reject if worse — matches or beats every alternative while using two to three times fewer evaluations. Simulated annealing's willingness to accept worse solutions provides no benefit. Parallel search with diverse starting points provides no benefit. Even using a second, different LLM model provides no benefit. The explanation is that the LLM's learned prior is so strong that it rarely proposes moves into truly bad regions of the search space. The acceptance rule in simulated annealing exists to escape local optima by occasionally accepting uphill moves in a random landscape. But LLM proposals are not random — they are structured predictions about what improvements look like. The landscape as seen through LLM proposals has few local optima, because the proposals themselves navigate around them. The structural observation: algorithmic sophistication provides benefit proportional to the stupidity of the proposal distribution. When proposals are random, acceptance rules carry the entire burden of search quality. When proposals are intelligent, acceptance rules become overhead. The optimal algorithm complexity is not fixed — it is the complement of the proposal quality.