1234567891011121314151617181920212223242526272829303132333435 |
- class Brain:
- """
- This Class is a Singleton Representing the Brain.yml file with synapse
- .. note:: the is_loaded Boolean is True when the Brain has been properly loaded.
- """
- def __init__(self, synapses=None, brain_file=None, brain_yaml=None):
- self.synapses = synapses
- self.brain_file = brain_file
- self.brain_yaml = brain_yaml
- def get_synapse_by_name(self, synapse_name):
- """
- Get the synapse, using its synapse name, from the synapse list
- :param synapse_name: the name of the synapse to get
- :type synapse_name: str
- :return: The Synapse corresponding to the name
- :rtype: Synapse
- """
- synapse_launched = None
- for synapse in self.synapses:
- if synapse.name == synapse_name:
- synapse_launched = synapse
- # we found the synapse, we don't need to check the rest of the list
- break
- return synapse_launched
- def __eq__(self, other):
- """
- This is used to compare 2 objects
- :param other:
- :return:
- """
- return self.__dict__ == other.__dict__
|