aboutsummaryrefslogtreecommitdiff
path: root/voerbak/solvers.c
blob: 1d288f36a36061fb523d4c82e39171f9a8262d6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <string.h>
#include <stdio.h>

#include "board.h"
#include "voerbak.h"

#include "diewertje.h"

int cpuMove(Board* b, char* solver) {
	if (strcmp(solver, "diewertje") == 0) return diewertje(b);

	return 0;
}