https://github.com/mupq/pqm4
Revision 1624ff12e48436ceea4ae02672594627b5c52fbe authored by Matthias J. Kannwischer on 18 November 2019, 09:34:49 UTC, committed by GitHub on 18 November 2019, 09:34:49 UTC
1 parent 6ba5207
Raw File
Tip revision: 1624ff12e48436ceea4ae02672594627b5c52fbe authored by Matthias J. Kannwischer on 18 November 2019, 09:34:49 UTC
add benchmarks of clean threebears (#124)
Tip revision: 1624ff1
testvectors.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.TestVectors(M4Settings(), m4)
        test.test_all(sys.argv[1:])
back to top