From 15d3fcc149d4e769294f6ecee8bbb69ac8c5ba0e Mon Sep 17 00:00:00 2001 From: Alexander Borsuk Date: Fri, 7 Oct 2022 23:20:44 +0200 Subject: [PATCH] Alexey's hotfix for validator --- subway_structure.py | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/subway_structure.py b/subway_structure.py index 07af3a4..c42de3d 100644 --- a/subway_structure.py +++ b/subway_structure.py @@ -1,5 +1,4 @@ import csv -import itertools import logging import math import urllib.parse @@ -1379,7 +1378,7 @@ class City: self.elements = {} # Dict el_id → el self.stations = defaultdict(list) # Dict el_id → list of StopAreas - self.routes = {} # Dict route_master_ref → RouteMaster + self.routes = {} # Dict route_ref → route self.masters = {} # Dict el_id of route → route_master self.stop_areas = defaultdict( list @@ -1716,18 +1715,6 @@ class City: if t not in have_return: self.notice('Route does not have a return direction', rel) - def validate_route_refs(self): - master_refs = sorted(m.ref for m in self.routes.values()) - for ref, group in itertools.groupby(master_refs): - if len(list(group)) > 1: - # This can occur if some routes with some ref belong to - # a route_master, but other with the same ref doesn't. - self.error("Route masters {} have the same ref".format( - ', '.join( - m.id for m in self.routes.values() if m.ref == ref - ) - )) - def validate_lines(self): self.found_light_lines = len( [x for x in self.routes.values() if x.mode != 'subway'] @@ -1794,8 +1781,6 @@ class City: self.count_unused_entrances() self.found_interchanges = len(self.transfers) - self.validate_route_refs() - if self.overground: self.validate_overground_lines() else: