Home | History | Annotate | Download | only in lazy

Lines Matching refs:script

7     """Used to generate a bash script which will invoke the toy and time it"""
175 """ Generate a random Kaleidoscope script based on the given parameters """
180 script = KScriptGenerator(filename)
181 script.setCallWeighting(callWeighting)
182 script.writeComment("===========================================================================")
183 script.writeComment("Auto-generated script")
184 script.writeComment(" %d functions, %d elements per function, %d functions between execution"
186 script.writeComment(" call weighting = %f" % callWeighting)
187 script.writeComment("===========================================================================")
188 script.writeEmptyLine()
189 script.writePredefinedFunctions()
192 script.writeFunction(elementsPerFunc)
195 script.writeFunctionCall()
199 script.writeFunctionCall()
200 script.writeEmptyLine()
201 script.writeFinalFunctionCounts()
202 funcsCalled = len(script.calledFunctions)
203 print " Called %d of %d functions, %d total" % (funcsCalled, numFuncs, script.totalCallsExecuted)
204 timingScript.writeTimingCall(filename, numFuncs, funcsCalled, script.totalCallsExecuted)