| 72 | } |
| 73 | |
| 74 | void NodeBasedGraphFactory::Compress(ScriptingEnvironment &scripting_environment, |
| 75 | std::vector<TurnRestriction> &turn_restrictions, |
| 76 | std::vector<UnresolvedManeuverOverride> &maneuver_overrides) |
| 77 | { |
| 78 | GraphCompressor graph_compressor; |
| 79 | graph_compressor.Compress(scripting_environment, |
| 80 | turn_restrictions, |
| 81 | maneuver_overrides, |
| 82 | compressed_output_graph, |
| 83 | annotation_data, |
| 84 | compressed_edge_container); |
| 85 | } |
| 86 | |
| 87 | void NodeBasedGraphFactory::CompressGeometry() |
| 88 | { |
nothing calls this directly
no outgoing calls
no test coverage detected