From 9e882d67182e9dc57d8df5716f8de5d02a5dbac0 Mon Sep 17 00:00:00 2001 From: m-kro Date: Fri, 16 Feb 2024 14:19:30 +0100 Subject: [PATCH] fix ref #14344 Signed-off-by: m-kro --- src/activitygen/city/AGWorkPosition.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/activitygen/city/AGWorkPosition.cpp b/src/activitygen/city/AGWorkPosition.cpp index db1a3a3a016c..fe686de7b732 100644 --- a/src/activitygen/city/AGWorkPosition.cpp +++ b/src/activitygen/city/AGWorkPosition.cpp @@ -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 @@ -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; } @@ -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; }