aboutsummaryrefslogtreecommitdiffstats
path: root/Domains/hu.bme.mit.inf.dslreasoner.domains.cps/src-gen/hu/bme/mit/inf/dslreasoner/domains/cps/queries/GuidanceObjective.java
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kris7topher@gmail.com>2019-05-21 17:00:01 -0400
committerLibravatar Kristóf Marussy <kris7topher@gmail.com>2019-05-21 17:00:01 -0400
commitfd3684b5440dacca0c4bf4be15930555a79e2100 (patch)
tree24120a5c7fdae1532529fa0c4687dc1078cd1cde /Domains/hu.bme.mit.inf.dslreasoner.domains.cps/src-gen/hu/bme/mit/inf/dslreasoner/domains/cps/queries/GuidanceObjective.java
parentInterval hull aggregation operator (diff)
downloadVIATRA-Generator-fd3684b5440dacca0c4bf4be15930555a79e2100.tar.gz
VIATRA-Generator-fd3684b5440dacca0c4bf4be15930555a79e2100.tar.zst
VIATRA-Generator-fd3684b5440dacca0c4bf4be15930555a79e2100.zip
VIATRA DSE and COIN-OR CBC implementations of CPS case study
Diffstat (limited to 'Domains/hu.bme.mit.inf.dslreasoner.domains.cps/src-gen/hu/bme/mit/inf/dslreasoner/domains/cps/queries/GuidanceObjective.java')
-rw-r--r--Domains/hu.bme.mit.inf.dslreasoner.domains.cps/src-gen/hu/bme/mit/inf/dslreasoner/domains/cps/queries/GuidanceObjective.java591
1 files changed, 591 insertions, 0 deletions
diff --git a/Domains/hu.bme.mit.inf.dslreasoner.domains.cps/src-gen/hu/bme/mit/inf/dslreasoner/domains/cps/queries/GuidanceObjective.java b/Domains/hu.bme.mit.inf.dslreasoner.domains.cps/src-gen/hu/bme/mit/inf/dslreasoner/domains/cps/queries/GuidanceObjective.java
new file mode 100644
index 00000000..cfed0c4b
--- /dev/null
+++ b/Domains/hu.bme.mit.inf.dslreasoner.domains.cps/src-gen/hu/bme/mit/inf/dslreasoner/domains/cps/queries/GuidanceObjective.java
@@ -0,0 +1,591 @@
1/**
2 * Generated from platform:/resource/hu.bme.mit.inf.dslreasoner.domains.cps/src/hu/bme/mit/inf/dslreasoner/domains/cps/queries/CpsQueries.vql
3 */
4package hu.bme.mit.inf.dslreasoner.domains.cps.queries;
5
6import hu.bme.mit.inf.dslreasoner.domains.cps.queries.internal.NoHostToAllocateTo;
7import hu.bme.mit.inf.dslreasoner.domains.cps.queries.internal.RequiredAppInstances;
8import hu.bme.mit.inf.dslreasoner.domains.cps.queries.internal.UnallocatedAppInstance;
9import java.util.Arrays;
10import java.util.Collection;
11import java.util.LinkedHashSet;
12import java.util.List;
13import java.util.Objects;
14import java.util.Optional;
15import java.util.Set;
16import java.util.function.Consumer;
17import java.util.stream.Collectors;
18import java.util.stream.Stream;
19import org.apache.log4j.Logger;
20import org.eclipse.viatra.query.runtime.api.IPatternMatch;
21import org.eclipse.viatra.query.runtime.api.IQuerySpecification;
22import org.eclipse.viatra.query.runtime.api.ViatraQueryEngine;
23import org.eclipse.viatra.query.runtime.api.impl.BaseGeneratedEMFPQuery;
24import org.eclipse.viatra.query.runtime.api.impl.BaseGeneratedEMFQuerySpecification;
25import org.eclipse.viatra.query.runtime.api.impl.BaseMatcher;
26import org.eclipse.viatra.query.runtime.api.impl.BasePatternMatch;
27import org.eclipse.viatra.query.runtime.matchers.aggregators.sum;
28import org.eclipse.viatra.query.runtime.matchers.backend.QueryEvaluationHint;
29import org.eclipse.viatra.query.runtime.matchers.context.common.JavaTransitiveInstancesKey;
30import org.eclipse.viatra.query.runtime.matchers.psystem.IExpressionEvaluator;
31import org.eclipse.viatra.query.runtime.matchers.psystem.IValueProvider;
32import org.eclipse.viatra.query.runtime.matchers.psystem.PBody;
33import org.eclipse.viatra.query.runtime.matchers.psystem.PVariable;
34import org.eclipse.viatra.query.runtime.matchers.psystem.basicdeferred.AggregatorConstraint;
35import org.eclipse.viatra.query.runtime.matchers.psystem.basicdeferred.Equality;
36import org.eclipse.viatra.query.runtime.matchers.psystem.basicdeferred.ExportedParameter;
37import org.eclipse.viatra.query.runtime.matchers.psystem.basicdeferred.ExpressionEvaluation;
38import org.eclipse.viatra.query.runtime.matchers.psystem.basicdeferred.PatternMatchCounter;
39import org.eclipse.viatra.query.runtime.matchers.psystem.basicdeferred.TypeFilterConstraint;
40import org.eclipse.viatra.query.runtime.matchers.psystem.queries.PParameter;
41import org.eclipse.viatra.query.runtime.matchers.psystem.queries.PParameterDirection;
42import org.eclipse.viatra.query.runtime.matchers.psystem.queries.PVisibility;
43import org.eclipse.viatra.query.runtime.matchers.tuple.Tuple;
44import org.eclipse.viatra.query.runtime.matchers.tuple.Tuples;
45import org.eclipse.viatra.query.runtime.util.ViatraQueryLoggingUtil;
46
47/**
48 * A pattern-specific query specification that can instantiate Matcher in a type-safe way.
49 *
50 * <p>Original source:
51 * <code><pre>
52 * pattern guidanceObjective(Value : java Integer) {
53 * UnallocatedInstances == count find unallocatedAppInstance(_);
54 * RequiredInstances == sum find requiredAppInstances(_, #_);
55 * NoHostToAllocate == count find noHostToAllocateTo(_);
56 * Value == eval(2 UnallocatedInstances + 4 RequiredInstances + NoHostToAllocate);
57 * }
58 * </pre></code>
59 *
60 * @see Matcher
61 * @see Match
62 *
63 */
64@SuppressWarnings("all")
65public final class GuidanceObjective extends BaseGeneratedEMFQuerySpecification<GuidanceObjective.Matcher> {
66 /**
67 * Pattern-specific match representation of the hu.bme.mit.inf.dslreasoner.domains.cps.queries.guidanceObjective pattern,
68 * to be used in conjunction with {@link Matcher}.
69 *
70 * <p>Class fields correspond to parameters of the pattern. Fields with value null are considered unassigned.
71 * Each instance is a (possibly partial) substitution of pattern parameters,
72 * usable to represent a match of the pattern in the result of a query,
73 * or to specify the bound (fixed) input parameters when issuing a query.
74 *
75 * @see Matcher
76 *
77 */
78 public static abstract class Match extends BasePatternMatch {
79 private Integer fValue;
80
81 private static List<String> parameterNames = makeImmutableList("Value");
82
83 private Match(final Integer pValue) {
84 this.fValue = pValue;
85 }
86
87 @Override
88 public Object get(final String parameterName) {
89 if ("Value".equals(parameterName)) return this.fValue;
90 return null;
91 }
92
93 public Integer getValue() {
94 return this.fValue;
95 }
96
97 @Override
98 public boolean set(final String parameterName, final Object newValue) {
99 if (!isMutable()) throw new java.lang.UnsupportedOperationException();
100 if ("Value".equals(parameterName) ) {
101 this.fValue = (Integer) newValue;
102 return true;
103 }
104 return false;
105 }
106
107 public void setValue(final Integer pValue) {
108 if (!isMutable()) throw new java.lang.UnsupportedOperationException();
109 this.fValue = pValue;
110 }
111
112 @Override
113 public String patternName() {
114 return "hu.bme.mit.inf.dslreasoner.domains.cps.queries.guidanceObjective";
115 }
116
117 @Override
118 public List<String> parameterNames() {
119 return GuidanceObjective.Match.parameterNames;
120 }
121
122 @Override
123 public Object[] toArray() {
124 return new Object[]{fValue};
125 }
126
127 @Override
128 public GuidanceObjective.Match toImmutable() {
129 return isMutable() ? newMatch(fValue) : this;
130 }
131
132 @Override
133 public String prettyPrint() {
134 StringBuilder result = new StringBuilder();
135 result.append("\"Value\"=" + prettyPrintValue(fValue));
136 return result.toString();
137 }
138
139 @Override
140 public int hashCode() {
141 return Objects.hash(fValue);
142 }
143
144 @Override
145 public boolean equals(final Object obj) {
146 if (this == obj)
147 return true;
148 if (obj == null) {
149 return false;
150 }
151 if ((obj instanceof GuidanceObjective.Match)) {
152 GuidanceObjective.Match other = (GuidanceObjective.Match) obj;
153 return Objects.equals(fValue, other.fValue);
154 } else {
155 // this should be infrequent
156 if (!(obj instanceof IPatternMatch)) {
157 return false;
158 }
159 IPatternMatch otherSig = (IPatternMatch) obj;
160 return Objects.equals(specification(), otherSig.specification()) && Arrays.deepEquals(toArray(), otherSig.toArray());
161 }
162 }
163
164 @Override
165 public GuidanceObjective specification() {
166 return GuidanceObjective.instance();
167 }
168
169 /**
170 * Returns an empty, mutable match.
171 * Fields of the mutable match can be filled to create a partial match, usable as matcher input.
172 *
173 * @return the empty match.
174 *
175 */
176 public static GuidanceObjective.Match newEmptyMatch() {
177 return new Mutable(null);
178 }
179
180 /**
181 * Returns a mutable (partial) match.
182 * Fields of the mutable match can be filled to create a partial match, usable as matcher input.
183 *
184 * @param pValue the fixed value of pattern parameter Value, or null if not bound.
185 * @return the new, mutable (partial) match object.
186 *
187 */
188 public static GuidanceObjective.Match newMutableMatch(final Integer pValue) {
189 return new Mutable(pValue);
190 }
191
192 /**
193 * Returns a new (partial) match.
194 * This can be used e.g. to call the matcher with a partial match.
195 * <p>The returned match will be immutable. Use {@link #newEmptyMatch()} to obtain a mutable match object.
196 * @param pValue the fixed value of pattern parameter Value, or null if not bound.
197 * @return the (partial) match object.
198 *
199 */
200 public static GuidanceObjective.Match newMatch(final Integer pValue) {
201 return new Immutable(pValue);
202 }
203
204 private static final class Mutable extends GuidanceObjective.Match {
205 Mutable(final Integer pValue) {
206 super(pValue);
207 }
208
209 @Override
210 public boolean isMutable() {
211 return true;
212 }
213 }
214
215 private static final class Immutable extends GuidanceObjective.Match {
216 Immutable(final Integer pValue) {
217 super(pValue);
218 }
219
220 @Override
221 public boolean isMutable() {
222 return false;
223 }
224 }
225 }
226
227 /**
228 * Generated pattern matcher API of the hu.bme.mit.inf.dslreasoner.domains.cps.queries.guidanceObjective pattern,
229 * providing pattern-specific query methods.
230 *
231 * <p>Use the pattern matcher on a given model via {@link #on(ViatraQueryEngine)},
232 * e.g. in conjunction with {@link ViatraQueryEngine#on(QueryScope)}.
233 *
234 * <p>Matches of the pattern will be represented as {@link Match}.
235 *
236 * <p>Original source:
237 * <code><pre>
238 * pattern guidanceObjective(Value : java Integer) {
239 * UnallocatedInstances == count find unallocatedAppInstance(_);
240 * RequiredInstances == sum find requiredAppInstances(_, #_);
241 * NoHostToAllocate == count find noHostToAllocateTo(_);
242 * Value == eval(2 UnallocatedInstances + 4 RequiredInstances + NoHostToAllocate);
243 * }
244 * </pre></code>
245 *
246 * @see Match
247 * @see GuidanceObjective
248 *
249 */
250 public static class Matcher extends BaseMatcher<GuidanceObjective.Match> {
251 /**
252 * Initializes the pattern matcher within an existing VIATRA Query engine.
253 * If the pattern matcher is already constructed in the engine, only a light-weight reference is returned.
254 *
255 * @param engine the existing VIATRA Query engine in which this matcher will be created.
256 * @throws ViatraQueryRuntimeException if an error occurs during pattern matcher creation
257 *
258 */
259 public static GuidanceObjective.Matcher on(final ViatraQueryEngine engine) {
260 // check if matcher already exists
261 Matcher matcher = engine.getExistingMatcher(querySpecification());
262 if (matcher == null) {
263 matcher = (Matcher)engine.getMatcher(querySpecification());
264 }
265 return matcher;
266 }
267
268 /**
269 * @throws ViatraQueryRuntimeException if an error occurs during pattern matcher creation
270 * @return an initialized matcher
271 * @noreference This method is for internal matcher initialization by the framework, do not call it manually.
272 *
273 */
274 public static GuidanceObjective.Matcher create() {
275 return new Matcher();
276 }
277
278 private static final int POSITION_VALUE = 0;
279
280 private static final Logger LOGGER = ViatraQueryLoggingUtil.getLogger(GuidanceObjective.Matcher.class);
281
282 /**
283 * Initializes the pattern matcher within an existing VIATRA Query engine.
284 * If the pattern matcher is already constructed in the engine, only a light-weight reference is returned.
285 *
286 * @param engine the existing VIATRA Query engine in which this matcher will be created.
287 * @throws ViatraQueryRuntimeException if an error occurs during pattern matcher creation
288 *
289 */
290 private Matcher() {
291 super(querySpecification());
292 }
293
294 /**
295 * Returns the set of all matches of the pattern that conform to the given fixed values of some parameters.
296 * @param pValue the fixed value of pattern parameter Value, or null if not bound.
297 * @return matches represented as a Match object.
298 *
299 */
300 public Collection<GuidanceObjective.Match> getAllMatches(final Integer pValue) {
301 return rawStreamAllMatches(new Object[]{pValue}).collect(Collectors.toSet());
302 }
303
304 /**
305 * Returns a stream of all matches of the pattern that conform to the given fixed values of some parameters.
306 * </p>
307 * <strong>NOTE</strong>: It is important not to modify the source model while the stream is being processed.
308 * If the match set of the pattern changes during processing, the contents of the stream is <strong>undefined</strong>.
309 * In such cases, either rely on {@link #getAllMatches()} or collect the results of the stream in end-user code.
310 * @param pValue the fixed value of pattern parameter Value, or null if not bound.
311 * @return a stream of matches represented as a Match object.
312 *
313 */
314 public Stream<GuidanceObjective.Match> streamAllMatches(final Integer pValue) {
315 return rawStreamAllMatches(new Object[]{pValue});
316 }
317
318 /**
319 * Returns an arbitrarily chosen match of the pattern that conforms to the given fixed values of some parameters.
320 * Neither determinism nor randomness of selection is guaranteed.
321 * @param pValue the fixed value of pattern parameter Value, or null if not bound.
322 * @return a match represented as a Match object, or null if no match is found.
323 *
324 */
325 public Optional<GuidanceObjective.Match> getOneArbitraryMatch(final Integer pValue) {
326 return rawGetOneArbitraryMatch(new Object[]{pValue});
327 }
328
329 /**
330 * Indicates whether the given combination of specified pattern parameters constitute a valid pattern match,
331 * under any possible substitution of the unspecified parameters (if any).
332 * @param pValue the fixed value of pattern parameter Value, or null if not bound.
333 * @return true if the input is a valid (partial) match of the pattern.
334 *
335 */
336 public boolean hasMatch(final Integer pValue) {
337 return rawHasMatch(new Object[]{pValue});
338 }
339
340 /**
341 * Returns the number of all matches of the pattern that conform to the given fixed values of some parameters.
342 * @param pValue the fixed value of pattern parameter Value, or null if not bound.
343 * @return the number of pattern matches found.
344 *
345 */
346 public int countMatches(final Integer pValue) {
347 return rawCountMatches(new Object[]{pValue});
348 }
349
350 /**
351 * Executes the given processor on an arbitrarily chosen match of the pattern that conforms to the given fixed values of some parameters.
352 * Neither determinism nor randomness of selection is guaranteed.
353 * @param pValue the fixed value of pattern parameter Value, or null if not bound.
354 * @param processor the action that will process the selected match.
355 * @return true if the pattern has at least one match with the given parameter values, false if the processor was not invoked
356 *
357 */
358 public boolean forOneArbitraryMatch(final Integer pValue, final Consumer<? super GuidanceObjective.Match> processor) {
359 return rawForOneArbitraryMatch(new Object[]{pValue}, processor);
360 }
361
362 /**
363 * Returns a new (partial) match.
364 * This can be used e.g. to call the matcher with a partial match.
365 * <p>The returned match will be immutable. Use {@link #newEmptyMatch()} to obtain a mutable match object.
366 * @param pValue the fixed value of pattern parameter Value, or null if not bound.
367 * @return the (partial) match object.
368 *
369 */
370 public GuidanceObjective.Match newMatch(final Integer pValue) {
371 return GuidanceObjective.Match.newMatch(pValue);
372 }
373
374 /**
375 * Retrieve the set of values that occur in matches for Value.
376 * @return the Set of all values or empty set if there are no matches
377 *
378 */
379 protected Stream<Integer> rawStreamAllValuesOfValue(final Object[] parameters) {
380 return rawStreamAllValues(POSITION_VALUE, parameters).map(Integer.class::cast);
381 }
382
383 /**
384 * Retrieve the set of values that occur in matches for Value.
385 * @return the Set of all values or empty set if there are no matches
386 *
387 */
388 public Set<Integer> getAllValuesOfValue() {
389 return rawStreamAllValuesOfValue(emptyArray()).collect(Collectors.toSet());
390 }
391
392 /**
393 * Retrieve the set of values that occur in matches for Value.
394 * @return the Set of all values or empty set if there are no matches
395 *
396 */
397 public Stream<Integer> streamAllValuesOfValue() {
398 return rawStreamAllValuesOfValue(emptyArray());
399 }
400
401 @Override
402 protected GuidanceObjective.Match tupleToMatch(final Tuple t) {
403 try {
404 return GuidanceObjective.Match.newMatch((Integer) t.get(POSITION_VALUE));
405 } catch(ClassCastException e) {
406 LOGGER.error("Element(s) in tuple not properly typed!",e);
407 return null;
408 }
409 }
410
411 @Override
412 protected GuidanceObjective.Match arrayToMatch(final Object[] match) {
413 try {
414 return GuidanceObjective.Match.newMatch((Integer) match[POSITION_VALUE]);
415 } catch(ClassCastException e) {
416 LOGGER.error("Element(s) in array not properly typed!",e);
417 return null;
418 }
419 }
420
421 @Override
422 protected GuidanceObjective.Match arrayToMatchMutable(final Object[] match) {
423 try {
424 return GuidanceObjective.Match.newMutableMatch((Integer) match[POSITION_VALUE]);
425 } catch(ClassCastException e) {
426 LOGGER.error("Element(s) in array not properly typed!",e);
427 return null;
428 }
429 }
430
431 /**
432 * @return the singleton instance of the query specification of this pattern
433 * @throws ViatraQueryRuntimeException if the pattern definition could not be loaded
434 *
435 */
436 public static IQuerySpecification<GuidanceObjective.Matcher> querySpecification() {
437 return GuidanceObjective.instance();
438 }
439 }
440
441 private GuidanceObjective() {
442 super(GeneratedPQuery.INSTANCE);
443 }
444
445 /**
446 * @return the singleton instance of the query specification
447 * @throws ViatraQueryRuntimeException if the pattern definition could not be loaded
448 *
449 */
450 public static GuidanceObjective instance() {
451 try{
452 return LazyHolder.INSTANCE;
453 } catch (ExceptionInInitializerError err) {
454 throw processInitializerError(err);
455 }
456 }
457
458 @Override
459 protected GuidanceObjective.Matcher instantiate(final ViatraQueryEngine engine) {
460 return GuidanceObjective.Matcher.on(engine);
461 }
462
463 @Override
464 public GuidanceObjective.Matcher instantiate() {
465 return GuidanceObjective.Matcher.create();
466 }
467
468 @Override
469 public GuidanceObjective.Match newEmptyMatch() {
470 return GuidanceObjective.Match.newEmptyMatch();
471 }
472
473 @Override
474 public GuidanceObjective.Match newMatch(final Object... parameters) {
475 return GuidanceObjective.Match.newMatch((java.lang.Integer) parameters[0]);
476 }
477
478 /**
479 * Inner class allowing the singleton instance of {@link JvmGenericType: hu.bme.mit.inf.dslreasoner.domains.cps.queries.GuidanceObjective (visibility: PUBLIC, simpleName: GuidanceObjective, identifier: hu.bme.mit.inf.dslreasoner.domains.cps.queries.GuidanceObjective, deprecated: <unset>) (abstract: false, static: false, final: true, packageName: hu.bme.mit.inf.dslreasoner.domains.cps.queries) (interface: false, strictFloatingPoint: false, anonymous: false)} to be created
480 * <b>not</b> at the class load time of the outer class,
481 * but rather at the first call to {@link JvmGenericType: hu.bme.mit.inf.dslreasoner.domains.cps.queries.GuidanceObjective (visibility: PUBLIC, simpleName: GuidanceObjective, identifier: hu.bme.mit.inf.dslreasoner.domains.cps.queries.GuidanceObjective, deprecated: <unset>) (abstract: false, static: false, final: true, packageName: hu.bme.mit.inf.dslreasoner.domains.cps.queries) (interface: false, strictFloatingPoint: false, anonymous: false)#instance()}.
482 *
483 * <p> This workaround is required e.g. to support recursion.
484 *
485 */
486 private static class LazyHolder {
487 private static final GuidanceObjective INSTANCE = new GuidanceObjective();
488
489 /**
490 * Statically initializes the query specification <b>after</b> the field {@link #INSTANCE} is assigned.
491 * This initialization order is required to support indirect recursion.
492 *
493 * <p> The static initializer is defined using a helper field to work around limitations of the code generator.
494 *
495 */
496 private static final Object STATIC_INITIALIZER = ensureInitialized();
497
498 public static Object ensureInitialized() {
499 INSTANCE.ensureInitializedInternal();
500 return null;
501 }
502 }
503
504 private static class GeneratedPQuery extends BaseGeneratedEMFPQuery {
505 private static final GuidanceObjective.GeneratedPQuery INSTANCE = new GeneratedPQuery();
506
507 private final PParameter parameter_Value = new PParameter("Value", "java.lang.Integer", new JavaTransitiveInstancesKey(java.lang.Integer.class), PParameterDirection.INOUT);
508
509 private final List<PParameter> parameters = Arrays.asList(parameter_Value);
510
511 private GeneratedPQuery() {
512 super(PVisibility.PUBLIC);
513 }
514
515 @Override
516 public String getFullyQualifiedName() {
517 return "hu.bme.mit.inf.dslreasoner.domains.cps.queries.guidanceObjective";
518 }
519
520 @Override
521 public List<String> getParameterNames() {
522 return Arrays.asList("Value");
523 }
524
525 @Override
526 public List<PParameter> getParameters() {
527 return parameters;
528 }
529
530 @Override
531 public Set<PBody> doGetContainedBodies() {
532 setEvaluationHints(new QueryEvaluationHint(null, QueryEvaluationHint.BackendRequirement.UNSPECIFIED));
533 Set<PBody> bodies = new LinkedHashSet<>();
534 {
535 PBody body = new PBody(this);
536 PVariable var_Value = body.getOrCreateVariableByName("Value");
537 PVariable var_UnallocatedInstances = body.getOrCreateVariableByName("UnallocatedInstances");
538 PVariable var___0_ = body.getOrCreateVariableByName("_<0>");
539 PVariable var_RequiredInstances = body.getOrCreateVariableByName("RequiredInstances");
540 PVariable var___1_ = body.getOrCreateVariableByName("_<1>");
541 PVariable var___2_ = body.getOrCreateVariableByName("_<2>");
542 PVariable var_NoHostToAllocate = body.getOrCreateVariableByName("NoHostToAllocate");
543 PVariable var___3_ = body.getOrCreateVariableByName("_<3>");
544 new TypeFilterConstraint(body, Tuples.flatTupleOf(var_Value), new JavaTransitiveInstancesKey(java.lang.Integer.class));
545 body.setSymbolicParameters(Arrays.<ExportedParameter>asList(
546 new ExportedParameter(body, var_Value, parameter_Value)
547 ));
548 // UnallocatedInstances == count find unallocatedAppInstance(_)
549 PVariable var__virtual_0_ = body.getOrCreateVariableByName(".virtual{0}");
550 new PatternMatchCounter(body, Tuples.flatTupleOf(var___0_), UnallocatedAppInstance.instance().getInternalQueryRepresentation(), var__virtual_0_);
551 new Equality(body, var_UnallocatedInstances, var__virtual_0_);
552 // RequiredInstances == sum find requiredAppInstances(_, #_)
553 PVariable var__virtual_1_ = body.getOrCreateVariableByName(".virtual{1}");
554 new AggregatorConstraint(new sum().getAggregatorLogic(Integer.class), body, Tuples.flatTupleOf(var___1_, var___2_), RequiredAppInstances.instance().getInternalQueryRepresentation(), var__virtual_1_, 1);
555 new Equality(body, var_RequiredInstances, var__virtual_1_);
556 // NoHostToAllocate == count find noHostToAllocateTo(_)
557 PVariable var__virtual_2_ = body.getOrCreateVariableByName(".virtual{2}");
558 new PatternMatchCounter(body, Tuples.flatTupleOf(var___3_), NoHostToAllocateTo.instance().getInternalQueryRepresentation(), var__virtual_2_);
559 new Equality(body, var_NoHostToAllocate, var__virtual_2_);
560 // Value == eval(2 * UnallocatedInstances + 4 * RequiredInstances + NoHostToAllocate)
561 PVariable var__virtual_3_ = body.getOrCreateVariableByName(".virtual{3}");
562 new ExpressionEvaluation(body, new IExpressionEvaluator() {
563
564 @Override
565 public String getShortDescription() {
566 return "Expression evaluation from pattern guidanceObjective";
567 }
568
569 @Override
570 public Iterable<String> getInputParameterNames() {
571 return Arrays.asList("NoHostToAllocate", "RequiredInstances", "UnallocatedInstances");}
572
573 @Override
574 public Object evaluateExpression(IValueProvider provider) throws Exception {
575 Integer NoHostToAllocate = (Integer) provider.getValue("NoHostToAllocate");
576 Integer RequiredInstances = (Integer) provider.getValue("RequiredInstances");
577 Integer UnallocatedInstances = (Integer) provider.getValue("UnallocatedInstances");
578 return evaluateExpression_1_1(NoHostToAllocate, RequiredInstances, UnallocatedInstances);
579 }
580 }, var__virtual_3_ );
581 new Equality(body, var_Value, var__virtual_3_);
582 bodies.add(body);
583 }
584 return bodies;
585 }
586 }
587
588 private static int evaluateExpression_1_1(final Integer NoHostToAllocate, final Integer RequiredInstances, final Integer UnallocatedInstances) {
589 return (((2 * (UnallocatedInstances).intValue()) + (4 * (RequiredInstances).intValue())) + (NoHostToAllocate).intValue());
590 }
591}