VDSMAX_ DP_ HEURISTIC_ MEMORY Property
If RESTRICT_MEMORY_USAGE is true and DYNAMIC_PROGRAMMING_HEURISTIC is true
then this is the maximum memory (in megabytes) to use for the dynamic programming
heuristic. Increasing this value can improve the performance on some instances.
Setting it too high though may just increase the running time of the heuristic
without significantly improving the solution.
The default value is 10.0.
Definition
Namespace: ASAP.NRP.Solvers
Assembly: NRP (in NRP.dll) Version: 3.49.0+964b2dfb493dfda37da83e5373992cb1cc934e98
Assembly: NRP (in NRP.dll) Version: 3.49.0+964b2dfb493dfda37da83e5373992cb1cc934e98
C#
[ObsoleteAttribute("This field is obsolete. Use the Phase2Intensity parameter instead.")]
public double MAX_DP_HEURISTIC_MEMORY { get; set; }VB
<ObsoleteAttribute("This field is obsolete. Use the Phase2Intensity parameter instead.")>
Public Property MAX_DP_HEURISTIC_MEMORY As Double
Get
SetC++
public:
[ObsoleteAttribute(L"This field is obsolete. Use the Phase2Intensity parameter instead.")]
property double MAX_DP_HEURISTIC_MEMORY {
double get ();
void set (double value);
}F#
[<ObsoleteAttribute("This field is obsolete. Use the Phase2Intensity parameter instead.")>]
member MAX_DP_HEURISTIC_MEMORY : float with get, set