aboutsummaryrefslogtreecommitdiffstats
path: root/hungarian.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2012-11-07 22:11:26 +0100
committerMattias Andrée <maandree@operamail.com>2012-11-07 22:11:26 +0100
commit848617bf1ea11792b3fe7d0dd08ce80bde3ccec5 (patch)
tree26249e10f2f27ea5251c5b266f374f0b2e46a284 /hungarian.c
parentconflict resolve (diff)
downloadhungarian-algorithm-n3-848617bf1ea11792b3fe7d0dd08ce80bde3ccec5.tar.gz
hungarian-algorithm-n3-848617bf1ea11792b3fe7d0dd08ce80bde3ccec5.tar.bz2
hungarian-algorithm-n3-848617bf1ea11792b3fe7d0dd08ce80bde3ccec5.tar.xz
typo
Diffstat (limited to 'hungarian.c')
-rw-r--r--hungarian.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hungarian.c b/hungarian.c
index f0bb446..fc44b64 100644
--- a/hungarian.c
+++ b/hungarian.c
@@ -226,7 +226,7 @@ void print(cell** t, long n, long m, long** assignment)
*
* @param table The table in which to perform the matching
* @param n The height of the table
- * @param h The width of the table
+ * @param m The width of the table
* @return The optimal assignment, an array of row–coloumn pairs
*/
long** kuhn_match(cell** table, long n, long m)