Cover image

Don’t Miss the Bus: AlphaTransit and the Value of Learned Lookahead

TL;DR for operators Bus route planning is a familiar kind of organisational pain: every local decision looks defensible until it interacts with the rest of the network. Add one promising segment, and you may improve coverage. Or you may create redundant overlap, force ugly transfers, consume fleet capacity, and make the whole system worse. Charming. ...

June 19, 2026 · 16 min · Zelina
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

Queue Who’s Optimizing: Why LLM Serving Needs Math, Not More Vibes

Opening — Why this matters now The first wave of enterprise AI adoption was obsessed with model choice. Which model is smarter? Which model writes better? Which model can reason, code, browse, call tools, summarize contracts, and politely pretend it enjoys quarterly planning? That was the easy part. The less glamorous question is now becoming more expensive: how do we serve all these model calls reliably, cheaply, and at scale? ...

May 6, 2026 · 18 min · Zelina
Cover image

From Words to Workflows: Why AI Still Struggles to Think Like an Operations Research Analyst

A warehouse manager does not ask for “a constraint optimization problem.” She asks whether tomorrow’s orders can be shipped without overtime. A university administrator does not request “a mixed-integer formulation.” He asks whether lectures can be scheduled without room conflicts. A retail planner does not want “a MiniZinc model.” She wants to know which stores should receive scarce inventory before the promotion starts. ...

April 15, 2026 · 15 min · Zelina
Cover image

Routing Without Running Out: How Bilevel Optimization Rewires EV Logistics

Routes look clean on a dashboard. A line leaves the depot, touches a sequence of customers, maybe bends toward a charging station, and returns home. The illusion is that route planning is still mostly about drawing the shortest useful line. Electric fleets ruin that illusion rather quickly. A diesel truck can treat refueling as an annoying but usually minor detail. An electric vehicle cannot. Battery capacity turns distance into feasibility. Charging stations turn geography into detours. A route that looks efficient before charging may become expensive after charging; a route that looks wasteful may avoid a much uglier charging pattern. This is why the Electric Capacitated Vehicle Routing Problem, or E-CVRP, is not merely the old vehicle-routing problem wearing a green jacket. It is a coupled routing-and-energy problem, and coupling is where algorithms go to lose their innocence. ...

April 15, 2026 · 15 min · Zelina
Cover image

One Point to Rule Them All: Why AI Optimization Is Quietly Abandoning the Pareto Frontier

Decision teams rarely ask for a beautiful frontier. They ask for a choice. A product team needs one configuration to ship. A materials lab needs one candidate to synthesize next. A vehicle design team needs one design worth sending through another expensive simulation. A trading infrastructure team needs one setting that balances latency, risk, and cost. Nobody walks into the Monday meeting and says, with a straight face, “Please deploy the entire trade-off surface.” At least not twice. ...

April 13, 2026 · 18 min · Zelina
Cover image

CUDA Your Way Out: When Metaheuristics Meet GPUs (and a Hint of AI)

Routes are easy to describe and annoying to optimize. A manager says, “Send these vehicles to these customers, respect capacity, keep priority clients early in the route, and do not let transport cost grow linearly because the real world, regrettably, has opinions.” The sentence is simple. The optimization problem is not. One path leads to a mixed-integer model that looks respectable until the solver spends the budget proving very little. Another path leads to a specialized routing solver that is fast, polished, and suddenly offended by the custom rule you actually need. A third path leads to hand-written heuristics that work beautifully until the person who wrote them leaves. ...

March 20, 2026 · 18 min · Zelina
Cover image

From Durations to Dynamics: Translating Temporal Planning into PDDL+

Schedules break in the small gaps. A delivery truck leaves at the right time, but the loading dock was not open yet. A watering pump arrives near the plant, but the tap is not being opened by the second worker at the same moment. A rescue boat reaches the correct coordinate, but after the deadline. In normal business language, these are “coordination issues.” In automated planning language, they are temporal constraints, numeric resources, durative actions, invariants, and interference rules. ...

March 14, 2026 · 18 min · Zelina
Cover image

Pruning the Planner: When LLMs Tame the Grounding Explosion

Planning looks innocent until the planner starts listing every possible thing that could happen. Move this object here. Move that object there. Load this package into that vehicle. Fly this aircraft between those cities. Refuel it at this level. Then do the same for every other object, location, vehicle, person, and intermediate state the model permits. Very quickly, the planner is not solving the business problem. It is drowning in its own imagination. ...

February 26, 2026 · 18 min · Zelina
Cover image

No More Bit-Length Anxiety: Policy Iteration Goes Strongly Polynomial

Risk has a habit of entering business systems through small numbers. A transition probability is estimated from limited data. A demand forecast has a confidence band. A robot’s next state is not exactly known. A credit, logistics, or inventory model says, “Here is the most likely transition matrix,” and then reality replies, with admirable lack of manners, “Cute.” ...

February 3, 2026 · 16 min · Zelina