https://github.com/mupq/pqm4
Revision 5ebac3b034acab1949326659c407265600e7b482 authored by Matthias J. Kannwischer on 30 May 2021, 02:05:04 UTC, committed by GitHub on 30 May 2021, 02:05:04 UTC
1 parent 8f5b115
Raw File
Tip revision: 5ebac3b034acab1949326659c407265600e7b482 authored by Matthias J. Kannwischer on 30 May 2021, 02:05:04 UTC
Fix benchmarks.md
Tip revision: 5ebac3b
test.py
#!/usr/bin/env python3
from mupq import mupq
from interface import M4Settings, M4

import sys

if __name__ == "__main__":
    with M4() as m4:
        test = mupq.SimpleTest(M4Settings(), m4)
        test.test_all(sys.argv[1:])
back to top