From e989ec94a36fc089a819e9996a82cda456d0895f Mon Sep 17 00:00:00 2001 From: Manuel Bucher <manuel.bucher@hu-berlin.de> Date: Mon, 25 Jun 2018 09:18:52 +0200 Subject: [PATCH] fixed spelling mistake --- loesung.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/loesung.c b/loesung.c index ea40b12..0f4b400 100755 --- a/loesung.c +++ b/loesung.c @@ -308,7 +308,7 @@ void hk_print(Field *this) { Tile *t = this->tiles; for (uint32_t i = 1; i < this->num_tiles; i++) { if (t[i].pair == 0) { - // Es ex. nur eine Belegung, wenn alle Knoten gemached wurden + // Es ex. nur eine Belegung, wenn alle Knoten gematched wurden printf("None\n"); return; } @@ -316,7 +316,7 @@ void hk_print(Field *this) { for (uint32_t i = 1; i < this->num_tiles; i++) { if (tile_odd(&t[i])) continue; - // Gebe nur den machingpartner von der Haelfte der Knoten aus um + // Gebe nur den matchingpartner von der Haelfte der Knoten aus um // Doppelungen zu vermeiden uint32_t p = t[i].pair; printf("%u %u;%u %u\n", t[i].x, t[i].y, t[p].x, t[p].y); @@ -328,7 +328,7 @@ void hk(Field *this) { for (uint32_t i = 1; i < this->num_tiles; i++) { if (tile_odd(&this->tiles[i])) continue; - // Starte Augmentation nur von Knoten, die noch nicht gemached sind + // Starte Augmentation nur von Knoten, die noch nicht gematched sind if (this->tiles[i].pair == 0) hk_dfs(this, i); } -- GitLab