diff options
author | Paul Oliver <contact@pauloliver.dev> | 2024-02-29 02:29:14 +0100 |
---|---|---|
committer | Paul Oliver <contact@pauloliver.dev> | 2024-02-29 02:29:14 +0100 |
commit | 36e1e5222d094714e673506d857e6d93cdcd8e38 (patch) | |
tree | 88fdc7a07cf63d73208220808409089bd25e31fb /bin | |
parent | da015293b605f82399361f12cff367ebf70eaf69 (diff) |
Removed executed instruction counter.
[#17] After having removed organisms' reward/punishment mechanisms,
the number of executed instructions will always match the number of
processes. No need to keep this.
Diffstat (limited to 'bin')
-rw-r--r-- | bin/printer.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/bin/printer.py b/bin/printer.py index 58af55a..5628737 100644 --- a/bin/printer.py +++ b/bin/printer.py @@ -521,9 +521,6 @@ class Printer: ("e", "capacity", self.__sim.lib.sal_proc_get_capacity), ("e", "first", self.__sim.lib.sal_proc_get_first), ("e", "last", self.__sim.lib.sal_proc_get_last), - ("e", "exec", - self.__sim.lib.sal_proc_get_instructions_executed - ), ]), ("WORLD", [ ("e", "position", lambda: self.world.pos), |