Skip to content

JeffreyOuO/IIRF-EVRP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

IIRF-EVRP Data

This repository contains experimental results for the paper:

"Solving Electric Vehicle Routing by Iterative Instance Refinement Framework"

The repository provides processed solution outputs and statistics for EVRP benchmark instances.


How to Read the Results

Each instance has a JSON file containing multiple independent runs and aggregated statistics.

Example:

solutions/E-X/E-n29-k4-s7/processed.json

JSON Format

Each file follows this structure:

{
  "runs": [...],
  "stats": {...},
  "global_best_*": ...
}

Runs

runs contains results from multiple independent executions (typically 20 runs):

{
  "run": 1,
  "best_true_total": 378.44,
  "inserted_routes": [...],
  "base_routes": [...]
}
  • best_true_total: objective value of the best EV-feasible solution in this run
  • inserted_routes: final EV-feasible routes (with charging stations inserted)
  • base_routes: original routes before energy feasibility adjustments

Global Best

  • global_best_true_total: best solution across all runs
  • global_best_inserted_routes: corresponding EV-feasible routes

Statistics

"stats": {
  "n_runs": 20,
  "min": 378.44,
  "mean": 378.44,
  "std": 0.0
}
  • min: best objective value across runs
  • mean: average performance
  • std: stability of the algorithm

About

Experimental results and datasets for IIRF on EVRP benchmarks.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors