File tree Expand file tree Collapse file tree 4 files changed +7
-24
lines changed Expand file tree Collapse file tree 4 files changed +7
-24
lines changed Original file line number Diff line number Diff line change 52
52
53
53
python3 -m venv .venv
54
54
source .venv/Scripts/Activate
55
- python3 -m pip install conan==2.7.1
55
+ python3 -m pip install conan==2.15.0
56
56
conan profile detect --force
57
57
58
58
cmake -DCMAKE_BUILD_TYPE=Release -DENABLE_CONAN=ON -DENABLE_NODE_BINDINGS=ON ..
@@ -493,7 +493,7 @@ jobs:
493
493
if [[ "${ENABLE_CONAN}" == "ON" ]]; then
494
494
python3 -m venv .venv
495
495
source .venv/bin/activate
496
- python3 -m pip install conan==2.7.1
496
+ python3 -m pip install conan==2.15.0
497
497
conan profile detect --force
498
498
fi
499
499
Original file line number Diff line number Diff line change 1
1
# Unreleased
2
+ - Changes from 6.0.0 RC1
3
+ - Features
4
+ - REMOVED: Remove deprecated contractor config settings [ #7149 ] ( https://github.com/Project-OSRM/osrm-backend/pull/7149 )
5
+ - Build:
6
+ - CHANGED: Updated Conan to v2.15.0 [ #7148 ] ( https://github.com/Project-OSRM/osrm-backend/pull/7148 )
2
7
3
8
# 6.0.0 RC1
4
9
- Changes from 5.27.1
Original file line number Diff line number Diff line change @@ -55,17 +55,7 @@ struct ContractorConfig final : storage::IOConfig
55
55
56
56
updater::UpdaterConfig updater_config;
57
57
58
- // DEPRECATED to be removed in v6.0
59
- bool use_cached_priority = false ;
60
-
61
58
unsigned requested_num_threads = 0 ;
62
-
63
- // DEPRECATED to be removed in v6.0
64
- // A percentage of vertices that will be contracted for the hierarchy.
65
- // Offers a trade-off between preprocessing and query time.
66
- // The remaining vertices form the core of the hierarchy
67
- // (e.g. 0.8 contracts 80 percent of the hierarchy, leaving a core of 20%)
68
- double core_factor = 1.0 ;
69
59
};
70
60
} // namespace osrm::contractor
71
61
Original file line number Diff line number Diff line change @@ -40,18 +40,6 @@ int Contractor::Run()
40
40
tbb::global_control gc (tbb::global_control::max_allowed_parallelism,
41
41
config.requested_num_threads );
42
42
43
- if (config.core_factor != 1.0 )
44
- {
45
- util::Log (logWARNING)
46
- << " Using core factor is deprecated and will be ignored. Falling back to CH." ;
47
- config.core_factor = 1.0 ;
48
- }
49
-
50
- if (config.use_cached_priority )
51
- {
52
- util::Log (logWARNING) << " Using cached priorities is deprecated and they will be ignored." ;
53
- }
54
-
55
43
TIMER_START (preparing);
56
44
57
45
util::Log () << " Reading node weights." ;
You can’t perform that action at this time.
0 commit comments