From 0e711b50d648fd724a9c09da7f1f0317fdeb269f Mon Sep 17 00:00:00 2001 From: Henrik Rydberg Date: Sat, 30 Jan 2010 15:03:39 +0100 Subject: License and credits resolved All files are tagged as GPL, and a CREDIT file created with references to the synaptics X driver and the matching code, under their respective MIT and BSD licenses. --- match/match.c | 31 +++++++++++++++++++++++++++++-- match/match.h | 21 +++++++++++++++++++++ match/test.c | 21 +++++++++++++++++++++ 3 files changed, 71 insertions(+), 2 deletions(-) (limited to 'match') diff --git a/match/match.c b/match/match.c index 0080ee6..ebeadcd 100644 --- a/match/match.c +++ b/match/match.c @@ -1,11 +1,38 @@ +/*************************************************************************** + * + * Multitouch X driver + * Copyright (C) 2008 Henrik Rydberg + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + **************************************************************************/ + #include "match.h" #include #include /** - * MATLAB implementation of the hungarian algorithm (2008) + * Bitmap implementation of the hungarian algorithm (GPL license) + * + * Copyright (C) 2008 Henrik Rydberg + * + * Based on code released by Markus Buehren (2004) (BSD license) + * + * Copyright (C) 2004, Markus Buehren. All rights reserved. + * See CREDITS file for full license terms. * - * modified by Henrik Rydberg (2008) */ typedef unsigned short col_t[1]; diff --git a/match/match.h b/match/match.h index 8936de4..61ac72d 100644 --- a/match/match.h +++ b/match/match.h @@ -1,3 +1,24 @@ +/*************************************************************************** + * + * Multitouch X driver + * Copyright (C) 2008 Henrik Rydberg + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + **************************************************************************/ + #ifndef MATCHER_H #define MATCHER_H diff --git a/match/test.c b/match/test.c index c65e581..e60e19a 100644 --- a/match/test.c +++ b/match/test.c @@ -1,3 +1,24 @@ +/*************************************************************************** + * + * Multitouch X driver + * Copyright (C) 2008 Henrik Rydberg + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + **************************************************************************/ + #include #include #include "match.c" -- cgit v1.2.3