randomized_uncertain_social_preferences/rusp/env_indirect_reciprocity.py [37:42]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Args:
        policy_to_play (string): One of "allc", "alld", or "tft"
    '''
    def __init__(self, env, policy_to_play):
        super().__init__(env)
        assert policy_to_play in ['allc', 'alld', 'tft']
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



randomized_uncertain_social_preferences/rusp/env_ipd.py [60:65]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Args:
        policy_to_play (string): One of "allc", "alld", or "tft"
    '''
    def __init__(self, env, policy_to_play):
        super().__init__(env)
        assert policy_to_play in ['allc', 'alld', 'tft']
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



