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

NAME

6       elpa_load_settings - loads 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%load_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 file from where to load the
20              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_load_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 load the settings
36              int *error:           the error return code
37
38
39
40       DESCRIPTION
41              Loads all the settings of an previously stored ELPA object from
42              a file specified via the filename parameter.
43

SEE ALSO

45       elpa_store_setting(3)
46
47
48
49ELPA                            Tue Nov 13 2018          elpa_load_settings(3)
Impressum