Skip to content

Commit

Permalink
Local variable renaming.
Browse files Browse the repository at this point in the history
  • Loading branch information
rik0 committed Nov 21, 2012
1 parent 245b6d4 commit 2700cab
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pynetsym/simulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -324,8 +324,8 @@ def gather_additional_agents(cls):
cls, 'additional_agents', acc_type=set)

def setup(self):
graph_creator = ComponentBuilder(self, 'graph')
graph_creator.build(set_=True)
graph_builder = ComponentBuilder(self, 'graph')
graph_builder.build(set_=True)

def create_node_db(self):
self.node_db = agent_db.AgentDB(PythonPickler(), dict())
Expand All @@ -345,14 +345,14 @@ def create_logger(self):
self.address_book, self.node_db, sys.stderr)

def create_termination_checker(self):
termination_checker_creator = ComponentBuilder(
termination_checker_builder = ComponentBuilder(
self, 'termination_checker')
termination_checker_creator.build(set_=True)
termination_checker_builder.build(set_=True)

def create_configurator(self):
configurator_creator = ComponentBuilder(
configurator_builder = ComponentBuilder(
self, 'configurator', gather_from_ancestors=True)
configurator_creator.build(
configurator_builder.build(
self._simulation_parameters,
set_=True,
full_parameters=self._simulation_parameters)
Expand Down

0 comments on commit 2700cab

Please sign in to comment.