Adding some comments

This commit is contained in:
Denis Nuțiu 2016-12-11 16:27:27 +02:00
parent 84763356da
commit d211265687

View file

@ -28,7 +28,6 @@ void fatal(const char * msg);
int rows; int rows;
int cols; int cols;
// Config settings.
config_t configuration; config_t configuration;
config_setting_t * cfg_setting; config_setting_t * cfg_setting;
unsigned ** testM; unsigned ** testM;
@ -281,6 +280,7 @@ int main(void) {
if ( cfg_setting != NULL ) { if ( cfg_setting != NULL ) {
int wall_count = config_setting_length(cfg_setting); int wall_count = config_setting_length(cfg_setting);
/* For each wall */
for (int i = 0; i < wall_count; ++i) { for (int i = 0; i < wall_count; ++i) {
config_setting_t * wall_setting = config_setting_get_elem(cfg_setting, i); config_setting_t * wall_setting = config_setting_get_elem(cfg_setting, i);
int wall_row = 0; int wall_row = 0;
@ -308,6 +308,7 @@ int main(void) {
} }
int val = 0; int val = 0;
/* For each timer */
for (unsigned i = 0; i < rows; ++i) { for (unsigned i = 0; i < rows; ++i) {
for (unsigned j = 0; j < cols; ++j) { for (unsigned j = 0; j < cols; ++j) {
val = config_setting_get_int_elem(cfg_setting, timer_idx); val = config_setting_get_int_elem(cfg_setting, timer_idx);
@ -319,6 +320,7 @@ int main(void) {
fatal("Timer settings not found!"); fatal("Timer settings not found!");
} }
/* Solve the matrix */
print_matrix(testM); print_matrix(testM);
int solution_found = solve_mat(start_col, start_row); int solution_found = solve_mat(start_col, start_row);
printf("Matrix solved? %s\n", solution_found ? "yes" : "no"); printf("Matrix solved? %s\n", solution_found ? "yes" : "no");