re-tested neuhauser-naz

This commit is contained in:
Gerhard Hoffmann 2024-02-22 09:10:26 +01:00
parent 30768c6931
commit 20e146d3c9

View File

@ -38,9 +38,9 @@ extern "C" char* strptime(const char* s,
#define SCHOENAU_KOENIGSEE (0)
#define NEUHAUSER_KORNEUBURG (0)
#define NEUHAUSER_LINSINGER_MASCHINENBAU (0)
#define NEUHAUSER_NORDISCHES_AUSBILDUNGSZENTRUM (0)
#define NEUHAUSER_NORDISCHES_AUSBILDUNGSZENTRUM (1)
#define NEUHAUSER_BILEXA_GALTUER (0)
#define NEUHAUSER_KIRCHDORF (1)
#define NEUHAUSER_KIRCHDORF (0)
#if NEUHAUSER_KIRCHDORF==1
static bool test_neuhauser_kirchdorf(int step, double cost) {
@ -512,6 +512,9 @@ int main() {
QDateTime s(QDate(2023, 11, 30), QTime());
QDateTime end;
struct price_t price;
#define ADULT 0
#define TEEN 1
#if ADULT==1
for (int offset = 480; offset < 1080; ++offset) {
QDateTime start = s.addSecs(offset * 60);
@ -522,7 +525,9 @@ int main() {
qCritical() << "start=" << start.toString(Qt::ISODate)
<< "end" << end.toString(Qt::ISODate) << "price" << price.netto;
}
#endif
#if TEEN==1
for (int offset = 480; offset < 1080; ++offset) {
QDateTime start = s.addSecs(offset * 60);
CalcState cs = compute_price_for_daily_ticket(&cfg, start, end,
@ -530,6 +535,7 @@ int main() {
qCritical() << "start=" << start.toString(Qt::ISODate)
<< "end" << end.toString(Qt::ISODate) << "price" << price.netto;
}
#endif
}
#endif