in a method definition why would someone set the formal parameter amount equal to the constant PERMANENCE_INC in the formal parameter list?
def increasePermanence(self, amount=PERMANENCE_INC):
""" Increases the permanence of this synapse. """
self.permanence = min(1.0, self.permanence+amount)