Skip to content

Commit 10e3100

Browse files
committed
Make 120 default cycle duration
1 parent 94d15b8 commit 10e3100

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dsm/sources/RoadNetwork.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ namespace dsm {
471471
std::getline(iss, highway, ';');
472472
if (highway.find("traffic_signals") != std::string::npos) {
473473
addNode<TrafficLight>(
474-
nodeIndex, 60, std::make_pair(std::stod(lat), std::stod(lon)));
474+
nodeIndex, 120, std::make_pair(std::stod(lat), std::stod(lon)));
475475
} else if (highway.find("roundabout") != std::string::npos) {
476476
addNode<Roundabout>(nodeIndex, std::make_pair(std::stod(lat), std::stod(lon)));
477477
} else {

0 commit comments

Comments
 (0)