ProblemTableData

data class ProblemTableData(var expId: Int = -1, var problemName: String = "", var dimension: Int = 0, var optimizationType: String = "", var numResponseConstraints: Int = 0, var tagsJson: String? = null, var referenceType: String? = null, var referenceObjective: Double? = null, var referenceInputsJson: String? = null, var gapType: String? = null, var gapBasisObjective: Double? = null, var winnerInputsJson: String? = null, var winnerObjective: Double? = null) : DbTableData(source)

One row per problem per experiment: identity, shape (dimension, orientation, constraints), the reference solution when one exists, the gap basis the runs were measured against, and the problem's winning point.

Constructors

Link copied to clipboard
constructor(expId: Int = -1, problemName: String = "", dimension: Int = 0, optimizationType: String = "", numResponseConstraints: Int = 0, tagsJson: String? = null, referenceType: String? = null, referenceObjective: Double? = null, referenceInputsJson: String? = null, gapType: String? = null, gapBasisObjective: Double? = null, winnerInputsJson: String? = null, winnerObjective: Double? = null)

Properties

Link copied to clipboard
Link copied to clipboard
var expId: Int
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard