Class IndomainSetMax<T extends SetVar>

java.lang.Object
org.jacop.set.search.IndomainSetMax<T>
Type Parameters:
T - type of variable being used in search.
All Implemented Interfaces:
Indomain<T>

public class IndomainSetMax<T extends SetVar> extends Object implements Indomain<T>
IndomainMin - implements enumeration method based on the selection of the maximal value in the domain of variable
Version:
4.9
  • Constructor Summary

    Constructors
    Constructor
    Description
    It creates indomain heuristic, which will choose the maximal value from the variable domain.
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    indomain(T var)
    It returns value within a variable which should be used in current assignment.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • IndomainSetMax

      public IndomainSetMax()
      It creates indomain heuristic, which will choose the maximal value from the variable domain.
  • Method Details

    • indomain

      public int indomain(T var)
      Description copied from interface: Indomain
      It returns value within a variable which should be used in current assignment. This function only returns value, it is not required to do any changes to variable, its domain, etc.
      Specified by:
      indomain in interface Indomain<T extends SetVar>
      Parameters:
      var - defines variable for which value for assignment is suggested.
      Returns:
      defines value for current assignment.