File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
components/network/highway Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -25,9 +25,9 @@ osmnx >= 0.12
25
25
pandas > 1.0
26
26
pydantic < 2.0
27
27
pyproj > 2.2.0
28
- pywin32 == 224 ; sys_platform == 'win32'
28
+ pywin32 == 306 ; sys_platform == 'win32'
29
29
pyyaml
30
- pywin32 == 224 ; sys_platform == 'win32'
30
+ pywin32 == 306 ; sys_platform == 'win32'
31
31
rtree
32
32
scipy
33
33
shapely
Original file line number Diff line number Diff line change @@ -332,7 +332,8 @@ def _get_assignment_spec(
332
332
"normalized_gap" : 0.0 ,
333
333
},
334
334
"performance_settings" : {
335
- "number_of_processors" : self .controller .num_processors
335
+ "number_of_processors" : self .controller .num_processors ,
336
+ "network_acceleration" : self .config .network_acceleration ,
336
337
},
337
338
}
338
339
if not path_analysis :
Original file line number Diff line number Diff line change @@ -957,6 +957,7 @@ class HighwayConfig(ConfigItem):
957
957
generic_highway_mode_code : str = Field (min_length = 1 , max_length = 1 )
958
958
relative_gaps : Tuple [HighwayRelativeGapConfig , ...] = Field ()
959
959
max_iterations : int = Field (ge = 0 )
960
+ network_acceleration : bool = Field ()
960
961
area_type_buffer_dist_miles : float = Field (gt = 0 )
961
962
drive_access_output_skim_path : Optional [str ] = Field (default = None )
962
963
output_skim_path : pathlib .Path = Field ()
You can’t perform that action at this time.
0 commit comments