Blame view

src/csps/CSP.c 497 Bytes
94b2b13d   Pedro Roque   PHACT source
1
2
3
4
/*
 * CSP.c
 *
 *  Created on: 05/12/2015
4d26a735   Pedro Roque   Increased recogni...
5
 *      Author: pedro
94b2b13d   Pedro Roque   PHACT source
6
7
8
9
10
11
12
13
14
15
16
17
18
 */

#include "CSP.h"

#include <stdio.h>

/*
 * The CSP should be implemented in this function
 * its implementation should follow the examples of the CSPs implemented in src/csps folder inside each "run_'csp'" function
 */

#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wunused-parameter"
4d26a735   Pedro Roque   Increased recogni...
19
void load_and_solve_CSP(int* csp_dims) {
94b2b13d   Pedro Roque   PHACT source
20
21
22
23
	printf("Please implement a CSP in \"CSP.c\" file.\n");

}
#pragma GCC diagnostic pop