gemseo.mda.factory module#

A factory of MDAs.

class MDAFactory[source]#

Bases: BaseFactory

A factory of MDAs.

Return type:

Any

get_default_option_values(name)[source]#

Return the constructor kwargs default values of a class.

Parameters:

name (str) -- The name of the class.

Returns:

The mapping from the argument names to their default values.

Return type:

StrKeyMapping

get_options_doc(name)[source]#

Return the constructor documentation of a class.

Parameters:

name (str) -- The name of the class.

Returns:

The mapping from the argument names to their documentation.

Return type:

dict[str, str]

failed_imports: dict[str, str]#

The class names bound to the import errors.