Brain.py 553 B

12345678910111213141516171819
  1. class Brain:
  2. """
  3. This Class is a Singleton Representing the Brain.yml file with synapse
  4. .. note:: the is_loaded Boolean is True when the Brain has been properly loaded.
  5. """
  6. def __init__(self, synapses=None, brain_file=None, brain_yaml=None):
  7. self.synapses = synapses
  8. self.brain_file = brain_file
  9. self.brain_yaml = brain_yaml
  10. def __eq__(self, other):
  11. """
  12. This is used to compare 2 objects
  13. :param other:
  14. :return:
  15. """
  16. return self.__dict__ == other.__dict__