aboutsummaryrefslogtreecommitdiffstats
path: root/Solvers/VIATRA-Solver/hu.bme.mit.inf.dslreasoner.viatrasolver.reasoner/src/hu/bme/mit/inf/dslreasoner/viatrasolver/reasoner/optimization/IThreeValuedObjective.xtend
blob: 4a870a3e3ac58b8d5614aa1c01126ff5a5d3b0eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package hu.bme.mit.inf.dslreasoner.viatrasolver.reasoner.optimization

import org.eclipse.viatra.dse.base.ThreadContext
import org.eclipse.viatra.dse.objectives.IObjective

interface IThreeValuedObjective extends IObjective {
	def Double getWorstPossibleFitness(ThreadContext threadContext)
	
	def Double getBestPossibleFitness(ThreadContext threadContext)
}