I hereby claim:
- I am berndtj on github.
- I am berndtj (https://keybase.io/berndtj) on keybase.
- I have a public key ASCMf8vL28nE4leEOgEnaA8lWVZP2dsbqP9T_2I5xjdFDQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Download OVA: https://s3-us-west-2.amazonaws.com/dispatch-imgs/Ubuntu_16.04.2_server_amd64_dispatch.ova
VMware fusion users:
from collections import namedtuple | |
from itertools import combinations | |
Valve = namedtuple("Valve", ("name", "rate", "destinations")) | |
valves = {} | |
shortest_paths = {} | |
def explore(start: Valve, unvisited, turns=0, rate=0, flow=0, path=None, max_turns=30, paths=None): | |
if len(unvisited) == 0: |