OptaPlanner distribution 6.2.1-SNAPSHOT

org.optaplanner.core.api.score.buildin.bendablelong
Class BendableLongScore

java.lang.Object
  extended by org.optaplanner.core.api.score.AbstractScore<BendableLongScore>
      extended by org.optaplanner.core.api.score.buildin.bendablelong.BendableLongScore
All Implemented Interfaces:
Serializable, Comparable<BendableLongScore>, FeasibilityScore<BendableLongScore>, Score<BendableLongScore>

public final class BendableLongScore
extends AbstractScore<BendableLongScore>
implements FeasibilityScore<BendableLongScore>

This Score is based on n levels of long constraints. The number of levels is bendable at configuration time.

This class is immutable.

The getHardLevelsSize() and getSoftLevelsSize() must be the same as in the BendableLongScoreDefinition used.

See Also:
Score, Serialized Form

Constructor Summary
protected BendableLongScore(long[] hardScores, long[] softScores)
           
 
Method Summary
 BendableLongScore add(BendableLongScore augment)
          Returns a Score whose value is (this + augment).
 int compareTo(BendableLongScore other)
           
 BendableLongScore divide(double divisor)
          Returns a Score whose value is (this / divisor).
 boolean equals(Object o)
           
 int getHardLevelsSize()
           
 long getHardScore(int index)
           
 int getSoftLevelsSize()
           
 long getSoftScore(int index)
           
 int hashCode()
           
 boolean isCompatibleArithmeticArgument(Score otherScore)
           
 boolean isFeasible()
          A Solution is feasible if it has no broken hard constraints.
 BendableLongScore multiply(double multiplicand)
          Returns a Score whose value is (this * multiplicand).
 BendableLongScore negate()
          Returns a Score whose value is (- this).
static BendableLongScore parseScore(int hardLevelsSize, int softLevelsSize, String scoreString)
           
 BendableLongScore power(double exponent)
          Returns a Score whose value is (this ^ exponent).
 BendableLongScore subtract(BendableLongScore subtrahend)
          Returns a Score whose value is (this - subtrahend).
 Number[] toLevelNumbers()
          Returns an array of numbers representing the Score.
 String toString()
           
 void validateCompatible(BendableLongScore other)
           
static BendableLongScore valueOf(long[] hardScores, long[] softScores)
          Creates a new BendableLongScore.
 
Methods inherited from class org.optaplanner.core.api.score.AbstractScore
buildScorePattern, buildScorePattern, parseLevelAsBigDecimal, parseLevelAsDouble, parseLevelAsInt, parseLevelAsLong, parseLevelStrings, parseLevelStrings
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

BendableLongScore

protected BendableLongScore(long[] hardScores,
                            long[] softScores)
Method Detail

parseScore

public static BendableLongScore parseScore(int hardLevelsSize,
                                           int softLevelsSize,
                                           String scoreString)

valueOf

public static BendableLongScore valueOf(long[] hardScores,
                                        long[] softScores)
Creates a new BendableLongScore.

Parameters:
hardScores - never null, never change that array afterwards: it must be immutable
softScores - never null, never change that array afterwards: it must be immutable
Returns:
never null

getHardLevelsSize

public int getHardLevelsSize()

getHardScore

public long getHardScore(int index)
Parameters:
index - 0 <= index < getHardLevelsSize()
Returns:
higher is better

getSoftLevelsSize

public int getSoftLevelsSize()

getSoftScore

public long getSoftScore(int index)
Parameters:
index - 0 <= index < getSoftLevelsSize()
Returns:
higher is better

isFeasible

public boolean isFeasible()
Description copied from interface: FeasibilityScore
A Solution is feasible if it has no broken hard constraints.

Specified by:
isFeasible in interface FeasibilityScore<BendableLongScore>
Returns:
true if the hard score(s) is 0 or higher

add

public BendableLongScore add(BendableLongScore augment)
Description copied from interface: Score
Returns a Score whose value is (this + augment).

Specified by:
add in interface Score<BendableLongScore>
Parameters:
augment - value to be added to this Score
Returns:
this + augment

subtract

public BendableLongScore subtract(BendableLongScore subtrahend)
Description copied from interface: Score
Returns a Score whose value is (this - subtrahend).

Specified by:
subtract in interface Score<BendableLongScore>
Parameters:
subtrahend - value to be subtracted from this Score
Returns:
this - subtrahend, rounded as necessary

multiply

public BendableLongScore multiply(double multiplicand)
Description copied from interface: Score
Returns a Score whose value is (this * multiplicand). When rounding is needed, it should be floored (as defined by Math.floor(double).

/> If the implementation has a scale/precision, then the unspecified scale/precision of the double multiplicand should have no impact on the returned scale/precision.

Specified by:
multiply in interface Score<BendableLongScore>
Parameters:
multiplicand - value to be multiplied by this Score.
Returns:
this * multiplicand

divide

public BendableLongScore divide(double divisor)
Description copied from interface: Score
Returns a Score whose value is (this / divisor). When rounding is needed, it should be floored (as defined by Math.floor(double).

/> If the implementation has a scale/precision, then the unspecified scale/precision of the double divisor should have no impact on the returned scale/precision.

Specified by:
divide in interface Score<BendableLongScore>
Parameters:
divisor - value by which this Score is to be divided
Returns:
this / divisor

power

public BendableLongScore power(double exponent)
Description copied from interface: Score
Returns a Score whose value is (this ^ exponent). When rounding is needed, it should be floored (as defined by Math.floor(double).

/> If the implementation has a scale/precision, then the unspecified scale/precision of the double exponent should have no impact on the returned scale/precision.

Specified by:
power in interface Score<BendableLongScore>
Parameters:
exponent - value by which this Score is to be powered
Returns:
this ^ exponent

negate

public BendableLongScore negate()
Description copied from interface: Score
Returns a Score whose value is (- this).

Specified by:
negate in interface Score<BendableLongScore>
Returns:
- this

toLevelNumbers

public Number[] toLevelNumbers()
Description copied from interface: Score
Returns an array of numbers representing the Score. Each number represents 1 score level. A greater score level uses a lower array index than a lesser score level.

When rounding is needed, each rounding should be floored (as defined by Math.floor(double). The length of the returned array must be stable for a specific Score implementation.

For example: -0hard/-7soft returns new int{-0, -7}

Specified by:
toLevelNumbers in interface Score<BendableLongScore>
Returns:
never null

equals

public boolean equals(Object o)
Overrides:
equals in class Object

hashCode

public int hashCode()
Overrides:
hashCode in class Object

compareTo

public int compareTo(BendableLongScore other)
Specified by:
compareTo in interface Comparable<BendableLongScore>

toString

public String toString()
Overrides:
toString in class Object

validateCompatible

public void validateCompatible(BendableLongScore other)

isCompatibleArithmeticArgument

public boolean isCompatibleArithmeticArgument(Score otherScore)
Specified by:
isCompatibleArithmeticArgument in interface Score<BendableLongScore>
Overrides:
isCompatibleArithmeticArgument in class AbstractScore<BendableLongScore>
Parameters:
otherScore - never null
Returns:
true if the otherScore is accepted as a parameter of Score.add(Score), Score.subtract(Score) and Comparable.compareTo(Object).

OptaPlanner distribution 6.2.1-SNAPSHOT

Copyright © 2006-2015 JBoss by Red Hat. All Rights Reserved.