aboutsummaryrefslogtreecommitdiffstats
path: root/Solvers/VIATRA-Solver/hu.bme.mit.inf.dslreasoner.viatrasolver.logic2viatra/src/hu/bme/mit/inf/dslreasoner/viatrasolver/logic2viatra/cardinality/MultiplicityGoalConstraintCalculator.xtend
blob: 392ab3ee666820ff621a760d83373bd364f466f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package hu.bme.mit.inf.dslreasoner.viatrasolver.logic2viatra.cardinality

import org.eclipse.emf.common.notify.Notifier
import org.eclipse.viatra.query.runtime.api.IQuerySpecification
import org.eclipse.viatra.query.runtime.api.ViatraQueryEngine
import org.eclipse.viatra.query.runtime.emf.EMFScope

class MultiplicityGoalConstraintCalculator {
	val String targetRelationName
	val IQuerySpecification<?> querySpecification
	var MultiplicityCalculator<?> calculator
	val boolean containment
	val int lowerBound
	val int cost
		
	new(String targetRelationName, IQuerySpecification<?> querySpecification, boolean containment, int lowerBound, int cost) {
		this.targetRelationName = targetRelationName
		this.querySpecification = querySpecification
		this.calculator = null
		this.containment = containment
		this.lowerBound = lowerBound
		this.cost = cost
	}
	
	new(MultiplicityGoalConstraintCalculator other) {
		this.targetRelationName = other.targetRelationName
		this.querySpecification = other.querySpecification
		this.calculator = null
		this.containment = other.containment
		this.lowerBound = other.lowerBound
		this.cost = other.cost
	}
	
	def getName() {
		targetRelationName
	}
	
	def isContainment() {
		return containment
	}

	def init(Notifier notifier) {
		val engine = ViatraQueryEngine.on(new EMFScope(notifier))
		val matcher = querySpecification.getMatcher(engine)
		calculator = RemainingMultiplicityCalculator.of(matcher, lowerBound)
	}
	
	def calculateValue() {
		val res = calculator.multiplicity
//		if(res>0)
//		println(targetRelationName+ " all missing multiplicities: "+res + "*"+cost+"="+res*cost)
		return res*cost
	}
}