Fix license notice of qmc_sequence MEX

time-shift
Sébastien Villemot 2011-12-26 15:24:29 +01:00
parent 1d4301bd97
commit a1c466a3bb
4 changed files with 53 additions and 35 deletions

View File

@ -340,6 +340,24 @@ License: GPL-2+
along with this program. If not, see
<http://www.gnu.org/licenses/>.
Files: mex/sources/sobol/sobol.hh mex/sources/sobol/initialize_v_array.hh
mex/sources/sobol/initialize_v_array.inc
Copyright: 2009 John Burkardt
2010-2011 Dynare Team
License: LGPL-3+
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 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 Lesser General Public License for more details.
.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
Files: ms-sbvar/utilities_dw/*
Copyright: 1996-2011 Daniel Waggoner
License: GPL-3+

View File

@ -4,24 +4,22 @@ template<typename T> int initialize_v_array (int dim_max, int log_max, T **v)
**
** Original files downloaded from http://people.sc.fsu.edu/~burkardt/cpp_src/sobol/ (version 17-Feb-2009 09:46)
**
** Copyright (C) -2009 John Burkardt
** Copyright (C) 2010-2011 Dynare Team
** Copyright (C) 2009 John Burkardt
** Copyright (C) 2010-2011 Dynare Team
**
** This file is part of Dynare.
**
** Dynare is free software: you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** This program is free software: you can redistribute it and/or modify
** it under the terms of the GNU Lesser General Public License as published by
** the Free Software Foundation, either version 3 of the License, or
** (at your option) any later version.
**
** Dynare is distributed in the hope that it will be useful,
** 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.
** GNU Lesser General Public License for more details.
**
** You should have received a copy of the GNU Lesser General Public License
** along with this program. If not, see <http://www.gnu.org/licenses/>.
**
** You should have received a copy of the GNU General Public License
** along with Dynare. If not, see <http://www.gnu.org/licenses/>.
**
** AUTHOR(S): stephane DOT adjemian AT univ DASH lemans DOT fr
*/
{

View File

@ -1,3 +1,21 @@
/*
** Copyright (C) 2009 John Burkardt
** Copyright (C) 2010-2011 Dynare Team
**
** This program is free software: you can redistribute it and/or modify
** it under the terms of the GNU Lesser General Public License as published by
** the Free Software Foundation, either version 3 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 Lesser General Public License for more details.
**
** You should have received a copy of the GNU Lesser General Public License
** along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
for (int i = 0; i < dim_max; i++)
{
for (int j = 0; j < log_max; j++)

View File

@ -2,23 +2,21 @@
**
** Original files downloaded from http://people.sc.fsu.edu/~burkardt/cpp_src/sobol/ (version 17-Feb-2009 09:46)
**
** Copyright (C) 2009 John Burkardt
** Copiright (C) 2010-2011 Dynare Team
** Copyright (C) 2009 John Burkardt
** Copyright (C) 2010-2011 Dynare Team
**
** This file is part of Dynare.
**
** Dynare is free software: you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** This program is free software: you can redistribute it and/or modify
** it under the terms of the GNU Lesser General Public License as published by
** the Free Software Foundation, either version 3 of the License, or
** (at your option) any later version.
**
** Dynare is distributed in the hope that it will be useful,
** 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.
** GNU Lesser General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with Dynare. If not, see <http://www.gnu.org/licenses/>.
** You should have received a copy of the GNU Lesser General Public License
** along with this program. If not, see <http://www.gnu.org/licenses/>.
**
** AUTHOR(S): stephane DOT adjemian AT univ DASH lemans DOT fr
*/
@ -68,10 +66,6 @@ template<typename T> int bit_hi1(T n)
**
** Original files downloaded from http://people.sc.fsu.edu/~burkardt/cpp_src/sobol/ (version 17-Feb-2009 09:46)
**
** Copyright (C) 2009 John Burkardt
** Copiright (C) 2010-2011 Dynare Team
**
**
** Input, int or long long, the integer to be measured.
** N should be nonnegative. If N is nonpositive, BIT_HI1 will always be 0.
**
@ -120,9 +114,6 @@ template<typename T> int bit_lo0 ( T n )
**
** Original files downloaded from http://people.sc.fsu.edu/~burkardt/cpp_src/sobol/ (version 17-Feb-2009 09:46)
**
** Copyright (C) 2009 John Burkardt
** Copyright (C) 2010-2011 Dynare Team
**
** INPUTS
**
** Input, int N, the integer to be measured.
@ -152,10 +143,6 @@ template<typename T> T ixor ( T i, T j )
**
** Original files downloaded from http://people.sc.fsu.edu/~burkardt/cpp_src/sobol/ (version 17-Feb-2009 09:46)
**
** Copyright (C) 2009 John Burkardt
** Copiright (C) 2010-2011 Dynare Team
**
**
** INPUTS I, J, two integer to be exclusive OR-ed.
**
** OUTPUTS (integer) the exclusive OR of I and J.
@ -201,9 +188,6 @@ template<typename T1, typename T2> void next_sobol ( int dim_num, T1 *seed, T2 *
**
** Original files downloaded from http://people.sc.fsu.edu/~burkardt/cpp_src/sobol/ (version 17-Feb-2009 09:46)
**
** Copyright (C) 2009 John Burkardt
** Copyright (C) 2010-2011 Dynare Team
**
** Reference:
**
** IA Antonov, VM Saleev,