1#ifndef MOTORWAY_GENERATOR_H
2#define MOTORWAY_GENERATOR_H
4#include "RoadGenerator.h"
31 double thresholdRatio_;
A templated graph storing nodes of type T and edges of type U.
Definition Graph.h:58
Builds a continuous "motorway" route by:
Definition MotorwayGenerator.h:16
void generate(Graph< Intersection, Road > &graph) override
Append new bidirectional motorways into the graph (no duplicates).
Definition MotorwayGenerator.cpp:90
Abstract base class for generating roads on a Graph<Intersection,Road>.
Definition RoadGenerator.h:11