Revision 7b37f04e03e06569f352f0be81362c4860cb2ce5 authored by Matthias J. Kannwischer on 04 February 2020, 11:52:48 UTC, committed by GitHub on 04 February 2020, 11:52:48 UTC
* update three bears benchmarks for clean implementation

* update mupq
1 parent 2f3b8bd
Raw File
build_everything.py
#!/usr/bin/env python3
"""
Builds all of the binaries without flashing them.
"""
import sys

from interface import M4Settings
from mupq import mupq


if __name__ == "__main__":
    mupq.BuildAll(M4Settings()).test_all(sys.argv[1:])
back to top