handle_main_file Subroutine

public subroutine handle_main_file(nb_methods, nb_rprt_params, method_names, rprt_params)

Subroutine for handling the optimization runs.

This subroutine reads the main.txt file and interpets its contents.

  • This means reading the optimization methods, the report parameters (types of output, number of times a certain optimization should be run, etc.) and calling the corresponding optimization subroutine and passing it the important hyperparameter information.

  • As of know, in order to maintain the current implementation, the method's hyperparameters are written to the output/hyperparams.txt file (deleted at the end of execution). This is surely not the best way to do this (passing the character variable directly to the method ought to be more efficient). This is an improvement that can be done in the future (changing the handle_hyp_file subroutine) and how its called in the optimization methods.

Arguments

Type IntentOptional Attributes Name
integer :: nb_methods

The total number of optimization methods currently implemented

integer :: nb_rprt_params

Number of report parameters currently implemented.

character(len=20), dimension(nb_methods) :: method_names

Array of optimization methods' names/labels.

character(len=256), dimension(nb_rprt_params) :: rprt_params

Array of report parameters' names/labels.


Calls

proc~~handle_main_file~~CallsGraph proc~handle_main_file handle_main_file proc~check_status check_status proc~handle_main_file->proc~check_status proc~gd GD proc~handle_main_file->proc~gd proc~dfn_dx dfn_dx proc~gd->proc~dfn_dx proc~fn fn proc~gd->proc~fn proc~format_data format_data proc~gd->proc~format_data proc~handle_hyp_file handle_hyp_file proc~gd->proc~handle_hyp_file proc~handle_hyp_file->proc~check_status proc~check_hprparams check_hprparams proc~handle_hyp_file->proc~check_hprparams

Called by

proc~~handle_main_file~~CalledByGraph proc~handle_main_file handle_main_file program~main main program~main->proc~handle_main_file