All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
TrafficVehicleRandomHelpers.h
1 // Copyright (c) 2014 eeGeo. All rights reserved.
2 
3 #pragma once
4 
5 #include "Helpers.h"
6 #include "TrafficSimulationConfiguration.h"
7 
8 namespace Eegeo
9 {
10  namespace Traffic
11  {
12  namespace Config
13  {
14  void PopulateFitnessValuesForVehicles(
15  const std::vector <Eegeo::Traffic::Config::TrafficSimulationVehicleConfiguration>& vehicleConfigs,
16  std::vector<float>& out_fitnessValues);
17 
18  Eegeo::Helpers::RouletteWheelSelector* CreateRouletteWheelSelectorForVehicles(
19  const std::vector <Eegeo::Traffic::Config::TrafficSimulationVehicleConfiguration>& vehicleConfigs);
20  }
21  }
22 }