Skip to content

Commit

Permalink
fix limits
Browse files Browse the repository at this point in the history
  • Loading branch information
felixguendling authored Nov 14, 2024
1 parent ac2e15d commit e3e83f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/nigiri/routing/limits.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

namespace nigiri::routing {

static constexpr auto const kMaxTransfers = std::uint8_t{4U};
static constexpr auto const kMaxTravelTime = 1_days;
static constexpr auto const kMaxTransfers = std::uint8_t{15U};
static constexpr auto const kMaxTravelTime = 5_days;
static constexpr auto const kMaxSearchIntervalSize =
date::days{std::numeric_limits<duration_t::rep>::max() / 1440} -
(kMaxTravelTime + 2_days);
Expand Down

0 comments on commit e3e83f7

Please sign in to comment.