Cover image

The Solver Isn’t the Strategy: FrontierOR’s Reality Check for AI Optimisation Agents

Scheduling a factory, routing a fleet, pricing airline seats, allocating scarce capacity: these are not “write me a Python script” problems with nicer stationery. In real operations research, the useful answer is not merely a correct mathematical model. It is a method that stays feasible, keeps solution quality high, and finishes before the business context has expired. ...

June 14, 2026 · 15 min · Zelina
Cover image

Evolve or Die Trying: When LLMs Stop Writing Code and Start Designing Algorithms

A developer asks an LLM to “write a better algorithm.” The LLM obliges. It writes code. The code runs, perhaps after a few rounds of apologetic debugging. The result is slightly better than the baseline, or at least sufficiently mysterious to be called “novel.” Everyone nods politely. Another benchmark table is born. ...

April 15, 2026 · 18 min · Zelina
Cover image

When Memory Thinks: Shrinking GRAVE Without Losing Its Mind

Memory is usually treated like office rent: annoying, expensive, but somehow always assumed to be available until the bill arrives. In search-based AI, that assumption is everywhere. Monte-Carlo Tree Search (MCTS) grows a tree of possible futures, samples outcomes, and gradually spends more attention on branches that look promising. Elegant. Effective. Also rather fond of storage. ...

February 27, 2026 · 14 min · Zelina
Cover image

When AI Packs Too Much Hype: Reassessing LLM 'Discoveries' in Bin Packing

A warehouse manager, a cloud scheduler, and a container-ship planner all know the same unpleasant truth: fitting things into limited capacity is where tidy strategy goes to die. That is why bin packing remains such a useful test case. The problem is easy to explain and difficult to solve optimally. Items arrive. Bins have fixed capacity. The objective is to use as few bins as possible. In the online version, the system must decide where to place each item as it arrives, without seeing the future. This is not just a toy puzzle. It resembles production scheduling, memory allocation, server placement, freight consolidation, and every other operational setting where tomorrow’s workload has the bad manners not to disclose itself in advance. ...

November 5, 2025 · 15 min · Zelina