/usr/include/gretl/monte_carlo.h is in libgretl1-dev 2016d-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | /*
* gretl -- Gnu Regression, Econometrics and Time-series Library
* Copyright (C) 2001 Allin Cottrell and Riccardo "Jack" Lucchetti
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
/* monte_carlo.h for gretl: handle command loops and conditionals */
#ifndef MONTE_CARLO_H
#define MONTE_CARLO_H
typedef struct LOOPSET_ LOOPSET;
int gretl_compiling_loop (void);
int gretl_execute_loop (void);
int ok_in_loop (int ci);
int gretl_loop_append_line (ExecState *s, DATASET *dset);
int gretl_loop_exec (ExecState *s, DATASET *dset, LOOPSET *loop);
void gretl_loop_destroy (LOOPSET *loop);
int model_is_in_loop (const MODEL *pmod);
int scalar_is_read_only_index (const char *name);
void loop_reset_genrs (LOOPSET *loop);
int get_loop_renaming (void);
#endif /* MONTE_CARLO_H */
|