CSP.c 497 Bytes
/*
 * CSP.c
 *
 *  Created on: 05/12/2015
 *      Author: pedro
 */

#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"
void load_and_solve_CSP(int* csp_dims) {
	printf("Please implement a CSP in \"CSP.c\" file.\n");

}
#pragma GCC diagnostic pop