aboutsummaryrefslogtreecommitdiff
path: root/LightInstallation.py
diff options
context:
space:
mode:
authorGravatar rcoh <rcoh@mit.edu>2010-12-22 15:32:35 -0500
committerGravatar rcoh <rcoh@mit.edu>2010-12-22 15:32:35 -0500
commit8ef906efd8f1c1c438b487e16ceaa136424dd99d (patch)
tree2611ed48418484fc154da9fac623ca967a39b20e /LightInstallation.py
parent840d803feaa11a5b847aa2102c0cac6d742aa60a (diff)
A bit of cleanup.
Diffstat (limited to 'LightInstallation.py')
-rw-r--r--LightInstallation.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/LightInstallation.py b/LightInstallation.py
index 48dee77..6546f7e 100644
--- a/LightInstallation.py
+++ b/LightInstallation.py
@@ -43,7 +43,6 @@ class LightInstallation:
self.registerComponents(self.inputs)
self.registerComponents(self.behaviors)
self.registerComponents(self.mappers)
- pdb.set_trace()
self.configureInstallation(installationConfig)
#Done initializing. Lets start this thing!
self.timer.stop()
@@ -130,9 +129,6 @@ class LightInstallation:
self.behaviors = self.initializeComponent(behaviorConfig)
for behavior in self.behaviors:
self.addBehavior(behavior)
- #TODO: we probably don't need this anymore :(
- def topologicalBehaviorSort(self):
- return Util.topologicalSort(self.behaviorDependencies)
#Does work needed to add a behavior: currently -- maps behavior inputs into
#the input behavior registry.
def addBehavior(self, behavior):