Example #1
0
class Perceive(object):
    '''
    classdocs
    '''
    __score = 0  # [0,100]

    def __init__(self):
        '''
        Constructor
        '''
        self.confronting = Confronting()

    def perceive(self, input, states):
        self.confronting.perceive(input)
Example #2
0
 def __init__(self):
     '''
     Constructor
     '''
     self.confronting = Confronting()