This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from math import copysign | |
import random | |
import sys | |
import os | |
def shufflecnf(cnffilename, seed, outputfile): | |
random.seed(seed) | |
numvar, numclauses = None, None |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from uuid import uuid4 | |
import timeit | |
def build_uuid_list(num_uuids): | |
return [uuid4() for i in xrange(num_uuids)] | |
def main(): | |
setup = """ |
OlderNewer