// hasn"t already been done, read back the data
if (globals_variables.get_simulator().has_ran
and not self.__has_read_neuron_parameters_this_run
and not globals_variables.get_simulator().use_virtual_board):
// go through each machine vertex and read the neuron parameters
// it contains
for machine_vertex in self.__vertex.machine_vertices:
After Change
// If the tools have run before, and not reset, and the read
// hasn"t already been done, read back the data
sim = get_simulator()
if (sim.has_ran
and not self.__has_read_neuron_parameters_this_run
and not sim.use_virtual_board):
// go through each machine vertex and read the neuron parameters
// it contains
for vertex in self.__vertex.machine_vertices: