Function

NumCosmoMathcfg_init_full_ptr

Declaration [src]

void
ncm_cfg_init_full_ptr (
  gint* argc,
  gchar*** argv
)

Description [src]

Main library configuration function. Must be called before any other function of NumCosmo.

Initializes internal variables and sets all other library number of threads to one. This function passes the arguments to other libraries, e.g, MPI. If that is not necessary ncm_cfg_init() should be used. This version should be used from C applications passing argc and argv pointers from main.

See also: ncm_cfg_init() ncm_cfg_init_full().

Parameters

argc

Type: gint*

A pointer to argc.

The data is owned by the caller of the function.
argv

Type: An array of gchar**

A pointer to argv.

The length of the array is specified in the argc argument.
The data is owned by the caller of the function.
Each element is a NUL terminated UTF-8 string.