| 4177 | } |
| 4178 | |
| 4179 | bool cHardwareCPU::Inst_TaskPutResetInputs(cAvidaContext& ctx) |
| 4180 | { |
| 4181 | bool return_value = Inst_TaskPut(ctx); // Do a normal put |
| 4182 | m_organism->GetOrgInterface().ResetInputs(ctx); // Now re-randomize the inputs this organism sees |
| 4183 | m_organism->ClearInput(); // Also clear their input buffers, or they can still claim |
| 4184 | // rewards for numbers no longer in their environment! |
| 4185 | return return_value; |
| 4186 | } |
| 4187 | |
| 4188 | bool cHardwareCPU::Inst_TaskIO(cAvidaContext& ctx) |
| 4189 | { |
nothing calls this directly
no test coverage detected