output.output module

class output.output.Output(settings)

Bases: abc.ABC

Abstract Base Class for Output stage. The Output stage returns the approximation results and finishes the program flow.

Inheriting classes must implement methods:
__init__ setup process
Parameters:settings (dict) – A dictionary using options from the config as keys and strings of their values as values.
setup(gen_info)

Sets up the Output instance using a GeneralInformation instance. Provides a default implementation.

Parameters:gen_info (GeneralInformation) – The framework’s GeneralInformation instance.
process()

Outputs formatted results using information stored in gen_info.