HW3: preparing for submission

This commit is contained in:
Claudio Maggioni 2019-12-10 16:55:58 +01:00
parent 6c6a445831
commit c0a0639105
1 changed files with 11 additions and 0 deletions

View File

@ -1,5 +1,16 @@
// 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 <assert.h>
#include <stdlib.h>