Revert "Attempt to fix linking issue on the bot"

The issue was fixed with 48c74bb2e2

This reverts commit ac423a8c8a.
This commit is contained in:
Vitaly Buka 2022-03-08 16:15:21 -08:00
parent e86bd32b71
commit ce29a0429b
1 changed files with 2 additions and 2 deletions

View File

@ -173,7 +173,7 @@ public:
/// A cost of taking an unlikely jump.
static constexpr int64_t AuxCostUnlikely = ((int64_t)1) << 30;
/// Minimum BaseDistance for the jump distance values in island joining.
static constexpr uint64_t MinBaseDistance = 10000ull;
static constexpr uint64_t MinBaseDistance = 10000;
private:
/// Iteratively find an augmentation path/dag in the network and send the
@ -741,7 +741,7 @@ private:
/// parts to a multiple of 1 / BaseDistance.
int64_t jumpDistance(FlowJump *Jump) const {
uint64_t BaseDistance =
std::max(MinCostMaxFlow::MinBaseDistance,
std::max(static_cast<uint64_t>(MinCostMaxFlow::MinBaseDistance),
std::min(Func.Blocks[Func.Entry].Flow,
MinCostMaxFlow::AuxCostUnlikely / NumBlocks()));
if (Jump->IsUnlikely)