elpa_load_settings - Man Page
loads the setting of an elpa object
Synopsis
Fortran Interface
use elpa
class(elpa_t), pointer :: elpa
call elpa%load_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 file from where to load the settings
integer, optinal error: An error return code
C Interface
#include <elpa/elpa.h>
elpa_t handle;
void elpa_load_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 load the settings
int *error: the error return code
Description
Loads all the settings of an previously stored ELPA object from a file specified via the filename parameter.
See Also
elpa_store_setting(3)
Referenced By
elpa_print_settings(3), elpa_store_settings(3).
Tue Nov 13 2018 ELPA