dynare/mex/sources/sobol/initialize_v_array.hh

29 lines
1.0 KiB
C++

template<typename T>
int
initialize_v_array(int dim_max, int log_max, T **v)
/*
** This function initializes the v array used in the sobol routine.
**
** Original files downloaded from http://people.sc.fsu.edu/~burkardt/cpp_src/sobol/ (version 17-Feb-2009 09:46)
**
** Copyright © 2009 John Burkardt
** Copyright © 2010-2017 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 <https://www.gnu.org/licenses/>.
*/
{
#include "initialize_v_array.inc"
return 1;
}