|
|
@ -34,6 +34,11 @@ parser.add_argument( |
|
|
|
type=str, |
|
|
|
default="city_distances_full.csv", |
|
|
|
) |
|
|
|
parser.add_argument( |
|
|
|
"--shuffle", |
|
|
|
action="store_true", |
|
|
|
help="Option to shuffle combinations list before iterating over it", |
|
|
|
) |
|
|
|
args = parser.parse_args() |
|
|
|
|
|
|
|
|
|
|
@ -116,7 +121,8 @@ def main(): |
|
|
|
cities = list(us_cities.values()) |
|
|
|
print(f"Num cities: {len(cities)}") |
|
|
|
city_combinations = list(itertools.combinations(cities, 2)) |
|
|
|
# np.random.shuffle(city_combinations) # will this help or hurt caching? 1.03it/s |
|
|
|
if args.shuffle: |
|
|
|
np.random.shuffle(city_combinations) |
|
|
|
chunk_size = args.chunk_size |
|
|
|
num_chunks = len(city_combinations) // chunk_size + 1 |
|
|
|
output_file = args.output_file |
|
|
|