source/MXNetEnv/heuristics_utils.py [19:31]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    '''
    Helper function that converts a food matrix into a list of coordinates 
    containing food
    
    Parameters:
    ----------
    in_array: np.array of size [map_size[0], map_size[1], :]
    
    Return:
    -------
    food: [{"x": int, "y": int}]
    '''
    food = []
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



source/RLlibEnv/inference/inference_src/heuristics.py [33:45]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        '''
        Helper function that converts a food matrix into a list of coordinates 
        containing food

        Parameters:
        ----------
        in_array: np.array of size [map_size[0], map_size[1], :]

        Return:
        -------
        food: [{"x": int, "y": int}]
        '''
        food = []
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



