|
FRODO Version 2.19.1
An open-source framework for Distributed Constraint Optimization (DCOP)
|
This class implements the minus infinity element. More...

Public Member Functions | |
| MinInfinity () | |
| int | intValue () |
| double | doubleValue () |
| MinInfinity | add (final AddableBigInteger o) |
| AddableDelayed< AddableBigInteger > | addDelayed () |
| MinInfinity | subtract (final AddableBigInteger o) |
| AddableBigInteger | multiply (final AddableBigInteger o) |
| MinInfinity | divide (final AddableBigInteger o) |
| PlusInfinity | abs () |
| int | compareTo (final AddableBigInteger o) |
| Compares this AddableInteger with another. | |
| boolean | equals (final Object o) |
| int | hashCode () |
| Object | readResolve () |
| Method to deserialize the object in such a way that the singleton property is retained. | |
| void | readExternal (ObjectInput in) throws IOException, ClassNotFoundException |
| void | writeExternal (ObjectOutput out) throws IOException |
| PlusInfinity | flipSign () |
| String | toString () |
| Public Member Functions inherited from frodo2.solutionSpaces.crypto.AddableBigInteger | |
| AddableBigInteger () | |
| Empty constructor. | |
| AddableBigInteger (String val) | |
| Constructor from a String. | |
| AddableBigInteger (int numBits, Random rnd) | |
| Random constructor. | |
| AddableBigInteger (BigInteger val) | |
| Constructor. | |
| AddableBigInteger (int val) | |
| Constructor. | |
| final boolean | externalize () |
| AddableBigInteger | fromString (String str) |
| AddableBigInteger | fromInt (int nbr) |
| AddableBigInteger | getMinInfinity () |
| AddableBigInteger | getPlusInfinity () |
| AddableBigInteger | getZero () |
| AddableBigInteger | max (AddableBigInteger o) |
| AddableBigInteger | min (AddableBigInteger o) |
| boolean | isPositive () |
| Addable< AddableBigInteger >[] | range (AddableBigInteger begin, AddableBigInteger end) |
| Public Member Functions inherited from frodo2.solutionSpaces.Addable< T extends Addable< T > > | |
| T | add (T o) |
| Adds an object to this object. | |
| T | subtract (T o) |
| Subtracts an object from this object. | |
| T | multiply (T o) |
| Multiplies an object with this object. | |
| T | divide (T o) |
| Addable< T >[] | range (T begin, T end) |
Returns an array containing all the values between begin and end. | |
| Public Member Functions inherited from frodo2.solutionSpaces.AddableLimited< T, T > | |
| M | add (A other) |
| Addition. | |
| M | min (M other) |
| Minimum. | |
| M | max (M other) |
| Maximum. | |
| boolean | externalize () |
| Object | readResolve () |
| Method called just after deserialization. | |
Static Public Attributes | |
| static final MinInfinity | MIN_INF = new MinInfinity() |
| The singleton MinInfinity. | |
This class implements the minus infinity element.
Adding or subtracting anything still results in the infinity element.
Referenced by add(), divide(), and subtract().
| PlusInfinity frodo2.solutionSpaces.crypto.AddableBigInteger.MinInfinity.abs | ( | ) |
Reimplemented from frodo2.solutionSpaces.crypto.AddableBigInteger.
References frodo2.solutionSpaces.crypto.AddableBigInteger.PlusInfinity.PLUS_INF.
| MinInfinity frodo2.solutionSpaces.crypto.AddableBigInteger.MinInfinity.add | ( | final AddableBigInteger | o | ) |
Reimplemented from frodo2.solutionSpaces.crypto.AddableBigInteger.
References frodo2.solutionSpaces.crypto.AddableBigInteger.AddableBigInteger(), MIN_INF, MinInfinity(), and frodo2.solutionSpaces.crypto.AddableBigInteger.PlusInfinity.PLUS_INF.

| AddableDelayed< AddableBigInteger > frodo2.solutionSpaces.crypto.AddableBigInteger.MinInfinity.addDelayed | ( | ) |
Reimplemented from frodo2.solutionSpaces.crypto.AddableBigInteger.
| int frodo2.solutionSpaces.crypto.AddableBigInteger.MinInfinity.compareTo | ( | final AddableBigInteger | o | ) |
Compares this AddableInteger with another.
| o | another AddableInteger |
Reimplemented from frodo2.solutionSpaces.crypto.AddableBigInteger.
References frodo2.solutionSpaces.crypto.AddableBigInteger.AddableBigInteger(), and MIN_INF.
Referenced by multiply().

| MinInfinity frodo2.solutionSpaces.crypto.AddableBigInteger.MinInfinity.divide | ( | final AddableBigInteger | o | ) |
Reimplemented from frodo2.solutionSpaces.crypto.AddableBigInteger.
References frodo2.solutionSpaces.crypto.AddableBigInteger.AddableBigInteger(), frodo2.solutionSpaces.crypto.AddableBigInteger.equals(), MIN_INF, MinInfinity(), frodo2.solutionSpaces.crypto.AddableBigInteger.PlusInfinity.PLUS_INF, and frodo2.solutionSpaces.crypto.AddableBigInteger.ZERO.

| double frodo2.solutionSpaces.crypto.AddableBigInteger.MinInfinity.doubleValue | ( | ) |
Reimplemented from frodo2.solutionSpaces.crypto.AddableBigInteger.
| boolean frodo2.solutionSpaces.crypto.AddableBigInteger.MinInfinity.equals | ( | final Object | o | ) |
Reimplemented from frodo2.solutionSpaces.crypto.AddableBigInteger.
References MIN_INF.
| PlusInfinity frodo2.solutionSpaces.crypto.AddableBigInteger.MinInfinity.flipSign | ( | ) |
Reimplemented from frodo2.solutionSpaces.crypto.AddableBigInteger.
References frodo2.solutionSpaces.crypto.AddableBigInteger.PlusInfinity.PLUS_INF.
| int frodo2.solutionSpaces.crypto.AddableBigInteger.MinInfinity.hashCode | ( | ) |
Reimplemented from frodo2.solutionSpaces.crypto.AddableBigInteger.
| int frodo2.solutionSpaces.crypto.AddableBigInteger.MinInfinity.intValue | ( | ) |
Reimplemented from frodo2.solutionSpaces.crypto.AddableBigInteger.
| AddableBigInteger frodo2.solutionSpaces.crypto.AddableBigInteger.MinInfinity.multiply | ( | final AddableBigInteger | o | ) |
Reimplemented from frodo2.solutionSpaces.crypto.AddableBigInteger.
References frodo2.solutionSpaces.crypto.AddableBigInteger.AddableBigInteger(), compareTo(), frodo2.solutionSpaces.crypto.AddableBigInteger.equals(), MIN_INF, frodo2.solutionSpaces.crypto.AddableBigInteger.PlusInfinity.PLUS_INF, and frodo2.solutionSpaces.crypto.AddableBigInteger.ZERO.

| void frodo2.solutionSpaces.crypto.AddableBigInteger.MinInfinity.readExternal | ( | ObjectInput | in | ) | throws IOException, ClassNotFoundException |
Reimplemented from frodo2.solutionSpaces.crypto.AddableBigInteger.
| Object frodo2.solutionSpaces.crypto.AddableBigInteger.MinInfinity.readResolve | ( | ) |
Method to deserialize the object in such a way that the singleton property is retained.
Reimplemented from frodo2.solutionSpaces.crypto.AddableBigInteger.
References MIN_INF.
| MinInfinity frodo2.solutionSpaces.crypto.AddableBigInteger.MinInfinity.subtract | ( | final AddableBigInteger | o | ) |
Reimplemented from frodo2.solutionSpaces.crypto.AddableBigInteger.
References frodo2.solutionSpaces.crypto.AddableBigInteger.AddableBigInteger(), MIN_INF, and MinInfinity().

| String frodo2.solutionSpaces.crypto.AddableBigInteger.MinInfinity.toString | ( | ) |
Reimplemented from frodo2.solutionSpaces.crypto.AddableBigInteger.
| void frodo2.solutionSpaces.crypto.AddableBigInteger.MinInfinity.writeExternal | ( | ObjectOutput | out | ) | throws IOException |
Reimplemented from frodo2.solutionSpaces.crypto.AddableBigInteger.
|
static |
The singleton MinInfinity.
Referenced by frodo2.solutionSpaces.crypto.AddableBigInteger.add(), add(), frodo2.solutionSpaces.crypto.AddableBigInteger.PlusInfinity.add(), frodo2.solutionSpaces.crypto.AddableBigInteger.AddableBigIntegerDelayed.addDelayed(), frodo2.solutionSpaces.crypto.AddableBigInteger.compareTo(), compareTo(), frodo2.solutionSpaces.crypto.AddableBigInteger.divide(), divide(), frodo2.solutionSpaces.crypto.AddableBigInteger.PlusInfinity.divide(), frodo2.solutionSpaces.crypto.AddableBigInteger.equals(), equals(), frodo2.solutionSpaces.crypto.AddableBigInteger.PlusInfinity.flipSign(), frodo2.solutionSpaces.crypto.AddableBigInteger.fromString(), frodo2.solutionSpaces.crypto.AddableBigInteger.getMinInfinity(), multiply(), frodo2.solutionSpaces.crypto.AddableBigInteger.multiply(), frodo2.solutionSpaces.crypto.AddableBigInteger.PlusInfinity.multiply(), frodo2.solutionSpaces.crypto.AddableBigInteger.AddableBigIntegerDelayed.multiplyDelayed(), readResolve(), frodo2.solutionSpaces.crypto.AddableBigInteger.AddableBigIntegerDelayed.resolve(), subtract(), and frodo2.solutionSpaces.crypto.AddableBigInteger.subtract().