Record Class TravelingSalesmanController.TspResponse
java.lang.Object
java.lang.Record
io.openml.gearbox.controller.TravelingSalesmanController.TspResponse
- Enclosing class:
TravelingSalesmanController
-
Constructor Summary
ConstructorsConstructorDescriptionTspResponse(double cost, List<String> path) Creates an instance of aTspResponserecord class. -
Method Summary
Modifier and TypeMethodDescriptiondoublecost()Returns the value of thecostrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.path()Returns the value of thepathrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
TspResponse
-
-
Method Details
-
toString
-
hashCode
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with thecomparemethod from their corresponding wrapper classes. -
cost
public double cost()Returns the value of thecostrecord component.- Returns:
- the value of the
costrecord component
-
path
-