2812481591 [any, it/its]

  • 11 Posts
  • 86 Comments
Joined 3 years ago
cake
Cake day: July 19th, 2021

help-circle







  • If they lost within the margin of Georgia, it would’ve been possible. it felt like the rhetoric leading up to it, including senior military generals basically making as close as possible to an endorsement, that they were keeping the door open if they lost. Trump winning every swing state, the popular vote, and exceeding the margin of left-wing 3rd parties means only the most insane Ukraine supporters are still considering a coup now.





  • Think of the election as a Bus route from source, S, to Target, T. a directed graph G=(V,E), where V is the set of vertices (nodes) and E is the set of edges. Each edge (i,j)∈E has an associated non-negative cost (or length) cij

    Let xij​ be a binary variable that equals 1 if edge (i,j) is included in the shortest path, and 0 otherwise.

    Minimize ∑​_(i,j)∈E [cij​xij​]

    Subject to:

    ∑_j:(s,j)∈E[xsj]−∑_i:(i,s)∈E [xis]=1

    ∑_i:(i,t)∈E [xit]−∑_j:(t,j)∈E [xtj]=−1

    ∑_i:(i,k)∈E [xik]−∑_j:(k,j)∈E [xkj]=0∀k∈V∖{s,t}

    xij∈{0,1}∀(i,j)∈E