brkga_mp_ipr.types_io module¶
-
brkga_mp_ipr.types_io.
load_configuration
(configuration_file: str) -> (<class 'brkga_mp_ipr.types.BrkgaParams'>, <class 'brkga_mp_ipr.types.ExternalControlParams'>)[source]¶ Loads the parameters from configuration_file returning them as a tuple.
- Args:
configuration_file (str): plain text file containing the configuration.
- Returns:
A tuple containing a BrkgaParams and a ExternalControlParams object.
- Raises:
IsADirectoryError: If configuration_file is a folder.
FileNotFoundError: If configuration_file does not exist.
LoadError: In cases of missing data or bad-formatted data.
-
brkga_mp_ipr.types_io.
write_configuration
(filename: str, brkga_params: brkga_mp_ipr.types.BrkgaParams, external_params: brkga_mp_ipr.types.ExternalControlParams) → None[source]¶ Writes brkga_params and external_params into filename.
- Args:
filename (str): A file where the configuration will be written.
brkga_params (BrkgaParams): The BRKGA-MP-IPR parameters.
external_params (ExternalControlParams): The control parameters.
- Raises:
IsADirectoryError: If filename is a folder.
PermissionError: If we cannot write into the file.