├── .gitignore ├── README.md ├── auction_lap.py ├── benchmark.py ├── imgs ├── score-1000.png ├── time-100-exact.png └── time-1000.png ├── plot.py ├── requirements.txt └── run.sh /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/* 2 | *png 3 | *jl 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkj/auction-lap/HEAD/README.md -------------------------------------------------------------------------------- /auction_lap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkj/auction-lap/HEAD/auction_lap.py -------------------------------------------------------------------------------- /benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkj/auction-lap/HEAD/benchmark.py -------------------------------------------------------------------------------- /imgs/score-1000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkj/auction-lap/HEAD/imgs/score-1000.png -------------------------------------------------------------------------------- /imgs/time-100-exact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkj/auction-lap/HEAD/imgs/time-100-exact.png -------------------------------------------------------------------------------- /imgs/time-1000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkj/auction-lap/HEAD/imgs/time-1000.png -------------------------------------------------------------------------------- /plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkj/auction-lap/HEAD/plot.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkj/auction-lap/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bkj/auction-lap/HEAD/run.sh --------------------------------------------------------------------------------