mirror of
https://github.com/nasa/trick.git
synced 2024-12-18 20:57:55 +00:00
Python3 exec open (#907)
* update .gitignore * #906 change all python execfile() to exec(open().read())
This commit is contained in:
parent
0b4806dfb1
commit
0d5aa45c20
1
test/.gitignore
vendored
1
test/.gitignore
vendored
@ -23,3 +23,4 @@ T_main_*
|
||||
trick
|
||||
jitlib
|
||||
build
|
||||
S_sie.json
|
@ -1,5 +1,5 @@
|
||||
|
||||
execfile("RUN_test/input.py")
|
||||
exec(open("RUN_test/input.py").read())
|
||||
|
||||
# Disable real-time (if applicable)
|
||||
trick.real_time_disable()
|
||||
|
@ -1,4 +1,4 @@
|
||||
execfile("RUN_test/input.py")
|
||||
exec(open("RUN_test/input.py").read())
|
||||
|
||||
# Disable real-time (if applicable)
|
||||
trick.real_time_disable()
|
||||
|
@ -1,5 +1,5 @@
|
||||
|
||||
execfile("Modified_data/group1.dr")
|
||||
execfile("Modified_data/group2.dr")
|
||||
execfile("Modified_data/group3.dr")
|
||||
execfile("Modified_data/group4.dr")
|
||||
exec(open("Modified_data/group1.dr").read())
|
||||
exec(open("Modified_data/group2.dr").read())
|
||||
exec(open("Modified_data/group3.dr").read())
|
||||
exec(open("Modified_data/group4.dr").read())
|
||||
|
@ -1,5 +1,5 @@
|
||||
|
||||
execfile("Modified_data/data_record.py")
|
||||
exec(open("Modified_data/data_record.py").read())
|
||||
|
||||
|
||||
trick.sim_services.exec_set_terminate_time(10.0)
|
||||
|
@ -1,5 +1,5 @@
|
||||
|
||||
execfile("RUN_test/input.py")
|
||||
exec(open("RUN_test/input.py").read())
|
||||
|
||||
# Disable real-time (if applicable)
|
||||
trick.real_time_disable()
|
||||
|
@ -1,7 +1,7 @@
|
||||
execfile("Modified_data/dr_typesASCII.dr")
|
||||
execfile("Modified_data/dr_typesBINARY.dr")
|
||||
execfile("Modified_data/dr_bitfASCII.dr")
|
||||
execfile("Modified_data/dr_bitfBINARY.dr")
|
||||
exec(open("Modified_data/dr_typesASCII.dr").read())
|
||||
exec(open("Modified_data/dr_typesBINARY.dr").read())
|
||||
exec(open("Modified_data/dr_bitfASCII.dr").read())
|
||||
exec(open("Modified_data/dr_bitfBINARY.dr").read())
|
||||
|
||||
trick_utest.unit_tests.enable() ;
|
||||
trick_utest.unit_tests.set_file_name( os.getenv("TRICK_HOME") + "/trick_test/SIM_test_dr.xml" ) ;
|
||||
|
@ -1,2 +1,2 @@
|
||||
|
||||
execfile("Modified_data/next_level.py")
|
||||
exec(open("Modified_data/next_level.py").read())
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
#execfile("Modified_data/data_record.dr")
|
||||
#execfile("Modified_data/realtime.py")
|
||||
#exec(open("Modified_data/data_record.dr").read())
|
||||
#exec(open("Modified_data/realtime.py").read())
|
||||
|
||||
my_integ_loop.getIntegrator(trick.Runge_Kutta_4, 2)
|
||||
trick.sim_services.exec_set_terminate_time(300.0)
|
||||
|
@ -1,5 +1,5 @@
|
||||
|
||||
execfile("RUN_test/input.py")
|
||||
exec(open("RUN_test/input.py").read())
|
||||
|
||||
print '\nFinding number of CPUs...'
|
||||
os.system('cat /proc/cpuinfo | grep processor')
|
||||
|
@ -1,5 +1,5 @@
|
||||
|
||||
execfile("RUN_test/overrun.py")
|
||||
exec(open("RUN_test/overrun.py").read())
|
||||
|
||||
# Disable real-time (if applicable)
|
||||
trick.real_time_disable()
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
execfile("Modified_data/auto_test.dr")
|
||||
execfile("Modified_data/data_record.dr")
|
||||
exec(open("Modified_data/auto_test.dr").read())
|
||||
exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
#my_integ_loop.integ_sched.integ_ptr = trick.getIntegrator( trick.Runge_Kutta_2, 4, 1.0);
|
||||
my_integ_loop.getIntegrator(trick.Runge_Kutta_2, 4)
|
||||
|
@ -1,5 +1,5 @@
|
||||
|
||||
execfile("RUN_test/input.py")
|
||||
exec(open("RUN_test/input.py").read())
|
||||
|
||||
# Disable real-time (if applicable)
|
||||
trick.real_time_disable()
|
||||
|
@ -1,5 +1,5 @@
|
||||
|
||||
execfile("Modified_data/data_record.dr")
|
||||
exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
|
||||
trick.sim_services.exec_set_terminate_time(300.0)
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
execfile("Modified_data/data_record.dr")
|
||||
execfile("Modified_data/realtime.py")
|
||||
execfile("Modified_data/graphics.py")
|
||||
exec(open("Modified_data/data_record.dr").read())
|
||||
exec(open("Modified_data/realtime.py").read())
|
||||
exec(open("Modified_data/graphics.py").read())
|
||||
|
||||
trick.sim_services.exec_set_terminate_time(300.0)
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
|
||||
execfile("Modified_data/data_record.dr")
|
||||
exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
|
||||
trick.sim_services.exec_set_terminate_time(300.0)
|
||||
|
@ -1,5 +1,5 @@
|
||||
|
||||
execfile("RUN_test/input.py")
|
||||
exec(open("RUN_test/input.py").read())
|
||||
|
||||
# Disable real-time (if applicable)
|
||||
trick.real_time_disable()
|
||||
|
@ -1,5 +1,5 @@
|
||||
|
||||
execfile("Modified_data/data_record.dr")
|
||||
exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
|
||||
ball2.state.input.mass = trick.sim_services.attach_units("kg" , 10.0)
|
||||
|
@ -1,5 +1,5 @@
|
||||
|
||||
execfile("Modified_data/data_record.dr")
|
||||
execfile("Modified_data/realtime.py")
|
||||
execfile("Modified_data/graphics.py")
|
||||
exec(open("Modified_data/data_record.dr").read())
|
||||
exec(open("Modified_data/realtime.py").read())
|
||||
exec(open("Modified_data/graphics.py").read())
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
execfile("Modified_data/data_record.dr")
|
||||
execfile("Modified_data/auto_test.dr")
|
||||
exec(open("Modified_data/data_record.dr").read())
|
||||
exec(open("Modified_data/auto_test.dr").read())
|
||||
|
||||
ball.altimeter.input.add_noise = False
|
||||
ball2.altimeter.input.add_noise = False
|
||||
|
@ -1,4 +1,4 @@
|
||||
execfile("RUN_test/input.py")
|
||||
exec(open("RUN_test/input.py").read())
|
||||
|
||||
# Disable real-time (if applicable)
|
||||
trick.real_time_disable()
|
||||
|
@ -1,6 +1,6 @@
|
||||
|
||||
execfile("Modified_data/cannon_aero.dr")
|
||||
execfile("Modified_data/amoeba.py")
|
||||
exec(open("Modified_data/cannon_aero.dr").read())
|
||||
exec(open("Modified_data/amoeba.py").read())
|
||||
|
||||
trick.mc_set_enabled(1)
|
||||
trick.mc_set_num_runs(70)
|
||||
|
@ -6,7 +6,7 @@ if trick.mc_get_slave_id() == 0:
|
||||
trick_utest.unit_tests.enable();
|
||||
trick_utest.unit_tests.set_file_name( os.getenv("TRICK_HOME") + "/trick_test/SIM_amoeba.xml" )
|
||||
|
||||
execfile("Modified_data/amoeba.py")
|
||||
exec(open("Modified_data/amoeba.py").read())
|
||||
|
||||
trick.mc_set_enabled(1)
|
||||
#trick.mc_set_dry_run(1)
|
||||
|
@ -1,4 +1,4 @@
|
||||
execfile("Modified_data/cannon_aero.dr")
|
||||
exec(open("Modified_data/cannon_aero.dr").read())
|
||||
|
||||
dyn.baseball.pos[0] = 16.0
|
||||
dyn.baseball.pos[1] = 0.1
|
||||
|
@ -1,4 +1,4 @@
|
||||
execfile("Modified_data/cannon_aero.dr")
|
||||
exec(open("Modified_data/cannon_aero.dr").read())
|
||||
|
||||
dyn.baseball.pos[0] = 16.0
|
||||
dyn.baseball.pos[1] = 0.1
|
||||
|
@ -1,4 +1,4 @@
|
||||
execfile("Modified_data/realtime.py")
|
||||
exec(open("Modified_data/realtime.py").read())
|
||||
|
||||
#==========================================
|
||||
# Start the display VarServer Client
|
||||
|
@ -1,5 +1,5 @@
|
||||
execfile("Modified_data/cannon.dr")
|
||||
execfile("Modified_data/realtime.py")
|
||||
exec(open("Modified_data/cannon.dr").read())
|
||||
exec(open("Modified_data/realtime.py").read())
|
||||
|
||||
trick.exec_set_terminate_time(5.2)
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
|
||||
execfile("Modified_data/cannon.dr")
|
||||
exec(open("Modified_data/cannon.dr").read())
|
||||
dyn_integloop.getIntegrator(trick.Euler_Cromer, 4)
|
||||
dyn_integloop.integ_sched.set_verbosity( 1)
|
||||
trick.exec_set_terminate_time(5.2)
|
||||
|
@ -1,5 +1,5 @@
|
||||
|
||||
execfile("Modified_data/cannon.dr")
|
||||
exec(open("Modified_data/cannon.dr").read())
|
||||
dyn_integloop.getIntegrator(trick.Euler_Cromer, 4)
|
||||
#dyn.my_integ.set_verbosity( 1)
|
||||
trick.exec_set_terminate_time(5.2)
|
||||
|
@ -1,4 +1,4 @@
|
||||
execfile("Modified_data/cannon_aero.dr")
|
||||
exec(open("Modified_data/cannon_aero.dr").read())
|
||||
|
||||
dyn.baseball.pos[0] = 16.0
|
||||
dyn.baseball.pos[1] = 0.1
|
||||
|
@ -1,4 +1,4 @@
|
||||
execfile("Modified_data/cannon_aero.dr")
|
||||
exec(open("Modified_data/cannon_aero.dr").read())
|
||||
|
||||
dyn.baseball.pos[0] = 16.0
|
||||
dyn.baseball.pos[1] = 0.1
|
||||
|
@ -1,4 +1,4 @@
|
||||
execfile("Modified_data/cannon_aero.dr")
|
||||
exec(open("Modified_data/cannon_aero.dr").read())
|
||||
|
||||
dyn.baseball.pos[0] = 16.0
|
||||
dyn.baseball.pos[1] = 0.1
|
||||
|
@ -1,4 +1,4 @@
|
||||
execfile("Modified_data/realtime.py")
|
||||
exec(open("Modified_data/realtime.py").read())
|
||||
|
||||
#==========================================
|
||||
# Start the Cannonball Graphics Client
|
||||
|
@ -1,2 +1,2 @@
|
||||
execfile("Modified_data/realtime.py")
|
||||
execfile("Modified_data/cannon.dr")
|
||||
exec(open("Modified_data/realtime.py").read())
|
||||
exec(open("Modified_data/cannon.dr").read())
|
||||
|
@ -1,5 +1,5 @@
|
||||
|
||||
execfile("Modified_data/cannon_aero.dr")
|
||||
exec(open("Modified_data/cannon_aero.dr").read())
|
||||
|
||||
dyn_integloop.getIntegrator(trick.Runge_Kutta_4, 6)
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
|
||||
execfile("Modified_data/cannon_aero.dr")
|
||||
exec(open("Modified_data/cannon_aero.dr").read())
|
||||
|
||||
trick.mc_set_enabled(1)
|
||||
#trick.mc_set_dry_run(1)
|
||||
|
@ -1,5 +1,5 @@
|
||||
dyn_integloop.getIntegrator(trick.Runge_Kutta_4, 4)
|
||||
execfile("Modified_data/realtime.py")
|
||||
exec(open("Modified_data/realtime.py").read())
|
||||
|
||||
dyn.msd.b = 2*(2**(0.5))
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
dyn_integloop.getIntegrator(trick.Runge_Kutta_4, 4)
|
||||
execfile("Modified_data/realtime.py")
|
||||
exec(open("Modified_data/realtime.py").read())
|
||||
|
||||
dyn.msd.b = 0
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
dyn_integloop.getIntegrator(trick.Runge_Kutta_4, 4)
|
||||
execfile("Modified_data/realtime.py")
|
||||
exec(open("Modified_data/realtime.py").read())
|
||||
|
||||
dyn.msd.b = 4*(2**(0.5)) - 1/2
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
dyn_integloop.getIntegrator(trick.Runge_Kutta_4, 4)
|
||||
trick.var_debug(3)
|
||||
execfile("Modified_data/realtime.py")
|
||||
exec(open("Modified_data/realtime.py").read())
|
||||
|
||||
#==========================================
|
||||
# Start the display VarServer Client
|
||||
|
@ -1,5 +1,5 @@
|
||||
dyn_integloop.getIntegrator(trick.Runge_Kutta_4, 4)
|
||||
execfile("Modified_data/realtime.py")
|
||||
exec(open("Modified_data/realtime.py").read())
|
||||
|
||||
dyn.msd.b = 0.5
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
|
||||
execfile("Modified_data/parachutist.dr")
|
||||
exec(open("Modified_data/parachutist.dr").read())
|
||||
trick.TMM_reduced_checkpoint(0)
|
||||
dyn_integloop.getIntegrator(trick.Runge_Kutta_4, 2)
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
execfile("Modified_data/Rocket.dr")
|
||||
#execfile("Modified_data/realtime.py")
|
||||
exec(open("Modified_data/Rocket.dr").read())
|
||||
#exec(open("Modified_data/realtime.py").read())
|
||||
|
||||
trick.exec_set_terminate_time(20.0)
|
||||
|
@ -1,5 +1,5 @@
|
||||
execfile("Modified_data/realtime.py")
|
||||
execfile("Modified_data/satellite.dr")
|
||||
exec(open("Modified_data/realtime.py").read())
|
||||
exec(open("Modified_data/satellite.dr").read())
|
||||
|
||||
dyn_integloop.getIntegrator(trick.Runge_Kutta_4, 6)
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
import os
|
||||
|
||||
execfile("Modified_data/realtime.py")
|
||||
#execfile("Modified_data/Satellite.dr")
|
||||
exec(open("Modified_data/realtime.py").read())
|
||||
#exec(open("Modified_data/Satellite.dr").read())
|
||||
|
||||
dyn_integloop.getIntegrator(trick.Runge_Kutta_4, 18)
|
||||
|
||||
|
@ -6,15 +6,15 @@ trick.add_external_application(simControlPanel)
|
||||
|
||||
RECORD_DATA = True
|
||||
if RECORD_DATA:
|
||||
execfile("Modified_data/helios.dr")
|
||||
exec(open("Modified_data/helios.dr").read())
|
||||
|
||||
REALTIME = False
|
||||
if REALTIME:
|
||||
execfile("Modified_data/realtime.py")
|
||||
exec(open("Modified_data/realtime.py").read())
|
||||
|
||||
JAPANESE = False
|
||||
if JAPANESE:
|
||||
execfile("Modified_data/Japanese_labels_alt.py")
|
||||
exec(open("Modified_data/Japanese_labels_alt.py").read())
|
||||
|
||||
STRIPCHART = False
|
||||
if STRIPCHART:
|
||||
|
@ -6,15 +6,15 @@ trick.add_external_application(simControlPanel)
|
||||
|
||||
RECORD_DATA = True
|
||||
if RECORD_DATA:
|
||||
execfile("Modified_data/helios.dr")
|
||||
exec(open("Modified_data/helios.dr").read())
|
||||
|
||||
REALTIME = False
|
||||
if REALTIME:
|
||||
execfile("Modified_data/realtime.py")
|
||||
exec(open("Modified_data/realtime.py").read())
|
||||
|
||||
JAPANESE = False
|
||||
if JAPANESE:
|
||||
execfile("Modified_data/Japanese_labels_alt.py")
|
||||
exec(open("Modified_data/Japanese_labels_alt.py").read())
|
||||
|
||||
STRIPCHART = False
|
||||
if STRIPCHART:
|
||||
|
@ -7,15 +7,15 @@ trick.add_external_application(simControlPanel)
|
||||
|
||||
RECORD_DATA = True
|
||||
if RECORD_DATA:
|
||||
execfile("Modified_data/helios.dr")
|
||||
exec(open("Modified_data/helios.dr").read())
|
||||
|
||||
REALTIME = True
|
||||
if REALTIME:
|
||||
execfile("Modified_data/realtime.py")
|
||||
exec(open("Modified_data/realtime.py").read())
|
||||
|
||||
JAPANESE = False
|
||||
if JAPANESE:
|
||||
execfile("Modified_data/Japanese_labels_alt.py")
|
||||
exec(open("Modified_data/Japanese_labels_alt.py").read())
|
||||
|
||||
STRIPCHART = False
|
||||
if STRIPCHART:
|
||||
|
@ -1,4 +1,4 @@
|
||||
execfile("RUN_test/input.py")
|
||||
exec(open("RUN_test/input.py").read())
|
||||
|
||||
# Disable real-time (if applicable)
|
||||
trick.real_time_disable()
|
||||
|
@ -1,5 +1,5 @@
|
||||
execfile("Modified_data/realtime.py")
|
||||
execfile("Modified_data/vehicleState.dr")
|
||||
exec(open("Modified_data/realtime.py").read())
|
||||
exec(open("Modified_data/vehicleState.dr").read())
|
||||
|
||||
trick.TMM_reduced_checkpoint(0)
|
||||
|
||||
|
@ -2,8 +2,8 @@
|
||||
# $Id: input.py 1973 2011-10-11 15:11:16Z lin $
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
execfile("Modified_data/auto_test.dr")
|
||||
execfile("Modified_data/data_record.dr")
|
||||
exec(open("Modified_data/auto_test.dr").read())
|
||||
exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
# Set the freeze frame rate
|
||||
trick.exec_set_freeze_frame(0.10)
|
||||
|
@ -2,8 +2,8 @@
|
||||
# $Id: input.py 1973 2011-10-11 15:11:16Z lin $
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
execfile("Modified_data/auto_test.dr")
|
||||
execfile("Modified_data/data_record.dr")
|
||||
exec(open("Modified_data/auto_test.dr").read())
|
||||
exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
# Set the freeze frame rate
|
||||
trick.exec_set_freeze_frame(0.10)
|
||||
|
@ -2,8 +2,8 @@
|
||||
# $Id: input.py 1973 2011-10-11 15:11:16Z lin $
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
execfile("Modified_data/auto_test.dr")
|
||||
execfile("Modified_data/data_record.dr")
|
||||
exec(open("Modified_data/auto_test.dr").read())
|
||||
exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
# Set the freeze frame rate
|
||||
trick.exec_set_freeze_frame(0.10)
|
||||
|
@ -2,8 +2,8 @@
|
||||
# $Id: input.py 1973 2011-10-11 15:11:16Z lin $
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
execfile("Modified_data/auto_test.dr")
|
||||
execfile("Modified_data/data_record.dr")
|
||||
exec(open("Modified_data/auto_test.dr").read())
|
||||
exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
# Set the freeze frame rate
|
||||
trick.exec_set_freeze_frame(0.10)
|
||||
|
@ -2,8 +2,8 @@
|
||||
# $Id: input.py 1973 2011-10-11 15:11:16Z lin $
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
execfile("Modified_data/auto_test.dr")
|
||||
execfile("Modified_data/data_record.dr")
|
||||
exec(open("Modified_data/auto_test.dr").read())
|
||||
exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
# Set the freeze frame rate
|
||||
trick.exec_set_freeze_frame(0.10)
|
||||
|
@ -2,8 +2,8 @@
|
||||
# $Id: input.py 1973 2011-10-11 15:11:16Z lin $
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
execfile("Modified_data/auto_test.dr")
|
||||
execfile("Modified_data/data_record.dr")
|
||||
exec(open("Modified_data/auto_test.dr").read())
|
||||
exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
# Set the freeze frame rate
|
||||
trick.exec_set_freeze_frame(0.10)
|
||||
|
@ -2,8 +2,8 @@
|
||||
# $Id: input.py 1973 2011-10-11 15:11:16Z lin $
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
execfile("Modified_data/auto_test.dr")
|
||||
execfile("Modified_data/data_record.dr")
|
||||
exec(open("Modified_data/auto_test.dr").read())
|
||||
exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
# Set the freeze frame rate
|
||||
trick.exec_set_freeze_frame(0.10)
|
||||
|
@ -2,8 +2,8 @@
|
||||
# $Id: input.py 1973 2011-10-11 15:11:16Z lin $
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
execfile("Modified_data/auto_test.dr")
|
||||
execfile("Modified_data/data_record.dr")
|
||||
exec(open("Modified_data/auto_test.dr").read())
|
||||
exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
# Set the freeze frame rate
|
||||
trick.exec_set_freeze_frame(0.10)
|
||||
|
@ -2,8 +2,8 @@
|
||||
# $Id: input.py 1973 2011-10-11 15:11:16Z lin $
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
execfile("Modified_data/auto_test.dr")
|
||||
execfile("Modified_data/data_record.dr")
|
||||
exec(open("Modified_data/auto_test.dr").read())
|
||||
exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
# Set the freeze frame rate
|
||||
trick.exec_set_freeze_frame(0.10)
|
||||
|
@ -2,8 +2,8 @@
|
||||
# $Id: input.py 1973 2011-10-11 15:11:16Z lin $
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
execfile("Modified_data/auto_test.dr")
|
||||
execfile("Modified_data/data_record.dr")
|
||||
exec(open("Modified_data/auto_test.dr").read())
|
||||
exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
# Set the freeze frame rate
|
||||
trick.exec_set_freeze_frame(0.10)
|
||||
|
@ -2,8 +2,8 @@
|
||||
# $Id: input.py 1973 2011-10-11 15:11:16Z lin $
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
execfile("Modified_data/auto_test.dr")
|
||||
execfile("Modified_data/data_record.dr")
|
||||
exec(open("Modified_data/auto_test.dr").read())
|
||||
exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
# Set the freeze frame rate
|
||||
trick.exec_set_freeze_frame(0.10)
|
||||
|
@ -2,8 +2,8 @@
|
||||
# $Id: input.py 1973 2011-10-11 15:11:16Z lin $
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
execfile("Modified_data/auto_test.dr")
|
||||
execfile("Modified_data/data_record.dr")
|
||||
exec(open("Modified_data/auto_test.dr").read())
|
||||
exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
# Set the freeze frame rate
|
||||
trick.exec_set_freeze_frame(0.10)
|
||||
|
@ -2,8 +2,8 @@
|
||||
# $Id: input.py 1973 2011-10-11 15:11:16Z lin $
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
execfile("Modified_data/auto_test.dr")
|
||||
execfile("Modified_data/data_record.dr")
|
||||
exec(open("Modified_data/auto_test.dr").read())
|
||||
exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
# Set the freeze frame rate
|
||||
trick.exec_set_freeze_frame(0.10)
|
||||
|
@ -2,8 +2,8 @@
|
||||
# $Id: input.py 1973 2011-10-11 15:11:16Z lin $
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
execfile("Modified_data/auto_test.dr")
|
||||
execfile("Modified_data/data_record.dr")
|
||||
exec(open("Modified_data/auto_test.dr").read())
|
||||
exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
# Set the freeze frame rate
|
||||
trick.exec_set_freeze_frame(0.10)
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
# execfile("Modified_data/auto_test.dr")
|
||||
# execfile("Modified_data/data_record.dr")
|
||||
# exec(open("Modified_data/auto_test.dr").read())
|
||||
# exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
ball.state.input.print_off = 1
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
# execfile("Modified_data/auto_test.dr")
|
||||
# execfile("Modified_data/data_record.dr")
|
||||
# exec(open("Modified_data/auto_test.dr").read())
|
||||
# exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
ball.state.input.print_off = 1
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
# execfile("Modified_data/auto_test.dr")
|
||||
# execfile("Modified_data/data_record.dr")
|
||||
# exec(open("Modified_data/auto_test.dr").read())
|
||||
# exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
ball.state.input.print_off = 1
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
# execfile("Modified_data/auto_test.dr")
|
||||
# execfile("Modified_data/data_record.dr")
|
||||
# exec(open("Modified_data/auto_test.dr").read())
|
||||
# exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
ball.state.input.print_off = 1
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
# execfile("Modified_data/auto_test.dr")
|
||||
# execfile("Modified_data/data_record.dr")
|
||||
# exec(open("Modified_data/auto_test.dr").read())
|
||||
# exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
ball.state.input.print_off = 1
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
# execfile("Modified_data/auto_test.dr")
|
||||
# execfile("Modified_data/data_record.dr")
|
||||
# exec(open("Modified_data/auto_test.dr").read())
|
||||
# exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
ball.state.input.print_off = 1
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
# execfile("Modified_data/auto_test.dr")
|
||||
# execfile("Modified_data/data_record.dr")
|
||||
# exec(open("Modified_data/auto_test.dr").read())
|
||||
# exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
ball.state.input.print_off = 1
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
# execfile("Modified_data/auto_test.dr")
|
||||
# execfile("Modified_data/data_record.dr")
|
||||
# exec(open("Modified_data/auto_test.dr").read())
|
||||
# exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
ball.state.input.print_off = 1
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
# execfile("Modified_data/auto_test.dr")
|
||||
# execfile("Modified_data/data_record.dr")
|
||||
# exec(open("Modified_data/auto_test.dr").read())
|
||||
# exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
ball.state.input.print_off = 1
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
# execfile("Modified_data/auto_test.dr")
|
||||
# execfile("Modified_data/data_record.dr")
|
||||
# exec(open("Modified_data/auto_test.dr").read())
|
||||
# exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
ball.state.input.print_off = 1
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
# execfile("Modified_data/auto_test.dr")
|
||||
# execfile("Modified_data/data_record.dr")
|
||||
# exec(open("Modified_data/auto_test.dr").read())
|
||||
# exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
ball.state.input.print_off = 1
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
# execfile("Modified_data/auto_test.dr")
|
||||
# execfile("Modified_data/data_record.dr")
|
||||
# exec(open("Modified_data/auto_test.dr").read())
|
||||
# exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
ball.state.input.print_off = 1
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
# execfile("Modified_data/auto_test.dr")
|
||||
# execfile("Modified_data/data_record.dr")
|
||||
# exec(open("Modified_data/auto_test.dr").read())
|
||||
# exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
ball.state.input.print_off = 1
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
# execfile("Modified_data/auto_test.dr")
|
||||
# execfile("Modified_data/data_record.dr")
|
||||
# exec(open("Modified_data/auto_test.dr").read())
|
||||
# exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
ball.state.input.print_off = 1
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
# execfile("Modified_data/auto_test.dr")
|
||||
# execfile("Modified_data/data_record.dr")
|
||||
# exec(open("Modified_data/auto_test.dr").read())
|
||||
# exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
ball.state.input.print_off = 1
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
# execfile("Modified_data/auto_test.dr")
|
||||
# execfile("Modified_data/data_record.dr")
|
||||
# exec(open("Modified_data/auto_test.dr").read())
|
||||
# exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
ball.state.input.print_off = 1
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
# execfile("Modified_data/auto_test.dr")
|
||||
# execfile("Modified_data/data_record.dr")
|
||||
# exec(open("Modified_data/auto_test.dr").read())
|
||||
# exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
ball.state.input.print_off = 1
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
# execfile("Modified_data/auto_test.dr")
|
||||
# execfile("Modified_data/data_record.dr")
|
||||
# exec(open("Modified_data/auto_test.dr").read())
|
||||
# exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
ball.state.input.print_off = 1
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
# execfile("Modified_data/auto_test.dr")
|
||||
# execfile("Modified_data/data_record.dr")
|
||||
# exec(open("Modified_data/auto_test.dr").read())
|
||||
# exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
ball.state.input.print_off = 1
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
# execfile("Modified_data/auto_test.dr")
|
||||
# execfile("Modified_data/data_record.dr")
|
||||
# exec(open("Modified_data/auto_test.dr").read())
|
||||
# exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
ball.state.input.print_off = 1
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
# execfile("Modified_data/auto_test.dr")
|
||||
# execfile("Modified_data/data_record.dr")
|
||||
# exec(open("Modified_data/auto_test.dr").read())
|
||||
# exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
ball.state.input.print_off = 1
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
# execfile("Modified_data/auto_test.dr")
|
||||
# execfile("Modified_data/data_record.dr")
|
||||
# exec(open("Modified_data/auto_test.dr").read())
|
||||
# exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
ball.state.input.print_off = 1
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
# execfile("Modified_data/auto_test.dr")
|
||||
# execfile("Modified_data/data_record.dr")
|
||||
# exec(open("Modified_data/auto_test.dr").read())
|
||||
# exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
ball.state.input.print_off = 1
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
# execfile("Modified_data/auto_test.dr")
|
||||
# execfile("Modified_data/data_record.dr")
|
||||
# exec(open("Modified_data/auto_test.dr").read())
|
||||
# exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
ball.state.input.print_off = 1
|
||||
|
||||
|
@ -2,8 +2,8 @@
|
||||
# $Id: input.py 1973 2011-10-11 15:11:16Z lin $
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
execfile("Modified_data/auto_test.dr")
|
||||
execfile("Modified_data/data_record.dr")
|
||||
exec(open("Modified_data/auto_test.dr").read())
|
||||
exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
# Set the freeze frame rate
|
||||
trick.exec_set_freeze_frame(0.10)
|
||||
|
@ -2,8 +2,8 @@
|
||||
# $Id: input.py 1973 2011-10-11 15:11:16Z lin $
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
execfile("Modified_data/auto_test.dr")
|
||||
execfile("Modified_data/data_record.dr")
|
||||
exec(open("Modified_data/auto_test.dr").read())
|
||||
exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
# Set the freeze frame rate
|
||||
trick.exec_set_freeze_frame(0.10)
|
||||
|
@ -2,8 +2,8 @@
|
||||
# $Id: input.py 1973 2011-10-11 15:11:16Z lin $
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
execfile("Modified_data/auto_test.dr")
|
||||
execfile("Modified_data/data_record.dr")
|
||||
exec(open("Modified_data/auto_test.dr").read())
|
||||
exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
# Set the freeze frame rate
|
||||
trick.exec_set_freeze_frame(0.10)
|
||||
|
@ -2,8 +2,8 @@
|
||||
# $Id: input.py 1973 2011-10-11 15:11:16Z lin $
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
execfile("Modified_data/auto_test.dr")
|
||||
execfile("Modified_data/data_record.dr")
|
||||
exec(open("Modified_data/auto_test.dr").read())
|
||||
exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
# Set the freeze frame rate
|
||||
trick.exec_set_freeze_frame(0.10)
|
||||
|
@ -2,8 +2,8 @@
|
||||
# $Id: input.py 1973 2011-10-11 15:11:16Z lin $
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
execfile("Modified_data/auto_test.dr")
|
||||
execfile("Modified_data/data_record.dr")
|
||||
exec(open("Modified_data/auto_test.dr").read())
|
||||
exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
# Set the freeze frame rate
|
||||
trick.exec_set_freeze_frame(0.10)
|
||||
|
@ -2,8 +2,8 @@
|
||||
# $Id: input.py 1973 2011-10-11 15:11:16Z lin $
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
execfile("Modified_data/auto_test.dr")
|
||||
execfile("Modified_data/data_record.dr")
|
||||
exec(open("Modified_data/auto_test.dr").read())
|
||||
exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
# Set the freeze frame rate
|
||||
trick.exec_set_freeze_frame(0.10)
|
||||
|
@ -2,8 +2,8 @@
|
||||
# $Id: input.py 1973 2011-10-11 15:11:16Z lin $
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
execfile("Modified_data/auto_test.dr")
|
||||
execfile("Modified_data/data_record.dr")
|
||||
exec(open("Modified_data/auto_test.dr").read())
|
||||
exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
# Set the freeze frame rate
|
||||
trick.exec_set_freeze_frame(0.10)
|
||||
|
@ -2,8 +2,8 @@
|
||||
# $Id: input.py 1973 2011-10-11 15:11:16Z lin $
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
execfile("Modified_data/auto_test.dr")
|
||||
execfile("Modified_data/data_record.dr")
|
||||
exec(open("Modified_data/auto_test.dr").read())
|
||||
exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
# Set the freeze frame rate
|
||||
trick.exec_set_freeze_frame(0.10)
|
||||
|
@ -2,8 +2,8 @@
|
||||
# $Id: input.py 1973 2011-10-11 15:11:16Z lin $
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
execfile("Modified_data/auto_test.dr")
|
||||
execfile("Modified_data/data_record.dr")
|
||||
exec(open("Modified_data/auto_test.dr").read())
|
||||
exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
# Set the freeze frame rate
|
||||
trick.exec_set_freeze_frame(0.10)
|
||||
|
@ -2,8 +2,8 @@
|
||||
# $Id: input.py 1973 2011-10-11 15:11:16Z lin $
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
execfile("Modified_data/auto_test.dr")
|
||||
execfile("Modified_data/data_record.dr")
|
||||
exec(open("Modified_data/auto_test.dr").read())
|
||||
exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
# Set the freeze frame rate
|
||||
trick.exec_set_freeze_frame(0.10)
|
||||
|
@ -1,7 +1,7 @@
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
# execfile("Modified_data/auto_test.dr")
|
||||
# execfile("Modified_data/data_record.dr")
|
||||
# exec(open("Modified_data/auto_test.dr").read())
|
||||
# exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
ball.state.input.print_off = 1
|
||||
|
||||
|
@ -2,8 +2,8 @@
|
||||
# $Id: input.py 1973 2011-10-11 15:11:16Z lin $
|
||||
|
||||
# This one of several ways to include files from the input file
|
||||
execfile("Modified_data/auto_test.dr")
|
||||
execfile("Modified_data/data_record.dr")
|
||||
exec(open("Modified_data/auto_test.dr").read())
|
||||
exec(open("Modified_data/data_record.dr").read())
|
||||
|
||||
# Set the freeze frame rate
|
||||
trick.exec_set_freeze_frame(0.10)
|
||||
|
Loading…
Reference in New Issue
Block a user