diff options
Diffstat (limited to '')
-rw-r--r-- | hungarian.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/hungarian.c b/hungarian.c index 7171cf3..90f9f64 100644 --- a/hungarian.c +++ b/hungarian.c @@ -1,3 +1,18 @@ +// -*- mode: c, coding: utf-8 -*- + +/** + * 𝓞(n³) implementation of the Hungarian algorithm + * + * Copyright (C) 2011 Mattias Andrée + * + * This program is free software. It comes without any warranty, to + * the extent permitted by applicable law. You can redistribute it + * and/or modify it under the terms of the Do What The Fuck You Want + * To Public License, Version 2, as published by Sam Hocevar. See + * http://sam.zoy.org/wtfpl/COPYING for more details. + */ + + #include <stdio.h> #include <stdlib.h> |