elpa_store_settings - Man Page

stores the setting of an elpa object

Synopsis

Fortran Interface

use elpa
class(elpa_t), pointer :: elpa

call elpa%store_settings (filename, error)

With the definitions of the input and output variables:

class(elpa_t)       elpa         returns an instance of the ELPA object

character(*)        filename:   The filename to be used for storing the settings
integer, optinal    error:      An error return code

C Interface

#include <elpa/elpa.h>
elpa_t handle;

void elpa_store_settings(elpa_t handle, const char *filename, int *error):

With the definitions of the input and output variables:

elpa_t handle:       The handle to the ELPA object
const char *filename: the filename to store the settings

int *error:           the error return code

Description

Stores all the settings of an ELPA object in a human readable form to a file specified via the filename parameter. The settings can later be restored with the elpa_load_settings(3) method.

See Also

elpa_load_setting(3)

Info

Tue Nov 13 2018 ELPA