Skip to content

Commit

Permalink
fix ref #14344
Browse files Browse the repository at this point in the history
Signed-off-by: m-kro <m.barthauer@t-online.de>
  • Loading branch information
m-kro committed Feb 16, 2024
1 parent 3976db9 commit 9e882d6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/activitygen/city/AGWorkPosition.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
/// @author Walter Bamberger
/// @author Daniel Krajzewicz
/// @author Michael Behrisch
/// @author Mirko Barthauer
/// @date July 2010
///
// Location and schedules of a work position: linked with one adult
Expand Down Expand Up @@ -81,7 +82,7 @@ AGWorkPosition::generateOpeningTime(const AGDataAndStatistics& ds) {
}
}
std::cout << "-- WARNING: work time distribution not complete (Sum(proportions) != 1): AUTODEFINED at 9.00am --" << std::endl;
return 900;
return 32400;
}


Expand All @@ -97,7 +98,7 @@ AGWorkPosition::generateClosingTime(const AGDataAndStatistics& ds) {
}
}
std::cout << "-- WARNING: work time distribution not complete (Sum(proportions) != 1): AUTODEFINED at 5.00pm --" << std::endl;
return 1700;
return 61200;
}


Expand Down

0 comments on commit 9e882d6

Please sign in to comment.