diff options
author | Mattias Andrée <maandree@operamail.com> | 2012-11-07 18:12:40 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2012-11-07 18:12:40 +0100 |
commit | cd7f7fdcc4732faa90b2006dc3706852607bd023 (patch) | |
tree | 5762ba59dd8cd99c2374e36674d227f1e1b326ed /hungarian.c | |
parent | typo (diff) | |
download | hungarian-algorithm-n3-cd7f7fdcc4732faa90b2006dc3706852607bd023.tar.gz hungarian-algorithm-n3-cd7f7fdcc4732faa90b2006dc3706852607bd023.tar.bz2 hungarian-algorithm-n3-cd7f7fdcc4732faa90b2006dc3706852607bd023.tar.xz |
legal stuff
Diffstat (limited to 'hungarian.c')
-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> |