LogNormalDistributionParameter Class

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

Represents a log normal distribution parameter.

Inheritance Hierarchy

System.Object
  Microsoft.SolverFoundation.Services.Term
    Microsoft.SolverFoundation.Services.RandomParameter
      Microsoft.SolverFoundation.Services.LogNormalDistributionParameter

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

Syntax

'Declaration
Public NotInheritable Class LogNormalDistributionParameter _
    Inherits RandomParameter
public sealed class LogNormalDistributionParameter : RandomParameter
public ref class LogNormalDistributionParameter sealed : public RandomParameter
[<Sealed>]
type LogNormalDistributionParameter =  
    class
        inherit RandomParameter
    end
public final class LogNormalDistributionParameter extends RandomParameter

The LogNormalDistributionParameter type exposes the following members.

Constructors

  Name Description
Public method LogNormalDistributionParameter(String) Initializes a new instance of the LogNormalDistributionParameter class. Creates a non-indexed log normal distribution parameter.
Public method LogNormalDistributionParameter(String, array<Set[]) Initializes a new instance of the LogNormalDistributionParameter class. Creates an indexed log normal distribution parameter.
Public method LogNormalDistributionParameter(String, Double, Double) Initializes a new instance of the LogNormalDistributionParameter class. Creates a non-indexed log normal distribution parameter by using the specified values.

Top

Properties

  Name Description
Public property Description Gets or sets a description of a parameter object. (Inherited from RandomParameter.)
Public property IndexSets Gets the index sets for a parameter object. (Inherited from RandomParameter.)
Public property Item Returns the random parameter specified by the indexes. (Inherited from RandomParameter.)
Public property Name Gets the name of a parameter. (Inherited from RandomParameter.)

Top

Methods

  Name Description
Protected method DataBind Binds the data to the solver context. (Inherited from RandomParameter.)
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 GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Protected method GetIndexFieldGetters<T> Creates get accessors for each index. (Inherited from RandomParameter.)
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 SetBinding<T>(IEnumerable<T>, String, String) Binds parameters to data.
Public method SetBinding<T>(IEnumerable<T>, String, String, array<String[]) Binds parameters to data.
Public method SetIndexSet Returns the specified index set. (Inherited from RandomParameter.)
Public method ToString() Converts a parameter to its equivalent string representation. (Inherited from RandomParameter.)
Public method ToString(String, IFormatProvider) Converts a term to its equivalent string representation. (Inherited from Term.)
Protected method VerifyModelNotFrozen Verifies that the associated model is not frozen. (Inherited from RandomParameter.)

Top

Remarks

A log normal random parameter is a continuous random parameter for which the log of the parameter is normally distributed. The distribution is defined by the natural log of the parameter's mean value and standard distribution.

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