ISmNonLinearOptimization.PerformanceInfo

Syntax

PerformanceInfo: IPerformanceInfo;

Description

The PerformanceInfo property returns information about executed optimization.

Comments

To determine parameters of non-linear constraints, use the ISmNonLinearOptimization.NonLinearConstraints property.

Example

To execute the example, add a link to the Stat system assembly.

Sub UserProc;
Var
    nlo: ISmNonLinearOptimization;
    lb, ub: Array[
0..3Of double;
    init: Array[
0..3Of double;
    LinConCfs: Array[
0..3Of double;
    Xsol: Array[
0..3Of double;
    Xsol_et: Array[
0..3Of double;
    LinCons: ISlLinearConstraints;
    LinCon: ISlLinearConstraint;
    NonLinCons: INonLinearConstraints;
    NonLinCon: INonLinearConstraint;
    Bound: ISlBoundaryRegion;
    InitP, Sol, BoundL, PerformanceObj: Array 
Of Double;
    PerformanceInfo: IPerformanceInfo;
    i, res: integer;
    d, Sol_et: double;
Begin
    nlo := 
New SmNonLinearOptimization.Create;
    
// Reference values
    sol_et := 17.014017;
    Xsol_et[
0] := 1.0;
    Xsol_et[
1] := 4.7430;
    Xsol_et[
2] := 3.8211;
    Xsol_et[
3] := 1.3794;
    
// Domain of definition parameters
    For i := 0 To 3 Do
        lb[i] := 
1;
        ub[i] := 
5;
        LinConCfs[i] := 
1;
    
End For;
    Bound := nlo.Boundary;
    Bound.BoundaryLower := lb;
    Bound.BoundaryUpper := ub;
    
// Order of coefficients
    nlo.CoefficientsOrder := "x1;x2;x3;x4";
    
// Criterion function  
    nlo.FunctionString := "x1*x4*(x1+x2+x3)+x3";
    
// Initial values
    init[0] := 1;
    init[
1] := 5;   
    init[
2] := 5
    init[
3] := 1;
    nlo.InitApproximation := init;
    
// Linear constraints and their parameters  
    LinCons := nlo.LinearConstraints;
    LinCon := LinCons.Add;
    LinCon.BoundaryLower := -
10000;//-10e20;
    LinCon.BoundaryUpper := 20;
    LinConCfs[
0] := 1;
    LinConCfs[
1] := 1;
    LinConCfs[
2] := 1;
    LinConCfs[
3] := 1;  
    LinCon.Value := LinConCfs;
    
// Non-linear constraints and their parameters
    NonLinCons := nlo.NonLinearConstraints;
    NonLinCon := NonLinCons.Add;
    NonLinCon.BoundaryLower :=  -
1000;
    NonLinCon.BoundaryUpper := 
40;
    NonLinCon.NonLinearFunction := 
"x1*x1+x2*x2+x3*x3+x4*x4";
    NonLinCon := NonLinCons.Add;
    NonLinCon.BoundaryLower := 
25;
    NonLinCon.BoundaryUpper := 
100000;
    NonLinCon.NonLinearFunction := 
"x1*x2*x3*x4";
    
// Accuracy of solution
    nlo.Tolerance := 0.00001;
    
// Maximum number of iterations to find solution
    nlo.MaxIteration := 1000;
    
// Calculation
    res := nlo.Execute;

    PerformanceInfo := nlo.PerformanceInfo;
    Debug.WriteLine(
"Execution status: " + res.ToString);
    Debug.WriteLine(nlo.Errors);
    Debug.WriteLine(
"Optimal value: " + nlo.OptimalFunctionValue.ToString);
    Debug.WriteLine(
"Reference value: " + Sol_et.ToString);
    Debug.WriteLine(
"Number of criterion function calls: " + PerformanceInfo.ObjFunCalls.ToString);
    Debug.WriteLine(
"Number of constraints calls: " + PerformanceInfo.ConstraintsCalls.ToString);
    Debug.WriteLine(
"Actual number of iterations: " + PerformanceInfo.Iterations.ToString);
    Debug.WriteLine(
"==========================");
    InitP := PerformanceInfo.InitFeasiblePoint;
    
For i := 0 To InitP.Length - 1 Do
        d := InitP[i];
        Debug.WriteLine(
"Initial available point for a task with constraint(" + i.ToString + ")= " + d.ToString);
    
End For;
    Sol := nlo.Solution;
    BoundL := Bound.LagrangeMultiplier;
    
If res = 0 Then
        Debug.WriteLine(
"======================");
        
For i := 1 To BoundL.Length - 1 Do
            d := Sol[i - 
1As Double;
            Xsol[i - 
1] := d;
            Debug.WriteLine(
" ");
            Debug.WriteLine(
"x(" + i.ToString + ") =  " + d.ToString);
            Debug.WriteLine(
"x_et(" + i.ToString + ") =  " + Xsol_et[i - 1].ToString);
            Debug.WriteLine(
"[ " + lb[i - 1].ToString + ",  " + ub[i - 1].ToString + " ]");
            Debug.WriteLine(
"Lagrange multiplier: " + BoundL[i - 1].ToString);
        
End For;
    
        Debug.WriteLine(
"    ");
        Debug.WriteLine(
"Constraints:");
        Debug.WriteLine(
"x1^2+x2^2+x3^2+x4^2 <= 40");
        d := Xsol[
0] * Xsol[0] + Xsol[1] * Xsol[1] + Xsol[2] * Xsol[2] + Xsol[3] * Xsol[3];
        Debug.WriteLine(
" = " + d.ToString);
        Debug.WriteLine(
" Lagrange multiplier: " + NonLinCons.Item(0).LagrangeMultiplier.ToString);

        Debug.WriteLine(
"    ");
        Debug.WriteLine(
"25 <= x1*x2*x3*x4 :");
        d := Xsol[
0] * Xsol[1] * Xsol[2] * Xsol[3];
        Debug.WriteLine(
" = " + d.ToString);
        Debug.WriteLine(
" Lagrange multiplier: " + NonLinCons.Item(1).LagrangeMultiplier.ToString);

        Debug.WriteLine(
"    ");
        Debug.WriteLine(
"x1+x2+x3+x4 < 20");
        d := Xsol[
0] + Xsol[1] + Xsol[2] + Xsol[3];
        Debug.WriteLine(
" = " + d.ToString);
        Debug.WriteLine(
" Lagrange multiplier: " + LinCons.Item(0).LagrangeMultiplier.ToString);
        PerformanceObj := PerformanceInfo.ObjValByIter;
        
For i := 0 To PerformanceObj.Length - 1 Do
            Debug.WriteLine(
"Value of criterion function for iteration (" + i.ToString + "): " + PerformanceObj[i].ToString);
        
End For;
    
End If;
End Sub UserProc;

After executing the example the console window displays:

See also:

ISmNonLinearOptimization