source/MXNetEnv/heuristics_utils.py [41:50]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Parameters:
    -----------
    env: BattlesnakeGym
    
    Returns:
    --------
    snake_locations: [[{"x": x, "y": y}]]
    This contains a list of the locations ([{"x": x, "y": y}]) for each snake. 
    '''
    snake_locations = []
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



source/RLlibEnv/inference/inference_src/heuristics.py [92:101]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        Parameters:
        -----------
        env: BattlesnakeGym

        Returns:
        --------
        snake_locations: [[{"x": x, "y": y}]]
        This contains a list of the locations ([{"x": x, "y": y}]) for each snake. 
        '''
        snake_locations = []
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



