Skip to content

Commit 75b3d5c

Browse files
author
Johanni Brea
committed
add licence
1 parent 6dfa2e1 commit 75b3d5c

9 files changed

Lines changed: 28112 additions & 27978 deletions

File tree

COPYING

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

src/c/conditioning.c

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
// Copyright 2016 Johanni Brea <johannibrea@gmail.com>
2+
//
3+
// This file is part of prospectiveCoding.
4+
//
5+
// prospectiveCoding is free software: you can redistribute it and/or modify it under the
6+
// terms of the GNU General Public License as published by the Free Software
7+
// Foundation, either version 3 of the License, or (at your option) any later
8+
// version.
9+
//
10+
// prospectiveCoding is distributed in the hope that it will be useful, but WITHOUT ANY
11+
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
12+
// PARTICULAR PURPOSE. See the GNU General Public License for more details.
13+
//
14+
// You should have received a copy of the GNU General Public License along with
15+
// prospectiveCoding. If not, see http://www.gnu.org/licenses/.
16+
//
117
#include <stdio.h>
218
#include <time.h>
319
#include <gsl/gsl_rng.h>

src/c/helper.h

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

319
// time step for forward Euler integration

src/c/paramsConditioning.h

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
// Copyright 2016 Johanni Brea <johannibrea@gmail.com>
2+
//
3+
// This file is part of prospectiveCoding.
4+
//
5+
// prospectiveCoding is free software: you can redistribute it and/or modify it under the
6+
// terms of the GNU General Public License as published by the Free Software
7+
// Foundation, either version 3 of the License, or (at your option) any later
8+
// version.
9+
//
10+
// prospectiveCoding is distributed in the hope that it will be useful, but WITHOUT ANY
11+
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
12+
// PARTICULAR PURPOSE. See the GNU General Public License for more details.
13+
//
14+
// You should have received a copy of the GNU General Public License along with
15+
// prospectiveCoding. If not, see http://www.gnu.org/licenses/.
16+
//
117
#include <math.h>
218
#include <float.h>
319

src/c/paramsRampUp.h

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
// Copyright 2016 Johanni Brea <johannibrea@gmail.com>
2+
//
3+
// This file is part of prospectiveCoding.
4+
//
5+
// prospectiveCoding is free software: you can redistribute it and/or modify it under the
6+
// terms of the GNU General Public License as published by the Free Software
7+
// Foundation, either version 3 of the License, or (at your option) any later
8+
// version.
9+
//
10+
// prospectiveCoding is distributed in the hope that it will be useful, but WITHOUT ANY
11+
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
12+
// PARTICULAR PURPOSE. See the GNU General Public License for more details.
13+
//
14+
// You should have received a copy of the GNU General Public License along with
15+
// prospectiveCoding. If not, see http://www.gnu.org/licenses/.
16+
//
117
#include <math.h>
218
#include <gsl/gsl_rng.h>
319

src/c/paramsRecurrent.h

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
// Copyright 2016 Johanni Brea <johannibrea@gmail.com>
2+
//
3+
// This file is part of prospectiveCoding.
4+
//
5+
// prospectiveCoding is free software: you can redistribute it and/or modify it under the
6+
// terms of the GNU General Public License as published by the Free Software
7+
// Foundation, either version 3 of the License, or (at your option) any later
8+
// version.
9+
//
10+
// prospectiveCoding is distributed in the hope that it will be useful, but WITHOUT ANY
11+
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
12+
// PARTICULAR PURPOSE. See the GNU General Public License for more details.
13+
//
14+
// You should have received a copy of the GNU General Public License along with
15+
// prospectiveCoding. If not, see http://www.gnu.org/licenses/.
16+
//
117
#include <math.h>
218
#include <float.h>
319

src/c/rampUp.c

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
// Copyright 2016 Johanni Brea <johannibrea@gmail.com>
2+
//
3+
// This file is part of prospectiveCoding.
4+
//
5+
// prospectiveCoding is free software: you can redistribute it and/or modify it under the
6+
// terms of the GNU General Public License as published by the Free Software
7+
// Foundation, either version 3 of the License, or (at your option) any later
8+
// version.
9+
//
10+
// prospectiveCoding is distributed in the hope that it will be useful, but WITHOUT ANY
11+
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
12+
// PARTICULAR PURPOSE. See the GNU General Public License for more details.
13+
//
14+
// You should have received a copy of the GNU General Public License along with
15+
// prospectiveCoding. If not, see http://www.gnu.org/licenses/.
16+
//
117
#include <stdio.h>
218
#include <time.h>
319
#include <gsl/gsl_vector.h>

src/c/recurrent.c

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
// Copyright 2016 Johanni Brea <johannibrea@gmail.com>
2+
//
3+
// This file is part of prospectiveCoding.
4+
//
5+
// prospectiveCoding is free software: you can redistribute it and/or modify it under the
6+
// terms of the GNU General Public License as published by the Free Software
7+
// Foundation, either version 3 of the License, or (at your option) any later
8+
// version.
9+
//
10+
// prospectiveCoding is distributed in the hope that it will be useful, but WITHOUT ANY
11+
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
12+
// PARTICULAR PURPOSE. See the GNU General Public License for more details.
13+
//
14+
// You should have received a copy of the GNU General Public License along with
15+
// prospectiveCoding. If not, see http://www.gnu.org/licenses/.
16+
//
117
#include <stdio.h>
218
#include <time.h>
319
#include <gsl/gsl_rng.h>

0 commit comments

Comments
 (0)