Skip to content

Commit a6b5430

Browse files
authored
Change model run defaults (#483)
* Increase the maximum of car assignment iterations * Increase default iteration count
1 parent fd0efb1 commit a6b5430

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Scripts/dev-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"FIRST_MATRIX_ID": 100,
1010
"BASELINE_DATA_PATH": "C:\\XXX\\Lahtodata",
1111
"FORECAST_DATA_PATH": "C:\\XXX\\Ennusteskenaarioiden_syottotiedot\\2017",
12-
"ITERATION_COUNT": 10,
12+
"ITERATION_COUNT": 15,
1313
"MAX_GAP": 1.0,
1414
"REL_GAP": 0.01,
1515
"OPTIONAL_FLAGS": []

Scripts/parameters/assignment.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,14 +241,14 @@
241241
}
242242
# Stopping criteria for last traffic assignment
243243
stopping_criteria_fine = {
244-
"max_iterations": 200,
244+
"max_iterations": 400,
245245
"relative_gap": 0.00001,
246246
"best_relative_gap": 0.001,
247247
"normalized_gap": 0.0005,
248248
}
249249
# Stopping criteria for traffic assignment in loop
250250
stopping_criteria_coarse = {
251-
"max_iterations": 100,
251+
"max_iterations": 200,
252252
"relative_gap": 0.0001,
253253
"best_relative_gap": 0.01,
254254
"normalized_gap": 0.005,

0 commit comments

Comments
 (0)