Input Map
Two InputMaps are considered equal if their (name, value) pairs are the same. This class prevents the keys and values from changing. This prevents an input map associated with a solution from being changed. InputMap instances are the keys for solution caches. Thus, we cannot change the key of the solution cache. The user cannot construct an input map that is infeasible with respect to the input variable ranges.
Parameters
the map containing the (name, value) pairs associated with inputs for the evaluation process. These names and values must be valid with respect to the problem. The name must be a valid name for the problem, and the value must be within the input variable's defined range of possible values.
Functions
A copy of the input map as a mutable map
Computes the box plot summaries for the data within the map
Computes the confidence intervals for the data in the map
Interprets the supplied map as inputs for the problem definition and returns true if the values are within functional constraints. False will be returned if at least one functional constraint is infeasible.
The supplied input is considered input-feasible if it is feasible with respect to the defined input parameter ranges, the linear constraints, and the functional constraints.
Interprets the supplied map as inputs for the problem definition and returns true if the values are within the ranges defined for the variables. False will be returned if at least one input variable is not within its defined range.
Interprets the supplied map as inputs for the problem definition and returns true if the values are within linear constraints. False will be returned if at least one linear constraint is infeasible.
The map of arrays is considered rectangular if all arrays in the map have the same number of elements (same size).
Perturbs the current input values by the supplied step size. Each input is randomly increased or decreased by the step size. The likelihood of increasing or decreasing the value is equally likely.
Randomly generates a new value for the named input variable and returns a new input map. Randomization is uniformly distributed over the range of the input variable with no memory of its current value.
Computes the statistical summaries for the data within the map
Converts the data map to a 2-D array. The values of the map are extracted
Converts the data stored in each array to columns within a DataFrame, with the column names as the key from the map and the columns holding the data. Each array must have the same size.
Converts the inner DoubleArray to List
Converts the data map to a long format view of the observations.
Checks if the supplied value is a valid input value for the supplied input name.