File tree Expand file tree Collapse file tree 34 files changed +1142
-183
lines changed Expand file tree Collapse file tree 34 files changed +1142
-183
lines changed Load Diff Large diffs are not rendered by default.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- # NEEMP - Makefile
2
- # by Tomas Racek (tom@krab1k.net)
3
- # 2013, 2014
4
-
5
1
CC =icc
6
2
CFLAGS =-Wall -Wcheck -Wremarks -std=c99 -g -Ofast -ipo -Xhost -wd981 -qopenmp
7
3
# -wd981 disables warning about operands evaluated in an unspecified order
Original file line number Diff line number Diff line change 1
- /*
2
- * NEEMP - bitarray.c
1
+ /* Copyright 2013-2016 Tomas Racek (tom@krab1k.net)
3
2
*
4
- * by Tomas Racek (tom@krab1k.net)
5
- * 2013, 2014
3
+ * This file is part of NEEMP.
6
4
*
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
+ */
8
18
9
19
#include <assert.h>
10
20
#include <stdlib.h>
Original file line number Diff line number Diff line change 1
- /*
2
- * NEEMP - bitarray.h
1
+ /* Copyright 2013-2016 Tomas Racek (tom@krab1k.net)
3
2
*
4
- * by Tomas Racek (tom@krab1k.net)
5
- * 2013, 2014
3
+ * This file is part of NEEMP.
6
4
*
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
+ */
8
18
9
19
#ifndef __BITARRAY_H__
10
20
#define __BITARRAY_H__
Original file line number Diff line number Diff line change 1
- /*
2
- * NEEMP - config.h
1
+ /* Copyright 2013-2016 Tomas Racek (tom@krab1k.net)
3
2
*
4
- * by Tomas Racek (tom@krab1k.net)
5
- * 2013, 2014
3
+ * This file is part of NEEMP.
6
4
*
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
+ */
8
18
9
19
#ifndef __CONFIG_H__
10
20
#define __CONFIG_H__
Original file line number Diff line number Diff line change 1
- /*
2
- * NEEMP - diffevolution.c
1
+ /* Copyright 2013-2016 Jana Pazurikova (pazurikova@ics.muni.cz)
3
2
*
4
- * by Jana Pazurikova (pazurikova@ics.muni.cz)
5
- * 2016
3
+ * This file is part of NEEMP.
6
4
*
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
+ */
8
18
9
19
#include <assert.h>
10
20
#include <math.h>
Original file line number Diff line number Diff line change 1
- /*
2
- * NEEMP - diffevolution.h
1
+ /* Copyright 2013-2016 Jana Pazurikova (pazurikova@ics.muni.cz)
3
2
*
4
- * by Jana Pazurikova (pazurikova@ics.muni.cz)
5
- * 2016
3
+ * This file is part of NEEMP.
6
4
*
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
+ */
8
18
9
19
#ifndef __DIFFEVOLUTION_H__
10
20
#define __DIFFEVOLUTION_H__
Original file line number Diff line number Diff line change 1
- /*
2
- * NEEMP - discard.c
1
+ /* Copyright 2013-2016 Tomas Racek (tom@krab1k.net)
3
2
*
4
- * by Tomas Racek (tom@krab1k.net)
5
- * 2013, 2014
3
+ * This file is part of NEEMP.
6
4
*
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
+ */
8
18
9
19
#include <assert.h>
10
20
#include <stdio.h>
Original file line number Diff line number Diff line change 1
- /*
2
- * NEEMP - discard.h
1
+ /* Copyright 2013-2016 Tomas Racek (tom@krab1k.net)
3
2
*
4
- * by Tomas Racek (tom@krab1k.net)
5
- * 2013, 2014
3
+ * This file is part of NEEMP.
6
4
*
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
+ */
8
18
9
19
#ifndef __DISCARD_H__
10
20
#define __DISCARD_H__
Original file line number Diff line number Diff line change 1
- /*
2
- * NEEMP - eem.c
1
+ /* Copyright 2013-2016 Tomas Racek (tom@krab1k.net)
3
2
*
4
- * by Tomas Racek (tom@krab1k.net)
5
- * 2013, 2014
3
+ * This file is part of NEEMP.
6
4
*
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
+ */
8
18
9
19
#define _POSIX_C_SOURCE 200112L
10
20
Original file line number Diff line number Diff line change 1
- /*
2
- * NEEMP - eem.h
1
+ /* Copyright 2013-2016 Tomas Racek (tom@krab1k.net)
3
2
*
4
- * by Tomas Racek (tom@krab1k.net)
5
- * 2013, 2014
3
+ * This file is part of NEEMP.
6
4
*
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
+ */
8
18
9
19
#ifndef __EEM_H__
10
20
#define __EEM_H__
Original file line number Diff line number Diff line change 1
- /*
2
- * NEEMP - guidedmin.c
1
+ /* Copyright 2013-2016 Jana Pazurikova (pazurikova@ics.muni.cz)
3
2
*
4
- * by Jana Pazurikova (pazurikova@ics.muni.cz)
5
- * 2016
3
+ * This file is part of NEEMP.
6
4
*
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
+ */
8
18
9
19
#include <assert.h>
10
20
#include <math.h>
Original file line number Diff line number Diff line change 1
- /*
2
- * NEEMP - guidedmin.h
1
+ /* Copyright 2013-2016 Jana Pazurikova (pazurikova@ics.muni.cz)
3
2
*
4
- * by Jana Pazurikova (pazurikova@ics.muni.cz)
5
- * 2016
3
+ * This file is part of NEEMP.
6
4
*
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
+ */
8
18
9
19
#ifndef __GUIDEDMIN_H__
10
20
#define __GUIDEDMIN_H__
Original file line number Diff line number Diff line change 1
- /*
2
- * NEEMP - io.c
1
+ /* Copyright 2013-2016 Tomas Racek (tom@krab1k.net)
3
2
*
4
- * by Tomas Racek (tom@krab1k.net)
5
- * 2013, 2014
3
+ * This file is part of NEEMP.
6
4
*
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
+ */
8
18
9
19
#include <assert.h>
10
20
#include <libxml/parser.h>
Original file line number Diff line number Diff line change 1
- /*
2
- * NEEMP - io.h
1
+ /* Copyright 2013-2016 Tomas Racek (tom@krab1k.net)
3
2
*
4
- * by Tomas Racek (tom@krab1k.net)
5
- * 2013, 2014
3
+ * This file is part of NEEMP.
6
4
*
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
+ */
8
18
9
19
#ifndef __IO_H__
10
20
#define __IO_H__
Original file line number Diff line number Diff line change 1
- /*
2
- * NEEMP - kappa.c
1
+ /* Copyright 2013-2016 Tomas Racek (tom@krab1k.net)
3
2
*
4
- * by Tomas Racek (tom@krab1k.net)
5
- * 2013, 2014
3
+ * This file is part of NEEMP.
6
4
*
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
+ */
8
18
9
19
#include <assert.h>
10
20
#include <math.h>
You can’t perform that action at this time.
0 commit comments