- Renamed scythercache to scyther.py

This commit is contained in:
ccremers 2005-03-03 14:56:16 +00:00
parent b7c16d8a6b
commit 7b8ac9c14a
2 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@ from tempfile import NamedTemporaryFile
from optparse import OptionParser
import tuplesdo
import scythercache
import scyther
import protocollist
@ -126,13 +126,13 @@ def ScytherEval (plist):
sys.stdout.flush()
sys.stderr.flush()
args = scythercache.default_arguments(plist, options.match, options.bounds)
args = scyther.default_arguments(plist, options.match, options.bounds)
n = len(plist)
if not (n,args) in ArgumentsList:
ArgumentsList.append((n,args))
print "Testing",n,"tuples using",args
return scythercache.default_parsed(plist, options.match, options.bounds)
return scyther.default_parsed(plist, options.match, options.bounds)
# ScytherEval1
#