# `ExVrp.Benchmark`
[🔗](https://github.com/sephianl/ex_vrp/blob/v0.4.2/dev/benchmark.ex#L1)

Benchmark suite for ex_vrp solver.

Runs benchmarks on VRPLIB instances and compares solution quality
against known best solutions.

# `available_instances`

Returns list of all available benchmark instance names.

# `run`

Runs benchmarks on the specified instances.

## Options

- `:iterations` - Number of solver iterations per benchmark run (default: 100)
- `:save` - Path to save JSON results (optional)

## Examples

    ExVrp.Benchmark.run(:all)
    ExVrp.Benchmark.run([:ok_small, :rc208], iterations: 50)

---

*Consult [api-reference.md](api-reference.md) for complete listing*
