Class HeuristicEntryDto
- java.lang.Object
-
- org.evomaster.client.java.controller.api.dto.HeuristicEntryDto
-
public class HeuristicEntryDto extends Object
Created by arcuri82 on 14-Jun-19.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
HeuristicEntryDto.Objective
Should we try to minimize or maximize the heuristic?static class
HeuristicEntryDto.Type
The type of extra heuristic.
-
Field Summary
Fields Modifier and Type Field Description String
id
An id representing this heuristics.HeuristicEntryDto.Objective
objective
HeuristicEntryDto.Type
type
Double
value
The actual value of the heuristic
-
Constructor Summary
Constructors Constructor Description HeuristicEntryDto()
HeuristicEntryDto(HeuristicEntryDto.Type type, HeuristicEntryDto.Objective objective, String id, Double value)
-
-
-
Field Detail
-
type
public HeuristicEntryDto.Type type
-
objective
public HeuristicEntryDto.Objective objective
-
id
public String id
An id representing this heuristics. For example, for SQL, it could be a SQL command
-
value
public Double value
The actual value of the heuristic
-
-
Constructor Detail
-
HeuristicEntryDto
public HeuristicEntryDto()
-
HeuristicEntryDto
public HeuristicEntryDto(HeuristicEntryDto.Type type, HeuristicEntryDto.Objective objective, String id, Double value)
-
-