/usr/include/gretl/libgretl.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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 | /*
* 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/>.
*
*/
#ifndef LIBGRETL_H
#define LIBGRETL_H
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#ifdef WIN32
# include "winconfig.h"
#endif
#ifdef HAVE_VASPRINTF
# define _GNU_SOURCE
# include <stdio.h>
# undef _GNU_SOURCE
#else
# include <stdio.h>
#endif
#include <stdlib.h>
#include <ctype.h>
#include <math.h>
#include <limits.h>
#include <zlib.h>
#include <glib.h>
#ifdef FULL_XML_HEADERS
# include <libxml/xmlmemory.h>
# include <libxml/parser.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif
#ifdef WIN32
# ifndef isnan
# define isnan(x) ((x) != (x))
# endif
#endif
#define YMD_READ_FMT "%d-%d-%d"
#define YMD_WRITE_FMT "%d-%02d-%02d"
#define YMD_WRITE_Y2_FMT "%02d-%02d-%02d"
#define YMD_WRITE_Y4_FMT "%04d-%02d-%02d"
#ifdef ENABLE_NLS
# include "libintl.h"
# include "locale.h"
# define gettext_noop(String) String
# define _(String) gettext (String)
# define N_(String) gettext_noop (String)
# define I_(String) iso_gettext (String)
# define A_(String) alt_gettext (String)
#else
# define _(String) ((char *) String)
# define N_(String) String
# define I_(String) ((char *) String)
# define A_(String) ((char *) String)
#endif /* ENABLE_NLS */
#define MAXLINE 32768 /* maximum length of command line */
#define MAXLABEL 128 /* maximum length of descriptive labels for variables */
#define MAXLEN 512 /* max length of regular "long" strings */
#define MAXDISP 32 /* max length of "display names" for variables */
#define VNAMELEN 32 /* space allocated for var names (including termination) */
#define OBSLEN 16 /* space allocated for obs strings (including termination) */
#ifndef M_PI
# define M_PI 3.1415926535897932384626432
#endif
#ifndef M_2PI
# define M_2PI 6.2831853071795864769252864
#endif
#define SQRT_2_PI 2.506628274631000502415765284811
#define LN_2_PI 1.837877066409345483560659472811
#define LN_SQRT_2_PI 0.918938533204672741780329736406
#define PMAX_NOT_AVAILABLE 666
/* numbers smaller than the given limit will print as zero */
#define screen_zero(x) ((fabs(x) > 1.0e-13)? x : 0.0)
typedef enum {
GRETL_TYPE_NONE,
GRETL_TYPE_BOOL,
GRETL_TYPE_INT,
GRETL_TYPE_OBS,
GRETL_TYPE_LIST,
GRETL_TYPE_DOUBLE,
GRETL_TYPE_INT_ARRAY,
GRETL_TYPE_DOUBLE_ARRAY,
GRETL_TYPE_STRING,
GRETL_TYPE_CMPLX_ARRAY,
GRETL_TYPE_SERIES,
GRETL_TYPE_MATRIX,
GRETL_TYPE_STRUCT,
GRETL_TYPE_SCALAR_REF,
GRETL_TYPE_SERIES_REF,
GRETL_TYPE_MATRIX_REF,
GRETL_TYPE_USERIES,
GRETL_TYPE_DATE,
GRETL_TYPE_BUNDLE,
GRETL_TYPE_BUNDLE_REF,
GRETL_TYPE_ARRAY,
GRETL_TYPE_ARRAY_REF,
GRETL_TYPE_STRINGS,
GRETL_TYPE_MATRICES,
GRETL_TYPE_BUNDLES,
GRETL_TYPE_LISTS,
GRETL_TYPE_STRINGS_REF,
GRETL_TYPE_MATRICES_REF,
GRETL_TYPE_BUNDLES_REF,
GRETL_TYPE_LISTS_REF,
GRETL_TYPE_VOID,
GRETL_TYPE_ANY
} GretlType;
#define gretl_scalar_type(t) (t == GRETL_TYPE_BOOL || \
t == GRETL_TYPE_INT || \
t == GRETL_TYPE_OBS || \
t == GRETL_TYPE_DOUBLE)
#define gretl_ref_type(t) (t == GRETL_TYPE_SCALAR_REF || \
t == GRETL_TYPE_SERIES_REF || \
t == GRETL_TYPE_MATRIX_REF || \
t == GRETL_TYPE_BUNDLE_REF || \
t == GRETL_TYPE_STRINGS_REF || \
t == GRETL_TYPE_MATRICES_REF || \
t == GRETL_TYPE_BUNDLES_REF || \
t == GRETL_TYPE_LISTS_REF)
#define gretl_array_type(t) (t == GRETL_TYPE_STRINGS || \
t == GRETL_TYPE_MATRICES || \
t == GRETL_TYPE_BUNDLES || \
t == GRETL_TYPE_LISTS)
enum ts_codes {
CROSS_SECTION,
TIME_SERIES,
STACKED_TIME_SERIES,
STACKED_CROSS_SECTION,
PANEL_UNKNOWN,
SPECIAL_TIME_SERIES,
STRUCTURE_UNKNOWN
};
enum progress_flags {
SP_NONE,
SP_TOTAL,
SP_LOAD_INIT,
SP_SAVE_INIT,
SP_FONT_INIT,
SP_UPDATER_INIT,
SP_FINISH
};
enum progress_return_flags {
SP_RETURN_OK,
SP_RETURN_DONE,
SP_RETURN_CANCELED
};
enum test_stats {
GRETL_STAT_NONE,
GRETL_STAT_NORMAL_CHISQ,
GRETL_STAT_LM,
GRETL_STAT_F,
GRETL_STAT_LMF,
GRETL_STAT_HARVEY_COLLIER,
GRETL_STAT_RESET,
GRETL_STAT_LR,
GRETL_STAT_WALD_CHISQ,
GRETL_STAT_SUP_WALD,
GRETL_STAT_Z,
GRETL_STAT_LB_CHISQ,
GRETL_STAT_WF
};
typedef enum {
OPT_NONE = 0,
OPT_A = 1 << 0,
OPT_B = 1 << 1,
OPT_C = 1 << 2,
OPT_D = 1 << 3,
OPT_E = 1 << 4,
OPT_F = 1 << 5,
OPT_G = 1 << 6,
OPT_H = 1 << 7,
OPT_I = 1 << 8,
OPT_J = 1 << 9,
OPT_K = 1 << 10,
OPT_L = 1 << 11,
OPT_M = 1 << 12,
OPT_N = 1 << 13,
OPT_O = 1 << 14,
OPT_P = 1 << 15,
OPT_Q = 1 << 16,
OPT_R = 1 << 17,
OPT_S = 1 << 18,
OPT_T = 1 << 19,
OPT_U = 1 << 20,
OPT_V = 1 << 21,
OPT_W = 1 << 22,
OPT_X = 1 << 23,
OPT_Z = 1 << 24,
OPT_Y = 1 << 25,
OPT_UNSET = 1 << 30
} gretlopt;
typedef enum {
OP_EQ = '=',
OP_GT = '>',
OP_LT = '<',
OP_NEQ = 21,
OP_GTE = 22,
OP_LTE = 23
} GretlOp;
typedef enum {
C_AIC,
C_BIC,
C_HQC,
C_MAX
} ModelSelCriteria;
typedef enum {
FC_STATIC,
FC_DYNAMIC,
FC_AUTO,
FC_KSTEP
} ForecastMethod;
#ifndef CMPLX
typedef struct _cmplx {
double r;
double i;
} cmplx;
#endif
typedef struct GRETL_VAR_ GRETL_VAR;
typedef struct _FITRESID FITRESID;
typedef struct model_data_item_ model_data_item;
typedef struct ModelTest_ ModelTest;
typedef struct equation_system_ equation_system;
/**
* VARINFO:
*
* Holds extended private information on an individual data series.
*/
typedef struct VARINFO_ VARINFO;
/* information on data set */
typedef struct DATASET_ {
int v; /* number of variables */
int n; /* number of observations */
int pd; /* periodicity or frequency of data */
int structure; /* time series, cross section or whatever */
double sd0; /* float representation of stobs */
int t1, t2; /* start and end of current sample */
char stobs[OBSLEN]; /* string representation of starting obs (date) */
char endobs[OBSLEN]; /* string representation of ending obs */
double **Z; /* data array */
char **varname; /* array of names of variables */
VARINFO **varinfo; /* array of specific info on vars */
char markers; /* NO_MARKERS (0), REGULAR MARKERS or DAILY_DATE_STRINGS */
char modflag; /* binary flag for dataset modified or not */
char **S; /* to hold observation markers */
char *descrip; /* to hold info on data sources etc. */
char *submask; /* subsampling mask */
char *restriction; /* record of sub-sampling restriction */
char *padmask; /* record of padding to re-balance panel data */
unsigned int rseed; /* resampling seed */
int auxiliary; /* = 0 for regular dataset, 1 for aux dataset */
char *pangrps; /* panel-only: name of series holding group names */
int panel_pd; /* panel-only: panel time-series frequency */
double panel_sd0; /* panel-only: time-series start */
} DATASET;
typedef struct VMatrix_ {
int ci;
int dim;
int t1, t2, n;
char **names;
double *vec;
double *xbar;
double *ssx;
int *list;
int missing;
} VMatrix;
typedef struct SAMPLE_ {
int t1;
int t2;
unsigned int rseed;
} SAMPLE;
typedef struct ARINFO_ {
int *arlist; /* list of autoreg lags */
double *rho; /* array of autoreg. coeffs. */
double *sderr; /* and their standard errors */
} ARINFO;
/* struct to hold model results */
typedef struct MODEL_ {
int ID; /* ID number for model */
int refcount; /* for saving/deleting */
int ci; /* "command index" -- estimation method */
gretlopt opt; /* record of options */
int t1, t2, nobs; /* starting observation, ending
observation, and number of obs */
char *submask; /* keep track of sub-sample in force
when model was estimated */
char *missmask; /* missing observations mask */
SAMPLE smpl; /* numeric start and end of current sample
when model was estimated */
int full_n; /* full length of dataset on estimation */
int ncoeff, dfn, dfd; /* number of coefficents; degrees of
freedom in numerator and denominator */
int *list; /* list of variables by ID number */
int ifc; /* = 1 if the equation includes a constant,
else = 0 */
int nwt; /* ID number of the weight variable (WLS) */
int aux; /* code representing the sort of
auxiliary regression this is (or not) */
double *coeff; /* array of coefficient estimates */
double *sderr; /* array of estimated std. errors */
double *uhat; /* regression residuals */
double *yhat; /* fitted values from regression */
double *xpx; /* X'X matrix, in packed form */
double *vcv; /* VCV matrix for coefficient estimates */
double ess, tss; /* Error and Total Sums of Squares */
double sigma; /* Standard error of regression */
double rsq, adjrsq; /* Unadjusted and adjusted R^2 */
double fstt; /* overall F-statistic */
double chisq; /* overall chi-square statistic */
double lnL; /* log-likelihood */
double ybar, sdy; /* mean and std. dev. of dependent var. */
double criterion[C_MAX]; /* array of model selection statistics */
double dw, rho; /* Durbin-Watson stat. and estimated 1st
order autocorrelation coefficient */
ARINFO *arinfo; /* pointer to struct to hold special info for
autoregressive model */
int errcode; /* Error code in case of failure */
char *name; /* for use in GUI */
char *depvar; /* name of dependent var in special cases */
int nparams; /* number of named model parameters */
char **params; /* for named model parameters */
gint64 esttime; /* time of estimation */
int ntests; /* number of attached test results */
ModelTest *tests; /* attached hypothesis test results */
DATASET *dataset; /* for handling models estimated on a
sub-sampled portion of the dataset */
int n_data_items; /* number of extra data items */
model_data_item **data_items; /* pointer to additional data */
} MODEL;
#include "gretl_commands.h"
#include "gretl_prn.h"
#include "gretl_errors.h"
#include "interact.h"
#include "dataset.h"
#include "estimate.h"
#include "genmain.h"
#include "genfuncs.h"
#include "compare.h"
#include "gretl_bundle.h"
#include "gretl_array.h"
#include "gretl_intl.h"
#include "gretl_list.h"
#include "gretl_paths.h"
#include "gretl_utils.h"
#include "gretl_model.h"
#include "pvalues.h"
#include "dataio.h"
#include "gretl_data_io.h"
#include "strutils.h"
#include "describe.h"
#include "printout.h"
#include "printscan.h"
#include "modelprint.h"
#include "graphing.h"
#include "random.h"
#include "nonparam.h"
#include "options.h"
#include "discrete.h"
#include "adf_kpss.h"
#include "subsample.h"
#include "calendar.h"
#include "plugins.h"
#include "nls.h"
#include "missing.h"
#include "transforms.h"
#ifdef __cplusplus
}
#endif
#endif /* LIBGRETL_H */
|