HW3: preparing for submission
This commit is contained in:
parent
6c6a445831
commit
c0a0639105
1 changed files with 11 additions and 0 deletions
|
@ -1,5 +1,16 @@
|
||||||
// vim: set ts=4 sw=4 et tw=80:
|
// vim: set ts=4 sw=4 et tw=80:
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Assignment 3 - Chess paths
|
||||||
|
* Claudio Maggioni
|
||||||
|
*
|
||||||
|
* No external source was used as parts of code or as an inspiration for the
|
||||||
|
* overall algorithm.
|
||||||
|
*
|
||||||
|
* The flag DEBUG, if defined, activates some debug messages printe on stdout.
|
||||||
|
* This is disabled to comply with tests.
|
||||||
|
*/
|
||||||
|
|
||||||
#include "chess_paths.h"
|
#include "chess_paths.h"
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
Reference in a new issue