aboutsummaryrefslogtreecommitdiff
path: root/behaviors/RecursiveDecay.py
diff options
context:
space:
mode:
authorGravatar rcoh <rcoh@mit.edu>2010-12-08 16:39:50 -0500
committerGravatar rcoh <rcoh@mit.edu>2010-12-08 16:39:50 -0500
commitb335b746523ffd59db1402b097a802b3fd99eaac (patch)
tree74333be1820f3d2666358c3b009beb14bf929256 /behaviors/RecursiveDecay.py
parent353ab16db64c86122c0fcb9e1852b85c14b354b8 (diff)
Code for the demo. Everything works afaik. Contains a couple more optimizations. Contains modify param behavior. Improved support for recursive hooks. Modifications to SmootCoreObject to get us closer to a fully multi-threaded system. This should be the last commit directly to master. All further commits should be on subranches and get merged.
Diffstat (limited to 'behaviors/RecursiveDecay.py')
-rw-r--r--behaviors/RecursiveDecay.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/behaviors/RecursiveDecay.py b/behaviors/RecursiveDecay.py
index b119b85..ee38bc4 100644
--- a/behaviors/RecursiveDecay.py
+++ b/behaviors/RecursiveDecay.py
@@ -2,11 +2,11 @@ from operationscore.Behavior import *
class RecursiveDecay(Behavior):
def processResponse(self, sensorInputs, recursiveInputs):
ret = []
- for response in recursiveInputs:
+ for response in sensorInputs:
if not 'ResponsesLeft' in response:
response['ResponsesLeft'] = self['InitialResponseCount']
else:
response['ResponsesLeft'] -= 1
if response['ResponsesLeft'] > 0:
ret.append(response)
- return (sensorInputs, ret) #no direct ouput
+ return (ret, recursiveInputs) #no direct ouput