aboutsummaryrefslogtreecommitdiffstats
path: root/src/random_heuristic.c
blob: 4e3e47f6052b942fba51505cb57a1632bcace123 (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <stdlib.h>
#include "random_heuristic.h"
#include "structs.h"
#include "common.h"

struct front_item * random_heuristic(struct data * d) {
  
  return NULL;
}