1 | package de.uka.ipd.sdq.dsexplore.opt4j.optimizer.heuristic.operators.impl; |
2 | |
3 | public class Thresholds { |
4 | |
5 | //@author catia: threshold value for max CPU utilisation |
6 | public final double thresholdMaxCpu = 0.35; |
7 | |
8 | //@author catia: threshold value for max CPU queue length |
9 | public final double thresholdCpuQL = 0.2; |
10 | |
11 | //@author catia: threshold value for min CPU utilisation |
12 | public final double thresholdMinCpu = 0.1; |
13 | |
14 | //@author catia: threshold value for max HDD utilisation |
15 | public final double thresholdMaxHdd = 0.3; |
16 | |
17 | //@author catia: threshold value for max CPU queue length |
18 | public final double thresholdHddQL = 0.15; |
19 | |
20 | //@author catia: threshold value for min CPU utilisation |
21 | public final double thresholdMinHdd = 0.05; |
22 | |
23 | //@author catia: threshold value for max queue length of passive resources |
24 | double thresholdPrQL = 0.5; |
25 | } |