adventofcode2022/day16
magical 910da239c0 new A* optimization: worst-case pruning
i'm not sure if this has been described in the literature exactly but it
is similar to existing branch-and-bound techniques.

it doesn't speed up the search directly (the number of visited nodes is
the same) but it does cut the queue length down by an order of magnitude
and shave a couple seconds off of day 16, presumably due to reduced memory
pressure or something.
2022-12-17 20:15:25 -08:00
..
bad.py day 16 hide my shame 2022-12-17 15:29:32 -08:00
input day 16 python attempt 2022-12-17 13:18:50 -08:00
sample day 16 sample input 2022-12-17 15:26:04 -08:00
sol.py new A* optimization: worst-case pruning 2022-12-17 20:15:25 -08:00