Skip to content

Commit 3a3a527

Browse files
committed
Make all the code GPLv3
1 parent db03170 commit 3a3a527

34 files changed

+1142
-183
lines changed

COPYING

Lines changed: 674 additions & 0 deletions
Large diffs are not rendered by default.

LICENCE

Lines changed: 0 additions & 21 deletions
This file was deleted.

src/Makefile

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
# NEEMP - Makefile
2-
# by Tomas Racek (tom@krab1k.net)
3-
# 2013, 2014
4-
51
CC=icc
62
CFLAGS=-Wall -Wcheck -Wremarks -std=c99 -g -Ofast -ipo -Xhost -wd981 -qopenmp
73
# -wd981 disables warning about operands evaluated in an unspecified order

src/bitarray.c

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
1-
/*
2-
* NEEMP - bitarray.c
1+
/* Copyright 2013-2016 Tomas Racek (tom@krab1k.net)
32
*
4-
* by Tomas Racek (tom@krab1k.net)
5-
* 2013, 2014
3+
* This file is part of NEEMP.
64
*
7-
* */
5+
* NEEMP is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* NEEMP is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with NEEMP. If not, see <http://www.gnu.org/licenses/>.
17+
*/
818

919
#include <assert.h>
1020
#include <stdlib.h>

src/bitarray.h

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
1-
/*
2-
* NEEMP - bitarray.h
1+
/* Copyright 2013-2016 Tomas Racek (tom@krab1k.net)
32
*
4-
* by Tomas Racek (tom@krab1k.net)
5-
* 2013, 2014
3+
* This file is part of NEEMP.
64
*
7-
* */
5+
* NEEMP is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* NEEMP is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with NEEMP. If not, see <http://www.gnu.org/licenses/>.
17+
*/
818

919
#ifndef __BITARRAY_H__
1020
#define __BITARRAY_H__

src/config.h

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
1-
/*
2-
* NEEMP - config.h
1+
/* Copyright 2013-2016 Tomas Racek (tom@krab1k.net)
32
*
4-
* by Tomas Racek (tom@krab1k.net)
5-
* 2013, 2014
3+
* This file is part of NEEMP.
64
*
7-
* */
5+
* NEEMP is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* NEEMP is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with NEEMP. If not, see <http://www.gnu.org/licenses/>.
17+
*/
818

919
#ifndef __CONFIG_H__
1020
#define __CONFIG_H__

src/diffevolution.c

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
1-
/*
2-
* NEEMP - diffevolution.c
1+
/* Copyright 2013-2016 Jana Pazurikova (pazurikova@ics.muni.cz)
32
*
4-
* by Jana Pazurikova (pazurikova@ics.muni.cz)
5-
* 2016
3+
* This file is part of NEEMP.
64
*
7-
* */
5+
* NEEMP is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* NEEMP is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with NEEMP. If not, see <http://www.gnu.org/licenses/>.
17+
*/
818

919
#include <assert.h>
1020
#include <math.h>

src/diffevolution.h

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
1-
/*
2-
* NEEMP - diffevolution.h
1+
/* Copyright 2013-2016 Jana Pazurikova (pazurikova@ics.muni.cz)
32
*
4-
* by Jana Pazurikova (pazurikova@ics.muni.cz)
5-
* 2016
3+
* This file is part of NEEMP.
64
*
7-
* */
5+
* NEEMP is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* NEEMP is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with NEEMP. If not, see <http://www.gnu.org/licenses/>.
17+
*/
818

919
#ifndef __DIFFEVOLUTION_H__
1020
#define __DIFFEVOLUTION_H__

src/discard.c

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
1-
/*
2-
* NEEMP - discard.c
1+
/* Copyright 2013-2016 Tomas Racek (tom@krab1k.net)
32
*
4-
* by Tomas Racek (tom@krab1k.net)
5-
* 2013, 2014
3+
* This file is part of NEEMP.
64
*
7-
* */
5+
* NEEMP is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* NEEMP is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with NEEMP. If not, see <http://www.gnu.org/licenses/>.
17+
*/
818

919
#include <assert.h>
1020
#include <stdio.h>

src/discard.h

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
1-
/*
2-
* NEEMP - discard.h
1+
/* Copyright 2013-2016 Tomas Racek (tom@krab1k.net)
32
*
4-
* by Tomas Racek (tom@krab1k.net)
5-
* 2013, 2014
3+
* This file is part of NEEMP.
64
*
7-
* */
5+
* NEEMP is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* NEEMP is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with NEEMP. If not, see <http://www.gnu.org/licenses/>.
17+
*/
818

919
#ifndef __DISCARD_H__
1020
#define __DISCARD_H__

src/eem.c

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
1-
/*
2-
* NEEMP - eem.c
1+
/* Copyright 2013-2016 Tomas Racek (tom@krab1k.net)
32
*
4-
* by Tomas Racek (tom@krab1k.net)
5-
* 2013, 2014
3+
* This file is part of NEEMP.
64
*
7-
* */
5+
* NEEMP is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* NEEMP is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with NEEMP. If not, see <http://www.gnu.org/licenses/>.
17+
*/
818

919
#define _POSIX_C_SOURCE 200112L
1020

src/eem.h

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
1-
/*
2-
* NEEMP - eem.h
1+
/* Copyright 2013-2016 Tomas Racek (tom@krab1k.net)
32
*
4-
* by Tomas Racek (tom@krab1k.net)
5-
* 2013, 2014
3+
* This file is part of NEEMP.
64
*
7-
* */
5+
* NEEMP is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* NEEMP is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with NEEMP. If not, see <http://www.gnu.org/licenses/>.
17+
*/
818

919
#ifndef __EEM_H__
1020
#define __EEM_H__

src/guidedmin.c

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
1-
/*
2-
* NEEMP - guidedmin.c
1+
/* Copyright 2013-2016 Jana Pazurikova (pazurikova@ics.muni.cz)
32
*
4-
* by Jana Pazurikova (pazurikova@ics.muni.cz)
5-
* 2016
3+
* This file is part of NEEMP.
64
*
7-
* */
5+
* NEEMP is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* NEEMP is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with NEEMP. If not, see <http://www.gnu.org/licenses/>.
17+
*/
818

919
#include <assert.h>
1020
#include <math.h>

src/guidedmin.h

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
1-
/*
2-
* NEEMP - guidedmin.h
1+
/* Copyright 2013-2016 Jana Pazurikova (pazurikova@ics.muni.cz)
32
*
4-
* by Jana Pazurikova (pazurikova@ics.muni.cz)
5-
* 2016
3+
* This file is part of NEEMP.
64
*
7-
* */
5+
* NEEMP is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* NEEMP is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with NEEMP. If not, see <http://www.gnu.org/licenses/>.
17+
*/
818

919
#ifndef __GUIDEDMIN_H__
1020
#define __GUIDEDMIN_H__

src/io.c

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
1-
/*
2-
* NEEMP - io.c
1+
/* Copyright 2013-2016 Tomas Racek (tom@krab1k.net)
32
*
4-
* by Tomas Racek (tom@krab1k.net)
5-
* 2013, 2014
3+
* This file is part of NEEMP.
64
*
7-
* */
5+
* NEEMP is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* NEEMP is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with NEEMP. If not, see <http://www.gnu.org/licenses/>.
17+
*/
818

919
#include <assert.h>
1020
#include <libxml/parser.h>

src/io.h

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
1-
/*
2-
* NEEMP - io.h
1+
/* Copyright 2013-2016 Tomas Racek (tom@krab1k.net)
32
*
4-
* by Tomas Racek (tom@krab1k.net)
5-
* 2013, 2014
3+
* This file is part of NEEMP.
64
*
7-
* */
5+
* NEEMP is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* NEEMP is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with NEEMP. If not, see <http://www.gnu.org/licenses/>.
17+
*/
818

919
#ifndef __IO_H__
1020
#define __IO_H__

src/kappa.c

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
1-
/*
2-
* NEEMP - kappa.c
1+
/* Copyright 2013-2016 Tomas Racek (tom@krab1k.net)
32
*
4-
* by Tomas Racek (tom@krab1k.net)
5-
* 2013, 2014
3+
* This file is part of NEEMP.
64
*
7-
* */
5+
* NEEMP is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* NEEMP is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with NEEMP. If not, see <http://www.gnu.org/licenses/>.
17+
*/
818

919
#include <assert.h>
1020
#include <math.h>

0 commit comments

Comments
 (0)