.. index:: pair: group; BRKGA and Control Parameters .. _doxid-group__brkga__control__params: BRKGA and Control Parameters ============================ .. toctree:: :hidden: class_BRKGA_BrkgaParams.rst class_BRKGA_ControlParams.rst Overview ~~~~~~~~ .. ref-code-block:: cpp :class: doxyrest-overview-code-block // classes class :ref:`BRKGA::BrkgaParams`; class :ref:`BRKGA::ControlParams`; // global functions INLINE std::pair<:ref:`BrkgaParams`, :ref:`ControlParams`> :ref:`BRKGA::readConfiguration`( std::istream& input, std::ostream& logger = std::cout ); INLINE std::pair<:ref:`BrkgaParams`, :ref:`ControlParams`> :ref:`BRKGA::readConfiguration`( const std::string& filename, std::ostream& logger = std::cout ); INLINE std::ostream& :ref:`BRKGA::operator <<` ( std::ostream& os, const :ref:`BrkgaParams`& brkga_params ); INLINE std::ostream& :ref:`BRKGA::operator <<` ( std::ostream& os, const :ref:`ControlParams`& control_params ); INLINE void :ref:`BRKGA::writeConfiguration`( std::ostream& output, const :ref:`BrkgaParams`& brkga_params, const :ref:`ControlParams`& control_params = :ref:`ControlParams`{} ); INLINE void :ref:`BRKGA::writeConfiguration`( const std::string& filename, const :ref:`BrkgaParams`& brkga_params, const :ref:`ControlParams`& control_params = :ref:`ControlParams`{} ); .. _details-group__brkga__control__params: Detailed Documentation ~~~~~~~~~~~~~~~~~~~~~~ Global Functions ---------------- .. index:: pair: function; readConfiguration .. _doxid-group__brkga__control__params_1ga1c8b456ad75a3b522d315d4167546ae6: .. ref-code-block:: cpp :class: doxyrest-title-code-block INLINE std::pair<:ref:`BrkgaParams`, :ref:`ControlParams`> BRKGA::readConfiguration( std::istream& input, std::ostream& logger = std::cout ) Reads the parameters from an input stream. Todo This method can beneficiate from introspection tools. We would like achieve a code similar to the `Julia counterpart `__. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - input - the input stream. It can be a file or a string stream. * - logger - a output stream to log some information such as missing no-required parameters. It does not log errors. * - std::fstream::failure - in case of errors in the file. .. rubric:: Returns: a tuple containing the :ref:`BRKGA ` and external control parameters. .. index:: pair: function; readConfiguration .. _doxid-group__brkga__control__params_1gac3cde9b5ca694e672bc52408f6381c4c: .. ref-code-block:: cpp :class: doxyrest-title-code-block INLINE std::pair<:ref:`BrkgaParams`, :ref:`ControlParams`> BRKGA::readConfiguration( const std::string& filename, std::ostream& logger = std::cout ) Reads the parameters from a configuration file. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - filename - the configuration file. * - logger - a output stream to log some information such as missing no-required parameters. It does not log errors. * - std::fstream::failure - in case of errors in the file. .. rubric:: Returns: a tuple containing the :ref:`BRKGA ` and external control parameters. .. index:: pair: function; operator<< .. _doxid-group__brkga__control__params_1gac2e90febdb3186e786a71ef60950f04f: .. ref-code-block:: cpp :class: doxyrest-title-code-block INLINE std::ostream& BRKGA::operator << ( std::ostream& os, const :ref:`BrkgaParams`& brkga_params ) Output stream operator for :ref:`BrkgaParams `. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - os - the output stream. * - brkga_params - the parameters. .. rubric:: Returns: the output stream. .. index:: pair: function; operator<< .. _doxid-group__brkga__control__params_1ga1eb95713847bf695dd70c5cb4edc5aab: .. ref-code-block:: cpp :class: doxyrest-title-code-block INLINE std::ostream& BRKGA::operator << ( std::ostream& os, const :ref:`ControlParams`& control_params ) Output stream operator for :ref:`ControlParams `. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - os - the output stream. * - control_params - the parameters. .. rubric:: Returns: the output stream. .. index:: pair: function; writeConfiguration .. _doxid-group__brkga__control__params_1ga758c489d2f6291cf80a78ca6765b856e: .. ref-code-block:: cpp :class: doxyrest-title-code-block INLINE void BRKGA::writeConfiguration( std::ostream& output, const :ref:`BrkgaParams`& brkga_params, const :ref:`ControlParams`& control_params = :ref:`ControlParams`{} ) Writes the parameters into a output stream. .. note:: All floating point parameters are written with two point precision. Todo This method can beneficiate from introspection tools. We would like achieve a code similar to the `Julia counterpart `__. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - output - the output stream. * - brkga_params - the :ref:`BRKGA ` parameters. * - control_params - the external control parameters. Default is an empty object. * - std::fstream::failure - in case of errors in the file. .. index:: pair: function; writeConfiguration .. _doxid-group__brkga__control__params_1ga03609eb993f479e801c4b30d794b6203: .. ref-code-block:: cpp :class: doxyrest-title-code-block INLINE void BRKGA::writeConfiguration( const std::string& filename, const :ref:`BrkgaParams`& brkga_params, const :ref:`ControlParams`& control_params = :ref:`ControlParams`{} ) Writes the parameters into a configuration file. .. note:: All floating point parameters are written with two point precision. .. rubric:: Parameters: .. list-table:: :widths: 20 80 * - filename - the configuration file. * - brkga_params - the :ref:`BRKGA ` parameters. * - control_params - the external control parameters. Default is an empty object. * - std::fstream::failure - in case of errors in the file.