tpbarron / vehicle_optimization

Vehicle simulator to test algorithms for traffic optimization.
1 stars 0 forks source link

Create global io and use same io service for all vehicles #61

Closed tpbarron closed 9 years ago

tpbarron commented 9 years ago

Currently only one vehicle can run at a time. I think this is because each manager has its own boost io_service strand. I like the structure of each manager having a single strand. So need each vehicle to run asynchronously.

tpbarron commented 9 years ago

Each vehicle cannot have it's own strand because they interfere with each other.