1elpa_store_settings(3)     Library Functions Manual     elpa_store_settings(3)
2
3
4

NAME

6       elpa_store_settings - stores the setting of an elpa object
7
8

SYNOPSIS

10   FORTRAN INTERFACE
11       use elpa
12       class(elpa_t), pointer :: elpa
13
14       call elpa%store_settings (filename, error)
15
16       With the definitions of the input and output variables:
17
18       class(elpa_t)       elpa         returns an instance of the ELPA object
19              character(*)        filename:   The filename to be used for
20              storing the settings
21              integer, optinal    error:      An error return code
22
23
24   C INTERFACE
25       #include <elpa/elpa.h>
26       elpa_t handle;
27
28       void elpa_store_settings(elpa_t handle, const char *filename, int
29       *error):
30
31       With the definitions of the input and output variables:
32
33       elpa_t handle:       The handle to the ELPA object
34
35       const char *filename: the filename to store the settings
36              int *error:           the error return code
37
38
39
40       DESCRIPTION
41              Stores all the settings of an ELPA object in a human readable
42              form to a file specified via the filename parameter. The
43              settings can later be restored with the elpa_load_settings(3)
44              method.
45

SEE ALSO

47       elpa_load_setting(3)
48
49
50
51ELPA                            Tue Nov 13 2018         elpa_store_settings(3)
Impressum