SimplexSolverParams.NotifyFindNext Method

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

Defines the callback function called when the simplex solver find the next pair of pivoting variables.

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

Syntax

'Declaration
Public Overridable Function NotifyFindNext ( _
    threadIndex As Integer, _
    stat As ILinearSimplexStatistics, _
    fDouble As Boolean _
) As Boolean
public virtual bool NotifyFindNext(
    int threadIndex,
    ILinearSimplexStatistics stat,
    bool fDouble
)
public:
virtual bool NotifyFindNext(
    int threadIndex, 
    ILinearSimplexStatistics^ stat, 
    bool fDouble
)
abstract NotifyFindNext : 
        threadIndex:int * 
        stat:ILinearSimplexStatistics * 
        fDouble:bool -> bool 
override NotifyFindNext : 
        threadIndex:int * 
        stat:ILinearSimplexStatistics * 
        fDouble:bool -> bool 
public function NotifyFindNext(
    threadIndex : int, 
    stat : ILinearSimplexStatistics, 
    fDouble : boolean
) : boolean

Parameters

  • threadIndex
    Type: System.Int32
    The thread identifier for the simplex solver.
  • fDouble
    Type: System.Boolean
    true to use double arithmetic; otherwise, false.

Return Value

Type: System.Boolean
true if the solver will continue searching for the next pair of pivoting variables; otherwise, false.

.NET Framework Security

See Also

Reference

SimplexSolverParams Class

Microsoft.SolverFoundation.Solvers Namespace