make_monte_carlo_problem

fireopal.make_monte_carlo_problem(objective_function_parameters, distribution_parameters)

Assemble a Monte Carlo integration problem dictionary for fireopal.integrate_monte_carlo.

Parameters

  • objective_function_parameters (dict [ str , Any ]) – Parameters for the objective function, as returned by one of the make_*_objective helpers.
  • distribution_parameters (dict [ str , Any ]) – Parameters for the distribution, as returned by one of the make_*_distribution helpers.

Returns

dict[str, Any] – A dictionary containing the parameters of the Monte Carlo integration problem, suitable for use with integrate_monte_carlo().

Was this useful?