|
IGLib 1.4
The IGLib base library for development of numerical, technical and business applications.
|
Inheritance diagram for IG::Lib::LoadableScriptOptTest::LoadableScriptOptDerived:
Collaboration diagram for IG::Lib::LoadableScriptOptTest::LoadableScriptOptDerived:Public Member Functions | |
| override void | Analyse (IAnalysisResults anRes) |
| Performs direct analysis for optimization problems. This method must be overridden in derived classes where one wants to have direct analysis defined. | |
Protected Member Functions | |
| override void | InitializeThis (string[] arguments) |
| Inializes the current script object. | |
| override string | RunThis (string[] arguments) |
| Performs the action of this object. Override this in derived classes! | |
| override void IG::Lib::LoadableScriptOptTest::LoadableScriptOptDerived::InitializeThis | ( | string[] | arguments | ) | [inline, protected, virtual] |
Inializes the current script object.
| arguments | Initialization arguments. The first argument must be the working directory path. |
Reimplemented from IG::Lib::LoadableScriptOptBase.
| override string IG::Lib::LoadableScriptOptTest::LoadableScriptOptDerived::RunThis | ( | string[] | arguments | ) | [inline, protected, virtual] |
Performs the action of this object. Override this in derived classes!
| arguments | Arguments through which different information can be passed. |
Implements IG::Lib::LoadableScriptBase.
| override void IG::Lib::LoadableScriptOptTest::LoadableScriptOptDerived::Analyse | ( | IAnalysisResults | anRes | ) | [inline, virtual] |
Performs direct analysis for optimization problems. This method must be overridden in derived classes where one wants to have direct analysis defined.
| anRes | IAnalysisResults object where input parameters are loaded on the call, and where analysis results are stored after the call. |
In order to perform the direct analysis, an embedded Analysis object is used. This object's analysis method calls the current Analyse method in order to actually perform the analysis.
Implements IG::Lib::LoadableScriptOptBase.