Support temprorary blocked streets.

This commit is contained in:
Vladimir Byko-Ianko 2016-12-19 10:59:29 +03:00
parent c7d36f8050
commit 38f1b4a587
2 changed files with 5 additions and 0 deletions

View file

@ -10,6 +10,10 @@ namespace
{
double CalcTrafficFactor(SpeedGroup speedGroup)
{
double constexpr kImpossibleDrivingFactor = 1e4;
if (speedGroup == SpeedGroup::TempBlock)
return kImpossibleDrivingFactor;
double const percentage =
0.01 * static_cast<double>(kSpeedGroupThresholdPercentage[static_cast<size_t>(speedGroup)]);
CHECK_GREATER(percentage, 0.0, ("Speed group:", speedGroup));

View file

@ -37,6 +37,7 @@ static_assert(static_cast<uint8_t>(SpeedGroup::Count) <= 8, "");
// special groups where V is unknown or not defined.
extern uint32_t const kSpeedGroupThresholdPercentage[static_cast<size_t>(SpeedGroup::Count)];
/// \note This method is used while traffic jam generation.
SpeedGroup GetSpeedGroupByPercentage(double p);
string DebugPrint(SpeedGroup const & group);