ILinearSolution.GetSolvedGoal Method

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Returns information about a solved goal.

Namespace:  Microsoft.SolverFoundation.Services
Assembly:  Microsoft.Solver.Foundation (in Microsoft.Solver.Foundation.dll)

Syntax

'Declaration
Sub GetSolvedGoal ( _
    igoal As Integer, _
    <OutAttribute> ByRef key As Object, _
    <OutAttribute> ByRef vid As Integer, _
    <OutAttribute> ByRef fMinimize As Boolean, _
    <OutAttribute> ByRef fOptimal As Boolean _
)
void GetSolvedGoal(
    int igoal,
    out Object key,
    out int vid,
    out bool fMinimize,
    out bool fOptimal
)
void GetSolvedGoal(
    int igoal, 
    [OutAttribute] Object^% key, 
    [OutAttribute] int% vid, 
    [OutAttribute] bool% fMinimize, 
    [OutAttribute] bool% fOptimal
)
abstract GetSolvedGoal : 
        igoal:int * 
        key:Object byref * 
        vid:int byref * 
        fMinimize:bool byref * 
        fOptimal:bool byref -> unit 
function GetSolvedGoal(
    igoal : int, 
    key : Object, 
    vid : int, 
    fMinimize : boolean, 
    fOptimal : boolean
)

Parameters

  • vid
    Type: System.Int32%
    The variable index of the goal row.
  • fMinimize
    Type: System.Boolean%
    true if the goal is to minimize the result; otherwise, false.
  • fOptimal
    Type: System.Boolean%
    true if the goal is optimal; otherwise, false.

.NET Framework Security

See Also

Reference

ILinearSolution Interface

Microsoft.SolverFoundation.Services Namespace