Remove unused number of threads option again

This commit is contained in:
Patrick Niklaus
2017-10-16 13:17:09 +00:00
committed by Michael Krasnyk
parent dc81c7b926
commit 456b198702
5 changed files with 8 additions and 21 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ bool EngineConfig::IsValid() const
unlimited_or_more_than(max_locations_trip, 2) &&
unlimited_or_more_than(max_locations_viaroute, 2) &&
unlimited_or_more_than(max_results_nearest, 0) &&
max_alternatives >= 0 && use_threads_number >= 1;
max_alternatives >= 0;
return ((use_shared_memory && all_path_are_empty) || storage_config.IsValid()) && limits_valid;
}