PluginSolutionMapping Class

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

Defines the base class for solution mappings for linear, nonlinear, and term solvers.

Inheritance Hierarchy

System.Object
  Microsoft.SolverFoundation.Services.SolutionMapping
    Microsoft.SolverFoundation.Services.PluginSolutionMapping
      Microsoft.SolverFoundation.Services.LinearSolutionMapping

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

Syntax

'Declaration
Public MustInherit Class PluginSolutionMapping _
    Inherits SolutionMapping
public abstract class PluginSolutionMapping : SolutionMapping
public ref class PluginSolutionMapping abstract : public SolutionMapping
[<AbstractClass>]
type PluginSolutionMapping =  
    class
        inherit SolutionMapping
    end
public abstract class PluginSolutionMapping extends SolutionMapping

The PluginSolutionMapping type exposes the following members.

Properties

  Name Description
Protected property Model Gets the Solver Foundation Services model that is solved. (Inherited from SolutionMapping.)

Top

Methods

  Name Description
Public method Equals Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method GetComponents Returns the parts of a constraint, together with its indexes. (Overrides SolutionMapping.GetComponents(Constraint, array<Object[]).)
Public method GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method GetIndexes(Constraint) Returns the indexes of a constraint. (Overrides SolutionMapping.GetIndexes(Constraint).)
Public method GetIndexes(Decision) Returns all indexes of a decision. (Overrides SolutionMapping.GetIndexes(Decision).)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method ToString Returns a string that represents the current object. (Inherited from Object.)
Public method TryGetConstraint Returns a constraint, the indexes of the constraint, and its component part. (Overrides SolutionMapping.TryGetConstraint(Int32, Constraint%, array<Object[]%, Int32%).)
Public method TryGetDecision Returns a decision. (Overrides SolutionMapping.TryGetDecision(Int32, Decision%, array<Object[]%).)
Public method TryGetGoal Returns a goal. (Overrides SolutionMapping.TryGetGoal(Int32, Goal%).)
Public method TryGetValue(Goal, Rational%) Returns the value of the specified goal. (Inherited from SolutionMapping.)
Public method TryGetValue(Decision, array<Object[], Rational%) Returns the value of the specified decision. (Inherited from SolutionMapping.)
Public method TryGetVid(Goal, Int32%) Returns the row or variable index that is associated with a specified goal. (Overrides SolutionMapping.TryGetVid(Goal, Int32%).)
Public method TryGetVid(Decision, array<Object[], Int32%) Returns the row or variable index that is associated with a specified decision. (Overrides SolutionMapping.TryGetVid(Decision, array<Object[], Int32%).)
Public method TryGetVid(Constraint, array<Object[], Int32, Int32%) Returns the row or variable index when passed a constraint, along with the indexes of the constraint, and a component part. (Overrides SolutionMapping.TryGetVid(Constraint, array<Object[], Int32, Int32%).)

Top

Remarks

This class is used for plug-in solvers.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

Microsoft.SolverFoundation.Services Namespace