Index: /reasoner/introduction.tex
===================================================================
--- /reasoner/introduction.tex	(revision 277)
+++ /reasoner/introduction.tex	(revision 278)
@@ -14,7 +14,7 @@
     \item Support for shadowed / redefined IVML compound slots, i.e., properly applying constraints for shadowed slots to the most specific slot in a compound hierarchy.
     \item Support for IVML constraint variables. IVML supports variables that hold a constraint, i.e., a configuration can explicitly define, add, remove or disable constraints, i.e., actively change the constraint set during reasoning.
-    \item Modes for full reasoning (irrespective of a given configuration, incremental reasoning as well as reasoning over configuration changes.
+    \item Modes for full reasoning (irrespective of a given configuration, incremental reasoning as well as reasoning over configuration changes. Specific support for deriving values for certain variables on demand, e.g., at runtime and at low overhead while considering related constraints.
     \item Although the current reasoning approach is not reasoning complete, it is designed to act as the first step in a chained reasoning approach. For such subsequent reasoners, the IVML reasoner provides a solid basis, detailed error messages including the failed instantiated constraints so that a chained reasoner can directly continue working with these constraints.
 \end{itemize}
 
-This report is structured as follows: Section \ref{sectApproach} provides an overview of our approach. Section \ref{sectNotation} introduces the notation that we use throughout this report to specify the algorithms. There, we introduce notations for sets, sequences, substitutions as well as relevant IVML concepts. In Section \ref{sectReasoning}, we discuss the top-level algorithms for reasoning and constraint transformation. In Section \ref{sectTranslation}, we detail the translation of constraints for all IVML modeling concepts. Section \ref{sectTopLevelConstraintsRescheduling} includes the mechanism for re-scheduling constraints, i.e., how to handle value type or constraint variables changes. In Section \ref{sectCompleteness}, we analyze the translations in order to assess their completeness with respect to the IVML specification~\cite{IVML-LS} and indicate the state of the validation in terms of regression test cases. In Section \ref{sectPerformance}, we summarize performance issues, findings and resolutions we made while developing this version of the reasoner, in particular to avoid that future modifications violate already resolved performance anti-patterns. In Section \ref{sectEvaluation}, we present an evaluation of the actual performance of the reasoning approach for different kinds of IVML models. Finally, in Section \ref{sectConclusion} we conclude and provide an outlook on future work.
+This report is structured as follows: Section \ref{sectApproach} provides an overview of our approach. Section \ref{sectNotation} introduces the notation that we use throughout this report to specify the algorithms. There, we introduce notations for sets, sequences, substitutions as well as relevant IVML concepts. In Section \ref{sectReasoning}, we discuss the top-level algorithms for reasoning and constraint transformation. In Section \ref{sectTranslation}, we detail the translation of constraints for all IVML modeling concepts. Section \ref{sectTopLevelConstraintsRescheduling} discusses the mechanism for re-scheduling constraints, i.e., how to handle value type or constraint variables changes. Moreover, Section \ref{sectValueCreation} provides insights into on-demand value derivation using the previously introduced reasoning algorithms. In Section \ref{sectCompleteness}, we analyze the translations in order to assess their completeness with respect to the IVML specification~\cite{IVML-LS} and indicate the state of the validation in terms of regression test cases. In Section \ref{sectPerformance}, we summarize performance issues, findings and resolutions we made while developing this version of the reasoner, in particular to avoid that future modifications violate already resolved performance anti-patterns. In Section \ref{sectEvaluation}, we present an evaluation of the actual performance of the reasoning approach for different kinds of IVML models. Finally, in Section \ref{sectConclusion} we conclude and provide an outlook on future work.
Index: /reasoner/ivmlCompleteness.tex
===================================================================
--- /reasoner/ivmlCompleteness.tex	(revision 277)
+++ /reasoner/ivmlCompleteness.tex	(revision 278)
@@ -266,5 +266,5 @@
 \end{table*}
 
-As all relevant IVML concepts and combinations are listed in the tables above and they either have a transformation path and test case assigned or shall not be realized at all, we conclude that the reasoning and translation algorithms presented in this report are IVML (not necessarily reasoning) complete.
+As all relevant IVML concepts and combinations are listed in the tables above and they either have a transformation path and test case assigned or shall not be realized at all, we conclude that the reasoning and translation algorithms presented in this report are IVML (not necessarily reasoning) complete. The on-demand value creation in Section \ref{sectValueCreation} is validated by specific test cases that are not mentioned in the tables above.
 
 \clearpage
Index: /reasoner/mainAlgorithms.tex
===================================================================
--- /reasoner/mainAlgorithms.tex	(revision 277)
+++ /reasoner/mainAlgorithms.tex	(revision 278)
@@ -34,5 +34,5 @@
 In the \textbf{full reasoning part}, data structures are set up to store constraints for reuse in the incremental part (if $reuse$ is enabled), here for storing a copy of the constraint base ($base_c$) as well as $\relevantConstraintsPerDeclaration$ and $\relevantConstraintVariables$ storing specific constraint relations. $\relevantConstraintsPerDeclaration$ and $\relevantConstraintVariables$ are important for efficient access to constraints during constraint re-scheduling, i.e., when variable values change as a side effect of value propagation. $\relevantConstraintsPerDeclaration$ is a mapping that links a variable declaration to the constraints using the variable. $\relevantConstraintVariables$ is a bi-directional mapping between constraint values assigned to configured decision variables. $base_{\relevantConstraintsPerDeclaration}$ and $base_{\relevantConstraintVariables}$ are the respective copies if $reuse$ is enabled. 
 
-The resoning process takes each individual project (as top-level evaluation scope) into account and evaluates the constraints defined by the respective project. However, as projects can depend on each other, the reasoning process must follow the import dependencies of the projects starting at those without imports continuing with the dependent projects up to the top-level project in the given configuration $c$. In general, the imports of IVML projects can form a graph with loops, because imports my be cyclic~\cite{IVML-LS} as required in complex topological models. Thus, we determine the project sequence through a cycle-free depth-first traversal of the import graph, i.e., we pretend that the import graph is a tree and ignore imports of already seen projects. The traversal determines the project sequence, a partial ascending order of projects according to their (number of) dependencies. In this sequence, projects with no imports are at the beginning of the sequence and projects with imports are are listed after all their depending projects. line \ref{algMainLoopDiscover}, $discoverProjects(cfg)$\footnote{The algorithm is not further detailed in this report} determines the project sequence of all projects involved in $c$. The loop in lines \ref{algMainLoopStart}-\ref{algMainLoopEnd} processes this project sequence as long as no timeout occurred (global flag $hasTimeout$) or the user stops the reasoning process (global flag $stop$).
+The resoning process takes each individual project (as top-level evaluation scope) into account and evaluates the constraints defined by the respective project. However, as projects can depend on each other, the reasoning process must follow the import dependencies of the projects starting at those without imports continuing with the dependent projects up to the top-level project in the given configuration $c$. In general, the imports of IVML projects can form a graph with loops, because imports my be cyclic~\cite{IVML-LS} as required in complex topological models. Thus, we determine the project sequence through a cycle-free depth-first traversal of the import graph, i.e., we pretend that the import graph is a tree and ignore imports of already seen projects. The traversal determines the project sequence, a partial ascending order of projects according to their (number of) dependencies. 
 
 \begin{algorithm}[H]
@@ -73,4 +73,6 @@
 \end{algorithm}
 
+In this sequence, projects with no imports are at the beginning of the sequence and projects with imports are are listed after all their depending projects. Line \ref{algMainLoopDiscover}, $discoverProjects(cfg)$\footnote{The algorithm is not further detailed in this report} determines the project sequence of all projects involved in $c$. The loop in lines \ref{algMainLoopStart}-\ref{algMainLoopEnd} processes this project sequence as long as no timeout occurred (global flag $hasTimeout$) or the user stops the reasoning process (global flag $stop$).
+
 For each project $p$, the full reasoning loop translates the constraints in $p$ and populates the global constraint base as a side effect of the constraint translation (line \ref{algMainLoopTranslate}, detailed in Section \ref{sectTopLevelConstraintsTranslation}). If enabled by $reuse$, the constraint translation stores the respective population of constraints in $base_c$ and their relations in $base_{\relevantConstraintsPerDeclaration}$ and $base_{\relevantConstraintVariables}$. Then the algorithm performs a forward-chaining evaluation of the constraint base in line \ref{algMainLoopEvaluate} (explained in Section \ref{sectTopLevelConstraintsEvaluation}). If a constraint changes as side effect a configuration variable, the constraints related to that variable are identified via $\relevantConstraintsPerDeclaration$ or $\relevantConstraintVariables$ for re-scheduling (detailed by Algorithm \ref{algVarChange} in Section \ref{sectTopLevelConstraintsRescheduling}). As last step for project $p$, the algorithm freezes the actual values according to the (conditional) freeze-block specifications given in $p$ (line \ref{algMainLoopFreeze}). 
 
Index: /reasoner/measures/benchmark-results-new-1.3-ojdk10-noTypeCache/measurements-rtvil.tsv
===================================================================
--- /reasoner/measures/benchmark-results-new-1.3-ojdk10-noTypeCache/measurements-rtvil.tsv	(revision 278)
+++ /reasoner/measures/benchmark-results-new-1.3-ojdk10-noTypeCache/measurements-rtvil.tsv	(revision 278)
@@ -0,0 +1,17 @@
+model name	URI	tag	runCount	caller	MODEL_ANNOTATIONS	MODEL_COMPLEXITY	MODEL_CONSTRAINT_AVG_COMPLEXITY	MODEL_CONSTRAINT_COMPLEXITY	MODEL_CONSTRAINT_INSTANCES	MODEL_CONSTRAINT_VARIABLES	MODEL_CONSTRAINT_VARIABLES_NO_CONTAINER	MODEL_NORMAL_VARIABLES	MODEL_NORMAL_VARIABLES_NO_CONTAINER	MODEL_TOPLEVEL_VARIABLES	MODEL_VARIABLES	MODEL_VARIABLES_WITHOUT_CONTAINER	MODEL_VARIABLE_AVG_COMPLEXITY	MODEL_VARIABLE_COMPLEXITY	REASONER_CONSTRAINT_COUNT	REASONER_EVALUATION_TIME	REASONER_INSTANCE_CREATION_TIME	REASONER_PROBLEMS	REASONER_PROBLEM_ASSIGNMENTS	REASONER_PROBLEM_CONSTRAINTS	REASONER_REASONING_TIME	REASONER_REEVALUATION_COUNT	REASONER_TRANSLATION_TIME	REASONER_VARIABLES_IN_CONSTRAINTS	RESPONSETIME_AUTO	
+QM2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Instantiation/de.uni_hildesheim.sse.vil.rt.tests/testdata/ivml/QM2.ivml	RT-VIL	1	de.uni_hildesheim.sse.vil.rt.tests.ExecutionRtTests.testParameter	7,00	9,50	0,25	0,50	0,00	0,00	0,00	7,00	7,00	2,00	7,00	7,00	1,29	9,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+Add	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Instantiation/de.uni_hildesheim.sse.vil.rt.tests/testdata/ivml/Add.ivml	RT-VIL	1	de.uni_hildesheim.sse.vil.rt.tests.ExecutionRtTests.testAdd	4,00	5,75	0,25	0,75	0,00	2,00	2,00	2,00	2,00	3,00	4,00	4,00	1,25	5,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+Clear	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Instantiation/de.uni_hildesheim.sse.vil.rt.tests/testdata/ivml/Clear.ivml	RT-VIL	1	de.uni_hildesheim.sse.vil.rt.tests.ExecutionRtTests.testClear	3,00	4,50	0,25	0,50	0,00	1,00	1,00	2,00	2,00	2,00	3,00	3,00	1,33	4,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+QM5	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Instantiation/de.uni_hildesheim.sse.vil.rt.tests/testdata/ivml/QM5.ivml	RT-VIL	1	de.uni_hildesheim.sse.vil.rt.tests.ExecutionRtTests.testReferences2	16,00	23,00	0,25	1,00	0,00	0,00	0,00	16,00	12,00	4,00	16,00	12,00	1,38	22,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+QM8	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Instantiation/de.uni_hildesheim.sse.vil.rt.tests/testdata/ivml/QM8.ivml	RT-VIL	1	de.uni_hildesheim.sse.vil.rt.tests.ExecutionRtTests.testReferences3	8,00	11,75	0,25	0,75	0,00	0,00	0,00	8,00	7,00	3,00	8,00	7,00	1,38	11,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+tactics2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Instantiation/de.uni_hildesheim.sse.vil.rt.tests/testdata/ivml/tactics2.ivml	RT-VIL	1	de.uni_hildesheim.sse.vil.rt.tests.ExecutionRtTests.testTactics2	4,00	6,50	0,25	0,50	0,00	1,00	1,00	3,00	3,00	1,00	4,00	4,00	1,50	6,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+QM6	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Instantiation/de.uni_hildesheim.sse.vil.rt.tests/testdata/ivml/QM6.ivml	RT-VIL	1	de.uni_hildesheim.sse.vil.rt.tests.ExecutionRtTests.testInstances2	9,00	12,25	0,25	0,25	0,00	0,00	0,00	9,00	9,00	1,00	9,00	9,00	1,33	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	4,00	0,00	
+QM7	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Instantiation/de.uni_hildesheim.sse.vil.rt.tests/testdata/ivml/QM7.ivml	RT-VIL	1	de.uni_hildesheim.sse.vil.rt.tests.ExecutionRtTests.testInstances3	9,00	12,25	0,25	0,25	0,00	0,00	0,00	9,00	9,00	1,00	9,00	9,00	1,33	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	4,00	0,00	
+QM3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Instantiation/de.uni_hildesheim.sse.vil.rt.tests/testdata/ivml/QM3.ivml	RT-VIL	1	de.uni_hildesheim.sse.vil.rt.tests.ExecutionRtTests.testMapping	11,00	15,50	0,50	1,50	0,00	0,00	0,00	11,00	9,00	3,00	11,00	9,00	1,27	14,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+QM4	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Instantiation/de.uni_hildesheim.sse.vil.rt.tests/testdata/ivml/QM4.ivml	RT-VIL	1	de.uni_hildesheim.sse.vil.rt.tests.ExecutionRtTests.testReferences	8,00	11,75	0,25	0,75	0,00	0,00	0,00	8,00	7,00	3,00	8,00	7,00	1,38	11,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+QM6	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Instantiation/de.uni_hildesheim.sse.vil.rt.tests/testdata/ivml/QM6.ivml	RT-VIL	1	de.uni_hildesheim.sse.vil.rt.tests.ExecutionRtTests.testInstances	9,00	12,25	0,25	0,25	0,00	0,00	0,00	9,00	9,00	1,00	9,00	9,00	1,33	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	4,00	0,00	
+dispatch2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Instantiation/de.uni_hildesheim.sse.vil.rt.tests/testdata/ivml/dispatch2.ivml	RT-VIL	1	de.uni_hildesheim.sse.vil.rt.tests.ExecutionRtTests.testDispatch2	10,00	15,50	0,25	0,50	0,00	0,00	0,00	11,00	10,00	3,00	11,00	10,00	1,36	15,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+ALtest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Instantiation/de.uni_hildesheim.sse.vil.rt.tests/testdata/ivml/ALtest.ivml	RT-VIL	1	de.uni_hildesheim.sse.vil.rt.tests.ExecutionRtTests.testALTest	41,00	56,75	0,31	2,75	0,00	0,00	0,00	41,00	33,00	9,00	41,00	33,00	1,32	54,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+QM1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Instantiation/de.uni_hildesheim.sse.vil.rt.tests/testdata/ivml/QM1.ivml	RT-VIL	1	de.uni_hildesheim.sse.vil.rt.tests.ExecutionRtTests.testStartup3	29,00	43,75	0,39	2,75	0,00	1,00	0,00	28,00	23,00	7,00	29,00	23,00	1,41	41,00	1,00	0,00	0,00	0,00	0,00	0,00	16,00	1,00	16,00	2,00	16,00	
+QM1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Instantiation/de.uni_hildesheim.sse.vil.rt.tests/testdata/ivml/QM1.ivml	RT-VIL	1	de.uni_hildesheim.sse.vil.rt.tests.ExecutionRtTests.testStartup4	29,00	43,75	0,39	2,75	0,00	1,00	0,00	28,00	23,00	7,00	29,00	23,00	1,41	41,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	2,00	0,00	
+QM1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Instantiation/de.uni_hildesheim.sse.vil.rt.tests/testdata/ivml/QM1.ivml	RT-VIL	1	de.uni_hildesheim.sse.vil.rt.tests.ExecutionRtTests.testStartup5	29,00	43,75	0,39	2,75	0,00	1,00	0,00	28,00	23,00	7,00	29,00	23,00	1,41	41,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	2,00	0,00	
Index: /reasoner/measures/benchmark-results-new-1.3-ojdk10-noTypeCache/measurements-scaleLog.tsv
===================================================================
--- /reasoner/measures/benchmark-results-new-1.3-ojdk10-noTypeCache/measurements-scaleLog.tsv	(revision 278)
+++ /reasoner/measures/benchmark-results-new-1.3-ojdk10-noTypeCache/measurements-scaleLog.tsv	(revision 278)
@@ -0,0 +1,61 @@
+model name	URI	tag	runCount	caller	MODEL_ANNOTATIONS	MODEL_COMPLEXITY	MODEL_CONSTRAINT_AVG_COMPLEXITY	MODEL_CONSTRAINT_COMPLEXITY	MODEL_CONSTRAINT_INSTANCES	MODEL_CONSTRAINT_VARIABLES	MODEL_CONSTRAINT_VARIABLES_NO_CONTAINER	MODEL_NORMAL_VARIABLES	MODEL_NORMAL_VARIABLES_NO_CONTAINER	MODEL_TOPLEVEL_VARIABLES	MODEL_VARIABLES	MODEL_VARIABLES_WITHOUT_CONTAINER	MODEL_VARIABLE_AVG_COMPLEXITY	MODEL_VARIABLE_COMPLEXITY	REASONER_CONSTRAINT_COUNT	REASONER_EVALUATION_TIME	REASONER_INSTANCE_CREATION_TIME	REASONER_PROBLEMS	REASONER_PROBLEM_ASSIGNMENTS	REASONER_PROBLEM_CONSTRAINTS	REASONER_REASONING_TIME	REASONER_REEVALUATION_COUNT	REASONER_TRANSLATION_TIME	REASONER_VARIABLES_IN_CONSTRAINTS	RESPONSETIME_AUTO	
+cp	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/cp/EASy/cp_0.ivml	SCENARIO	1	net.ssehub.easy.scaleLog.RealTests.classpathTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	16,00	1,00	16,00	0,00	16,00	
+cp	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/cp/EASy/cp_0.ivml	SCENARIO	2	net.ssehub.easy.scaleLog.RealTests.classpathTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+cp	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/cp/EASy/cp_0.ivml	SCENARIO	3	net.ssehub.easy.scaleLog.RealTests.classpathTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+cp	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/cp/EASy/cp_0.ivml	SCENARIO	4	net.ssehub.easy.scaleLog.RealTests.classpathTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+cp	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/cp/EASy/cp_0.ivml	SCENARIO	5	net.ssehub.easy.scaleLog.RealTests.classpathTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+cp	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/cp/EASy/cp_0.ivml	SCENARIO	6	net.ssehub.easy.scaleLog.RealTests.classpathTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+cp	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/cp/EASy/cp_0.ivml	SCENARIO	7	net.ssehub.easy.scaleLog.RealTests.classpathTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+cp	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/cp/EASy/cp_0.ivml	SCENARIO	8	net.ssehub.easy.scaleLog.RealTests.classpathTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+cp	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/cp/EASy/cp_0.ivml	SCENARIO	9	net.ssehub.easy.scaleLog.RealTests.classpathTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+cp	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/cp/EASy/cp_0.ivml	SCENARIO	10	net.ssehub.easy.scaleLog.RealTests.classpathTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	1	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13ConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	16,00	0,00	0,00	0,00	0,00	16,00	54,00	0,00	12,00	16,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	2	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13ConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	16,00	0,00	0,00	0,00	0,00	16,00	54,00	0,00	12,00	16,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	3	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13ConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	16,00	0,00	0,00	0,00	0,00	16,00	54,00	0,00	12,00	16,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	4	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13ConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	5	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13ConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	16,00	54,00	0,00	12,00	16,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	6	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13ConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	15,00	0,00	0,00	0,00	0,00	15,00	54,00	0,00	12,00	15,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	7	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13ConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	8	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13ConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	15,00	54,00	0,00	12,00	15,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	9	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13ConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	16,00	54,00	16,00	12,00	16,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	10	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13ConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	16,00	0,00	0,00	0,00	0,00	16,00	54,00	0,00	12,00	16,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/00_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	1	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnum	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/00_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	2	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnum	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/00_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	3	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnum	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/00_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	4	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnum	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/00_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	5	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnum	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	16,00	0,00	0,00	0,00	0,00	16,00	54,00	0,00	12,00	16,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/00_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	6	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnum	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	16,00	0,00	0,00	0,00	0,00	16,00	54,00	0,00	12,00	16,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/00_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	7	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnum	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/00_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	8	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnum	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/00_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	9	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnum	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	16,00	0,00	0,00	0,00	0,00	16,00	54,00	0,00	12,00	16,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/00_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	10	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnum	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/01_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	1	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13NoConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/01_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	2	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13NoConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	16,00	0,00	0,00	0,00	0,00	16,00	54,00	0,00	12,00	16,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/01_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	3	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13NoConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/01_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	4	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13NoConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/01_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	5	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13NoConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	16,00	54,00	16,00	12,00	16,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/01_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	6	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13NoConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	16,00	0,00	0,00	0,00	0,00	16,00	54,00	0,00	12,00	16,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/01_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	7	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13NoConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/01_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	8	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13NoConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	15,00	54,00	15,00	12,00	15,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/01_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	9	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13NoConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/01_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	10	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13NoConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/02_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	1	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnumJPath	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/02_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	2	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnumJPath	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/02_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	3	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnumJPath	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/02_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	4	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnumJPath	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/02_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	5	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnumJPath	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/02_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	6	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnumJPath	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	16,00	0,00	0,00	0,00	0,00	16,00	54,00	0,00	12,00	16,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/02_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	7	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnumJPath	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/02_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	8	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnumJPath	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	15,00	0,00	0,00	0,00	0,00	15,00	54,00	0,00	12,00	15,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/02_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	9	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnumJPath	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/02_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	10	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnumJPath	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	16,00	54,00	0,00	12,00	16,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/03_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	1	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByName	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	16,00	54,00	16,00	12,00	16,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/03_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	2	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByName	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/03_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	3	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByName	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	15,00	54,00	15,00	12,00	15,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/03_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	4	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByName	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/03_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	5	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByName	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/03_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	6	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByName	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/03_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	7	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByName	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/03_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	8	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByName	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/03_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	9	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByName	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	15,00	0,00	0,00	0,00	0,00	15,00	54,00	0,00	12,00	15,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/03_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	10	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByName	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
Index: /reasoner/measures/benchmark-results-new-1.3-ojdk10-noTypeCache/measurements-scenarioVariants.tsv
===================================================================
--- /reasoner/measures/benchmark-results-new-1.3-ojdk10-noTypeCache/measurements-scenarioVariants.tsv	(revision 278)
+++ /reasoner/measures/benchmark-results-new-1.3-ojdk10-noTypeCache/measurements-scenarioVariants.tsv	(revision 278)
@@ -0,0 +1,301 @@
+model name	URI	tag	runCount	caller	MODEL_ANNOTATIONS	MODEL_COMPLEXITY	MODEL_CONSTRAINT_AVG_COMPLEXITY	MODEL_CONSTRAINT_COMPLEXITY	MODEL_CONSTRAINT_INSTANCES	MODEL_CONSTRAINT_VARIABLES	MODEL_CONSTRAINT_VARIABLES_NO_CONTAINER	MODEL_NORMAL_VARIABLES	MODEL_NORMAL_VARIABLES_NO_CONTAINER	MODEL_TOPLEVEL_VARIABLES	MODEL_VARIABLES	MODEL_VARIABLES_WITHOUT_CONTAINER	MODEL_VARIABLE_AVG_COMPLEXITY	MODEL_VARIABLE_COMPLEXITY	REASONER_CONSTRAINT_COUNT	REASONER_EVALUATION_TIME	REASONER_INSTANCE_CREATION_TIME	REASONER_PROBLEMS	REASONER_PROBLEM_ASSIGNMENTS	REASONER_PROBLEM_CONSTRAINTS	REASONER_REASONING_TIME	REASONER_REEVALUATION_COUNT	REASONER_TRANSLATION_TIME	REASONER_VARIABLES_IN_CONSTRAINTS	RESPONSETIME_AUTO	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11623,00	13980,00	0,66	2299,00	164,00	2590,00	2582,00	7663,00	6799,00	275,00	10253,00	9381,00	1,14	11681,00	9370,00	157,00	0,00	0,00	0,00	0,00	406,00	10960,00	187,00	5021,00	421,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11623,00	13980,00	0,66	2299,00	164,00	2590,00	2582,00	7663,00	6799,00	275,00	10253,00	9381,00	1,14	11681,00	9370,00	94,00	0,00	0,00	0,00	0,00	312,00	10960,00	171,00	5021,00	328,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11623,00	13980,00	0,66	2299,00	164,00	2590,00	2582,00	7663,00	6799,00	275,00	10253,00	9381,00	1,14	11681,00	9370,00	169,00	0,00	0,00	0,00	0,00	390,00	10959,00	158,00	5021,00	406,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11623,00	13980,00	0,66	2299,00	164,00	2590,00	2582,00	7663,00	6799,00	275,00	10253,00	9381,00	1,14	11681,00	9370,00	125,00	0,00	0,00	0,00	0,00	312,00	10959,00	124,00	5021,00	328,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11623,00	13980,00	0,66	2299,00	164,00	2590,00	2582,00	7663,00	6799,00	275,00	10253,00	9381,00	1,14	11681,00	9370,00	79,00	0,00	0,00	0,00	0,00	235,00	10960,00	94,00	5021,00	250,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11623,00	13980,00	0,66	2299,00	164,00	2590,00	2582,00	7663,00	6799,00	275,00	10253,00	9381,00	1,14	11681,00	9370,00	94,00	0,00	0,00	0,00	0,00	250,00	10961,00	125,00	5021,00	250,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11623,00	13980,00	0,66	2299,00	164,00	2590,00	2582,00	7663,00	6799,00	275,00	10253,00	9381,00	1,14	11681,00	9370,00	61,00	0,00	0,00	0,00	0,00	220,00	10959,00	110,00	5021,00	220,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11623,00	13980,00	0,66	2299,00	164,00	2590,00	2582,00	7663,00	6799,00	275,00	10253,00	9381,00	1,14	11681,00	9370,00	155,00	0,00	0,00	0,00	0,00	266,00	10961,00	79,00	5021,00	266,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11623,00	13980,00	0,66	2299,00	164,00	2590,00	2582,00	7663,00	6799,00	275,00	10253,00	9381,00	1,14	11681,00	9370,00	95,00	0,00	0,00	0,00	0,00	219,00	10959,00	94,00	5021,00	219,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11623,00	13980,00	0,66	2299,00	164,00	2590,00	2582,00	7663,00	6799,00	275,00	10253,00	9381,00	1,14	11681,00	9370,00	125,00	0,00	0,00	0,00	0,00	203,00	10961,00	46,00	5021,00	219,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	164,00	0,00	0,00	1,00	0,00	1,00	62,00	164,00	15,00	1077,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	164,00	0,00	0,00	1,00	0,00	1,00	63,00	164,00	16,00	1077,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	164,00	0,00	0,00	1,00	0,00	1,00	63,00	164,00	32,00	1077,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	164,00	16,00	0,00	1,00	0,00	1,00	63,00	164,00	0,00	1077,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	164,00	0,00	0,00	1,00	0,00	1,00	62,00	164,00	30,00	1077,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	164,00	0,00	0,00	1,00	0,00	1,00	62,00	164,00	15,00	1077,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	164,00	0,00	0,00	1,00	0,00	1,00	62,00	164,00	32,00	1077,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	164,00	0,00	0,00	1,00	0,00	1,00	63,00	164,00	32,00	1077,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	164,00	16,00	0,00	1,00	0,00	1,00	78,00	164,00	15,00	1077,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	164,00	0,00	0,00	1,00	0,00	1,00	63,00	164,00	16,00	1077,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	164,00	0,00	0,00	1,00	0,00	1,00	125,00	164,00	63,00	1077,00	125,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	164,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	164,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	0,00	0,00	0,00	1,00	0,00	1,00	63,00	164,00	0,00	0,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	164,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	0,00	0,00	0,00	1,00	0,00	1,00	46,00	164,00	0,00	0,00	46,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	164,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	0,00	0,00	0,00	1,00	0,00	1,00	32,00	164,00	0,00	0,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	164,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	164,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	9037,00	9553,50	0,69	1613,50	121,00	1672,00	1665,00	5333,00	4535,00	244,00	7005,00	6200,00	1,13	7940,00	8258,00	110,00	0,00	0,00	0,00	0,00	188,00	9331,00	78,00	4386,00	188,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	9037,00	9553,50	0,69	1613,50	121,00	1672,00	1665,00	5333,00	4535,00	244,00	7005,00	6200,00	1,13	7940,00	8258,00	62,00	0,00	0,00	0,00	0,00	188,00	9329,00	63,00	4386,00	204,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	9037,00	9553,50	0,69	1613,50	121,00	1672,00	1665,00	5333,00	4535,00	244,00	7005,00	6200,00	1,13	7940,00	8258,00	62,00	0,00	0,00	0,00	0,00	172,00	9329,00	94,00	4386,00	187,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	9037,00	9553,50	0,69	1613,50	121,00	1672,00	1665,00	5333,00	4535,00	244,00	7005,00	6200,00	1,13	7940,00	8258,00	62,00	0,00	0,00	0,00	0,00	187,00	9327,00	94,00	4386,00	187,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	9037,00	9553,50	0,69	1613,50	121,00	1672,00	1665,00	5333,00	4535,00	244,00	7005,00	6200,00	1,13	7940,00	8258,00	47,00	0,00	0,00	0,00	0,00	172,00	9329,00	79,00	4386,00	172,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	9037,00	9553,50	0,69	1613,50	121,00	1672,00	1665,00	5333,00	4535,00	244,00	7005,00	6200,00	1,13	7940,00	8258,00	78,00	0,00	0,00	0,00	0,00	234,00	9328,00	77,00	4386,00	250,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	9037,00	9553,50	0,69	1613,50	121,00	1672,00	1665,00	5333,00	4535,00	244,00	7005,00	6200,00	1,13	7940,00	8258,00	79,00	0,00	0,00	0,00	0,00	203,00	9334,00	93,00	4386,00	219,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	9037,00	9553,50	0,69	1613,50	121,00	1672,00	1665,00	5333,00	4535,00	244,00	7005,00	6200,00	1,13	7940,00	8258,00	47,00	0,00	0,00	0,00	0,00	188,00	9331,00	78,00	4386,00	204,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	9037,00	9553,50	0,69	1613,50	121,00	1672,00	1665,00	5333,00	4535,00	244,00	7005,00	6200,00	1,13	7940,00	8258,00	62,00	0,00	0,00	0,00	0,00	172,00	9326,00	94,00	4386,00	172,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	9037,00	9553,50	0,69	1613,50	121,00	1672,00	1665,00	5333,00	4535,00	244,00	7005,00	6200,00	1,13	7940,00	8258,00	30,00	0,00	0,00	0,00	0,00	187,00	9325,00	125,00	4386,00	187,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	260,00	0,00	0,00	1,00	0,00	1,00	63,00	260,00	16,00	1287,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	260,00	0,00	0,00	1,00	0,00	1,00	62,00	260,00	30,00	1287,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	260,00	0,00	0,00	1,00	0,00	1,00	47,00	260,00	31,00	1287,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	260,00	0,00	0,00	1,00	0,00	1,00	46,00	260,00	31,00	1287,00	46,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	260,00	0,00	0,00	1,00	0,00	1,00	63,00	260,00	15,00	1287,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	260,00	0,00	0,00	1,00	0,00	1,00	94,00	260,00	31,00	1287,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	260,00	0,00	0,00	1,00	0,00	1,00	47,00	260,00	0,00	1287,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	260,00	0,00	0,00	1,00	0,00	1,00	47,00	260,00	31,00	1287,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	260,00	0,00	0,00	1,00	0,00	1,00	62,00	260,00	15,00	1287,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	260,00	0,00	0,00	1,00	0,00	1,00	47,00	260,00	31,00	1287,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	260,00	0,00	0,00	1,00	0,00	1,00	46,00	260,00	16,00	1287,00	46,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	260,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	0,00	0,00	0,00	1,00	0,00	1,00	32,00	260,00	0,00	0,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	260,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	260,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	260,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	260,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	260,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	0,00	0,00	0,00	1,00	0,00	1,00	32,00	260,00	0,00	0,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	0,00	0,00	0,00	1,00	0,00	1,00	16,00	260,00	0,00	0,00	16,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10093,00	10369,75	0,68	1755,75	139,00	1817,00	1810,00	5786,00	4972,00	260,00	7603,00	6782,00	1,13	8614,00	9280,00	94,00	0,00	0,00	0,00	0,00	203,00	10517,00	94,00	4827,00	203,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10093,00	10369,75	0,68	1755,75	139,00	1817,00	1810,00	5786,00	4972,00	260,00	7603,00	6782,00	1,13	8614,00	9280,00	79,00	0,00	0,00	0,00	0,00	187,00	10530,00	76,00	4827,00	203,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10093,00	10369,75	0,68	1755,75	139,00	1817,00	1810,00	5786,00	4972,00	260,00	7603,00	6782,00	1,13	8614,00	9280,00	92,00	0,00	0,00	0,00	0,00	203,00	10522,00	95,00	4827,00	203,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10093,00	10369,75	0,68	1755,75	139,00	1817,00	1810,00	5786,00	4972,00	260,00	7603,00	6782,00	1,13	8614,00	9280,00	95,00	0,00	0,00	0,00	0,00	219,00	10520,00	78,00	4827,00	234,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10093,00	10369,75	0,68	1755,75	139,00	1817,00	1810,00	5786,00	4972,00	260,00	7603,00	6782,00	1,13	8614,00	9280,00	77,00	0,00	0,00	0,00	0,00	188,00	10524,00	79,00	4827,00	203,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10093,00	10369,75	0,68	1755,75	139,00	1817,00	1810,00	5786,00	4972,00	260,00	7603,00	6782,00	1,13	8614,00	9280,00	78,00	0,00	0,00	0,00	0,00	203,00	10522,00	95,00	4827,00	203,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10093,00	10369,75	0,68	1755,75	139,00	1817,00	1810,00	5786,00	4972,00	260,00	7603,00	6782,00	1,13	8614,00	9280,00	79,00	0,00	0,00	0,00	0,00	203,00	10519,00	109,00	4827,00	203,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10093,00	10369,75	0,68	1755,75	139,00	1817,00	1810,00	5786,00	4972,00	260,00	7603,00	6782,00	1,13	8614,00	9280,00	92,00	0,00	0,00	0,00	0,00	188,00	10527,00	80,00	4827,00	203,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10093,00	10369,75	0,68	1755,75	139,00	1817,00	1810,00	5786,00	4972,00	260,00	7603,00	6782,00	1,13	8614,00	9280,00	32,00	0,00	0,00	0,00	0,00	187,00	10521,00	109,00	4827,00	187,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10093,00	10369,75	0,68	1755,75	139,00	1817,00	1810,00	5786,00	4972,00	260,00	7603,00	6782,00	1,13	8614,00	9280,00	78,00	0,00	0,00	0,00	0,00	187,00	10524,00	77,00	4827,00	187,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	312,00	0,00	0,00	1,00	0,00	1,00	62,00	312,00	0,00	1556,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	312,00	0,00	0,00	1,00	0,00	1,00	63,00	312,00	16,00	1556,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	312,00	0,00	0,00	1,00	0,00	1,00	47,00	312,00	31,00	1556,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	312,00	0,00	0,00	1,00	0,00	1,00	63,00	312,00	0,00	1556,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	312,00	0,00	0,00	1,00	0,00	1,00	62,00	312,00	47,00	1556,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	312,00	16,00	0,00	1,00	0,00	1,00	63,00	312,00	47,00	1556,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	312,00	0,00	0,00	1,00	0,00	1,00	78,00	312,00	30,00	1556,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	312,00	0,00	0,00	1,00	0,00	1,00	62,00	312,00	0,00	1556,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	312,00	16,00	0,00	1,00	0,00	1,00	47,00	312,00	16,00	1556,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	312,00	15,00	0,00	1,00	0,00	1,00	47,00	312,00	0,00	1556,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	312,00	0,00	0,00	1,00	0,00	1,00	62,00	312,00	31,00	1556,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	0,00	0,00	0,00	1,00	0,00	1,00	16,00	312,00	0,00	0,00	16,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	312,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	0,00	16,00	0,00	1,00	0,00	1,00	32,00	312,00	0,00	0,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	0,00	0,00	0,00	1,00	0,00	1,00	32,00	312,00	0,00	0,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	0,00	0,00	0,00	1,00	0,00	1,00	16,00	312,00	0,00	0,00	16,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	0,00	0,00	0,00	1,00	0,00	1,00	32,00	312,00	0,00	0,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	312,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	0,00	0,00	0,00	1,00	0,00	1,00	16,00	312,00	0,00	0,00	16,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	312,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10825,00	10868,00	0,67	1835,00	154,00	1906,00	1899,00	6069,00	5246,00	271,00	7975,00	7145,00	1,13	9033,00	9983,00	92,00	0,00	0,00	0,00	0,00	234,00	11356,00	126,00	5212,00	250,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10825,00	10868,00	0,67	1835,00	154,00	1906,00	1899,00	6069,00	5246,00	271,00	7975,00	7145,00	1,13	9033,00	9983,00	78,00	0,00	0,00	0,00	0,00	219,00	11332,00	110,00	5212,00	234,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10825,00	10868,00	0,67	1835,00	154,00	1906,00	1899,00	6069,00	5246,00	271,00	7975,00	7145,00	1,13	9033,00	9983,00	78,00	0,00	0,00	0,00	0,00	234,00	11339,00	124,00	5212,00	250,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10825,00	10868,00	0,67	1835,00	154,00	1906,00	1899,00	6069,00	5246,00	271,00	7975,00	7145,00	1,13	9033,00	9983,00	93,00	0,00	0,00	0,00	0,00	281,00	11335,00	141,00	5212,00	297,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10825,00	10868,00	0,67	1835,00	154,00	1906,00	1899,00	6069,00	5246,00	271,00	7975,00	7145,00	1,13	9033,00	9983,00	109,00	0,00	0,00	0,00	0,00	297,00	11352,00	173,00	5212,00	297,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10825,00	10868,00	0,67	1835,00	154,00	1906,00	1899,00	6069,00	5246,00	271,00	7975,00	7145,00	1,13	9033,00	9983,00	96,00	0,00	0,00	0,00	0,00	219,00	11349,00	123,00	5212,00	234,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10825,00	10868,00	0,67	1835,00	154,00	1906,00	1899,00	6069,00	5246,00	271,00	7975,00	7145,00	1,13	9033,00	9983,00	110,00	0,00	0,00	0,00	0,00	250,00	11353,00	95,00	5212,00	250,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10825,00	10868,00	0,67	1835,00	154,00	1906,00	1899,00	6069,00	5246,00	271,00	7975,00	7145,00	1,13	9033,00	9983,00	95,00	0,00	0,00	0,00	0,00	219,00	11342,00	94,00	5212,00	219,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10825,00	10868,00	0,67	1835,00	154,00	1906,00	1899,00	6069,00	5246,00	271,00	7975,00	7145,00	1,13	9033,00	9983,00	79,00	0,00	0,00	0,00	0,00	203,00	11342,00	93,00	5212,00	203,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10825,00	10868,00	0,67	1835,00	154,00	1906,00	1899,00	6069,00	5246,00	271,00	7975,00	7145,00	1,13	9033,00	9983,00	94,00	0,00	0,00	0,00	0,00	250,00	11348,00	126,00	5212,00	250,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	354,00	0,00	0,00	1,00	0,00	1,00	47,00	354,00	31,00	1766,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	354,00	0,00	0,00	1,00	0,00	1,00	62,00	354,00	15,00	1766,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	354,00	0,00	0,00	1,00	0,00	1,00	94,00	354,00	78,00	1766,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	354,00	0,00	0,00	1,00	0,00	1,00	63,00	354,00	47,00	1766,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	354,00	0,00	0,00	1,00	0,00	1,00	78,00	354,00	31,00	1766,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	354,00	0,00	0,00	1,00	0,00	1,00	62,00	354,00	46,00	1766,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	354,00	0,00	0,00	1,00	0,00	1,00	47,00	354,00	15,00	1766,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	354,00	0,00	0,00	1,00	0,00	1,00	62,00	354,00	31,00	1766,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	354,00	0,00	0,00	1,00	0,00	1,00	78,00	354,00	47,00	1766,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	354,00	0,00	0,00	1,00	0,00	1,00	63,00	354,00	32,00	1766,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	354,00	0,00	0,00	1,00	0,00	1,00	63,00	354,00	31,00	1766,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	354,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	354,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	354,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	354,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	354,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	0,00	0,00	0,00	1,00	0,00	1,00	15,00	354,00	0,00	0,00	15,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	354,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	0,00	16,00	0,00	1,00	0,00	1,00	31,00	354,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	354,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	13094,00	12858,50	0,65	2158,50	185,00	2304,00	2297,00	7128,00	6270,00	304,00	9432,00	8567,00	1,13	10700,00	11929,00	110,00	0,00	0,00	0,00	0,00	281,00	13607,00	139,00	5887,00	297,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	13094,00	12858,50	0,65	2158,50	185,00	2304,00	2297,00	7128,00	6270,00	304,00	9432,00	8567,00	1,13	10700,00	11929,00	125,00	0,00	0,00	0,00	0,00	297,00	13606,00	126,00	5887,00	312,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	13094,00	12858,50	0,65	2158,50	185,00	2304,00	2297,00	7128,00	6270,00	304,00	9432,00	8567,00	1,13	10700,00	11929,00	171,00	0,00	0,00	0,00	0,00	281,00	13616,00	78,00	5887,00	281,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	13094,00	12858,50	0,65	2158,50	185,00	2304,00	2297,00	7128,00	6270,00	304,00	9432,00	8567,00	1,13	10700,00	11929,00	110,00	0,00	0,00	0,00	0,00	266,00	13618,00	140,00	5887,00	266,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	13094,00	12858,50	0,65	2158,50	185,00	2304,00	2297,00	7128,00	6270,00	304,00	9432,00	8567,00	1,13	10700,00	11929,00	77,00	0,00	0,00	0,00	0,00	281,00	13612,00	142,00	5887,00	281,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	13094,00	12858,50	0,65	2158,50	185,00	2304,00	2297,00	7128,00	6270,00	304,00	9432,00	8567,00	1,13	10700,00	11929,00	93,00	0,00	0,00	0,00	0,00	266,00	13613,00	157,00	5887,00	266,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	13094,00	12858,50	0,65	2158,50	185,00	2304,00	2297,00	7128,00	6270,00	304,00	9432,00	8567,00	1,13	10700,00	11929,00	110,00	0,00	0,00	0,00	0,00	281,00	13604,00	155,00	5887,00	296,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	13094,00	12858,50	0,65	2158,50	185,00	2304,00	2297,00	7128,00	6270,00	304,00	9432,00	8567,00	1,13	10700,00	11929,00	93,00	0,00	0,00	0,00	0,00	266,00	13622,00	142,00	5887,00	282,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	13094,00	12858,50	0,65	2158,50	185,00	2304,00	2297,00	7128,00	6270,00	304,00	9432,00	8567,00	1,13	10700,00	11929,00	92,00	0,00	0,00	0,00	0,00	266,00	13613,00	142,00	5887,00	266,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	13094,00	12858,50	0,65	2158,50	185,00	2304,00	2297,00	7128,00	6270,00	304,00	9432,00	8567,00	1,13	10700,00	11929,00	77,00	0,00	0,00	0,00	0,00	250,00	13603,00	110,00	5887,00	266,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	443,00	0,00	0,00	1,00	0,00	1,00	93,00	443,00	62,00	2104,00	93,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	443,00	0,00	0,00	1,00	0,00	1,00	78,00	443,00	62,00	2104,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	443,00	0,00	0,00	1,00	0,00	1,00	94,00	443,00	32,00	2104,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	443,00	0,00	0,00	1,00	0,00	1,00	78,00	443,00	63,00	2104,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	443,00	16,00	0,00	1,00	0,00	1,00	94,00	443,00	47,00	2104,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	443,00	0,00	0,00	1,00	0,00	1,00	78,00	443,00	16,00	2104,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	443,00	0,00	0,00	1,00	0,00	1,00	78,00	443,00	15,00	2104,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	443,00	0,00	0,00	1,00	0,00	1,00	78,00	443,00	47,00	2104,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	443,00	0,00	0,00	1,00	0,00	1,00	78,00	443,00	16,00	2104,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	443,00	0,00	0,00	1,00	0,00	1,00	78,00	443,00	47,00	2104,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	443,00	0,00	0,00	1,00	0,00	1,00	63,00	443,00	16,00	2104,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	0,00	0,00	0,00	1,00	0,00	1,00	46,00	443,00	0,00	0,00	46,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	443,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	443,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	443,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	443,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	0,00	0,00	0,00	1,00	0,00	1,00	79,00	443,00	0,00	0,00	79,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	443,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	443,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	0,00	0,00	0,00	1,00	0,00	1,00	62,00	443,00	0,00	0,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14095,00	13697,25	0,64	2289,25	203,00	2464,00	2457,00	7588,00	6714,00	318,00	10052,00	9171,00	1,13	11408,00	12775,00	126,00	0,00	0,00	0,00	0,00	281,00	14628,00	155,00	6373,00	297,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14095,00	13697,25	0,64	2289,25	203,00	2464,00	2457,00	7588,00	6714,00	318,00	10052,00	9171,00	1,13	11408,00	12775,00	94,00	0,00	0,00	0,00	0,00	281,00	14614,00	140,00	6373,00	297,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14095,00	13697,25	0,64	2289,25	203,00	2464,00	2457,00	7588,00	6714,00	318,00	10052,00	9171,00	1,13	11408,00	12775,00	108,00	0,00	0,00	0,00	0,00	312,00	14609,00	189,00	6373,00	312,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14095,00	13697,25	0,64	2289,25	203,00	2464,00	2457,00	7588,00	6714,00	318,00	10052,00	9171,00	1,13	11408,00	12775,00	155,00	0,00	0,00	0,00	0,00	328,00	14630,00	142,00	6373,00	328,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14095,00	13697,25	0,64	2289,25	203,00	2464,00	2457,00	7588,00	6714,00	318,00	10052,00	9171,00	1,13	11408,00	12775,00	111,00	0,00	0,00	0,00	0,00	283,00	14622,00	156,00	6373,00	298,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14095,00	13697,25	0,64	2289,25	203,00	2464,00	2457,00	7588,00	6714,00	318,00	10052,00	9171,00	1,13	11408,00	12775,00	140,00	0,00	0,00	0,00	0,00	329,00	14633,00	142,00	6373,00	329,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14095,00	13697,25	0,64	2289,25	203,00	2464,00	2457,00	7588,00	6714,00	318,00	10052,00	9171,00	1,13	11408,00	12775,00	124,00	0,00	0,00	0,00	0,00	297,00	14619,00	125,00	6373,00	313,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14095,00	13697,25	0,64	2289,25	203,00	2464,00	2457,00	7588,00	6714,00	318,00	10052,00	9171,00	1,13	11408,00	12775,00	140,00	0,00	0,00	0,00	0,00	328,00	14614,00	157,00	6373,00	328,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14095,00	13697,25	0,64	2289,25	203,00	2464,00	2457,00	7588,00	6714,00	318,00	10052,00	9171,00	1,13	11408,00	12775,00	111,00	0,00	0,00	0,00	0,00	281,00	14621,00	139,00	6373,00	297,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14095,00	13697,25	0,64	2289,25	203,00	2464,00	2457,00	7588,00	6714,00	318,00	10052,00	9171,00	1,13	11408,00	12775,00	78,00	0,00	0,00	0,00	0,00	328,00	14612,00	172,00	6373,00	344,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	485,00	16,00	0,00	1,00	0,00	1,00	78,00	485,00	31,00	2349,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	485,00	0,00	0,00	1,00	0,00	1,00	94,00	485,00	47,00	2349,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	485,00	0,00	0,00	1,00	0,00	1,00	78,00	485,00	32,00	2349,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	485,00	0,00	0,00	1,00	0,00	1,00	78,00	485,00	62,00	2349,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	485,00	0,00	0,00	1,00	0,00	1,00	78,00	485,00	48,00	2349,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	485,00	0,00	0,00	1,00	0,00	1,00	78,00	485,00	16,00	2349,00	93,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	485,00	0,00	0,00	1,00	0,00	1,00	94,00	485,00	47,00	2349,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	485,00	0,00	0,00	1,00	0,00	1,00	93,00	485,00	62,00	2349,00	93,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	485,00	0,00	0,00	1,00	0,00	1,00	94,00	485,00	62,00	2349,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	485,00	16,00	0,00	1,00	0,00	1,00	78,00	485,00	32,00	2349,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	485,00	0,00	0,00	1,00	0,00	1,00	94,00	485,00	63,00	2349,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	485,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	485,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	485,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	485,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	0,00	0,00	0,00	1,00	0,00	1,00	46,00	485,00	0,00	0,00	46,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	0,00	0,00	0,00	1,00	0,00	1,00	63,00	485,00	0,00	0,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	485,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	0,00	0,00	0,00	1,00	0,00	1,00	93,00	485,00	0,00	0,00	93,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	485,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14516,00	13983,75	0,64	2335,75	212,00	2515,00	2508,00	7751,00	6868,00	324,00	10266,00	9376,00	1,13	11648,00	13183,00	109,00	0,00	0,00	0,00	0,00	312,00	15124,00	141,00	6771,00	328,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14516,00	13983,75	0,64	2335,75	212,00	2515,00	2508,00	7751,00	6868,00	324,00	10266,00	9376,00	1,13	11648,00	13183,00	170,00	0,00	0,00	0,00	0,00	312,00	15149,00	126,00	6771,00	328,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14516,00	13983,75	0,64	2335,75	212,00	2515,00	2508,00	7751,00	6868,00	324,00	10266,00	9376,00	1,13	11648,00	13183,00	93,00	0,00	0,00	0,00	0,00	297,00	15133,00	158,00	6771,00	297,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14516,00	13983,75	0,64	2335,75	212,00	2515,00	2508,00	7751,00	6868,00	324,00	10266,00	9376,00	1,13	11648,00	13183,00	187,00	0,00	0,00	0,00	0,00	296,00	15139,00	62,00	6771,00	296,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14516,00	13983,75	0,64	2335,75	212,00	2515,00	2508,00	7751,00	6868,00	324,00	10266,00	9376,00	1,13	11648,00	13183,00	142,00	0,00	0,00	0,00	0,00	328,00	15143,00	108,00	6771,00	344,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14516,00	13983,75	0,64	2335,75	212,00	2515,00	2508,00	7751,00	6868,00	324,00	10266,00	9376,00	1,13	11648,00	13183,00	125,00	0,00	0,00	0,00	0,00	328,00	15132,00	157,00	6771,00	328,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14516,00	13983,75	0,64	2335,75	212,00	2515,00	2508,00	7751,00	6868,00	324,00	10266,00	9376,00	1,13	11648,00	13183,00	155,00	0,00	0,00	0,00	0,00	312,00	15132,00	79,00	6771,00	328,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14516,00	13983,75	0,64	2335,75	212,00	2515,00	2508,00	7751,00	6868,00	324,00	10266,00	9376,00	1,13	11648,00	13183,00	78,00	0,00	0,00	0,00	0,00	312,00	15145,00	187,00	6771,00	312,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14516,00	13983,75	0,64	2335,75	212,00	2515,00	2508,00	7751,00	6868,00	324,00	10266,00	9376,00	1,13	11648,00	13183,00	171,00	0,00	0,00	0,00	0,00	296,00	15137,00	93,00	6771,00	312,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14516,00	13983,75	0,64	2335,75	212,00	2515,00	2508,00	7751,00	6868,00	324,00	10266,00	9376,00	1,13	11648,00	13183,00	125,00	0,00	0,00	0,00	0,00	281,00	15122,00	141,00	6771,00	281,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	508,00	0,00	0,00	1,00	0,00	1,00	78,00	508,00	16,00	2560,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	508,00	0,00	0,00	1,00	0,00	1,00	94,00	508,00	32,00	2560,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	508,00	0,00	0,00	1,00	0,00	1,00	78,00	508,00	78,00	2560,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	508,00	15,00	0,00	1,00	0,00	1,00	94,00	508,00	32,00	2560,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	508,00	0,00	0,00	1,00	0,00	1,00	93,00	508,00	31,00	2560,00	93,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	508,00	0,00	0,00	1,00	0,00	1,00	125,00	508,00	16,00	2560,00	125,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	508,00	0,00	0,00	1,00	0,00	1,00	94,00	508,00	79,00	2560,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	508,00	0,00	0,00	1,00	0,00	1,00	93,00	508,00	31,00	2560,00	93,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	508,00	0,00	0,00	1,00	0,00	1,00	79,00	508,00	47,00	2560,00	79,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	508,00	0,00	0,00	1,00	0,00	1,00	78,00	508,00	48,00	2560,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	508,00	0,00	0,00	1,00	0,00	1,00	78,00	508,00	15,00	2560,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	508,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	0,00	16,00	0,00	1,00	0,00	1,00	94,00	508,00	0,00	0,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	508,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	508,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	0,00	0,00	0,00	1,00	0,00	1,00	46,00	508,00	0,00	0,00	46,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	508,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	0,00	16,00	0,00	1,00	0,00	1,00	62,00	508,00	0,00	0,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	508,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	508,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15116,00	14393,00	0,64	2402,00	223,00	2589,00	2582,00	7982,00	7090,00	333,00	10571,00	9672,00	1,13	11991,00	13774,00	141,00	0,00	0,00	0,00	0,00	344,00	15850,00	140,00	7202,00	344,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15116,00	14393,00	0,64	2402,00	223,00	2589,00	2582,00	7982,00	7090,00	333,00	10571,00	9672,00	1,13	11991,00	13774,00	155,00	0,00	0,00	0,00	0,00	312,00	15855,00	126,00	7202,00	328,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15116,00	14393,00	0,64	2402,00	223,00	2589,00	2582,00	7982,00	7090,00	333,00	10571,00	9672,00	1,13	11991,00	13774,00	141,00	0,00	0,00	0,00	0,00	312,00	15839,00	140,00	7202,00	328,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15116,00	14393,00	0,64	2402,00	223,00	2589,00	2582,00	7982,00	7090,00	333,00	10571,00	9672,00	1,13	11991,00	13774,00	109,00	0,00	0,00	0,00	0,00	314,00	15869,00	159,00	7202,00	314,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15116,00	14393,00	0,64	2402,00	223,00	2589,00	2582,00	7982,00	7090,00	333,00	10571,00	9672,00	1,13	11991,00	13774,00	172,00	0,00	0,00	0,00	0,00	359,00	15855,00	157,00	7202,00	359,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15116,00	14393,00	0,64	2402,00	223,00	2589,00	2582,00	7982,00	7090,00	333,00	10571,00	9672,00	1,13	11991,00	13774,00	188,00	0,00	0,00	0,00	0,00	344,00	15873,00	124,00	7202,00	344,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15116,00	14393,00	0,64	2402,00	223,00	2589,00	2582,00	7982,00	7090,00	333,00	10571,00	9672,00	1,13	11991,00	13774,00	171,00	0,00	0,00	0,00	0,00	328,00	15864,00	109,00	7202,00	344,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15116,00	14393,00	0,64	2402,00	223,00	2589,00	2582,00	7982,00	7090,00	333,00	10571,00	9672,00	1,13	11991,00	13774,00	172,00	0,00	0,00	0,00	0,00	359,00	15866,00	109,00	7202,00	375,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15116,00	14393,00	0,64	2402,00	223,00	2589,00	2582,00	7982,00	7090,00	333,00	10571,00	9672,00	1,13	11991,00	13774,00	137,00	0,00	0,00	0,00	0,00	328,00	15857,00	175,00	7202,00	343,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15116,00	14393,00	0,64	2402,00	223,00	2589,00	2582,00	7982,00	7090,00	333,00	10571,00	9672,00	1,13	11991,00	13774,00	109,00	0,00	0,00	0,00	0,00	344,00	15874,00	172,00	7202,00	359,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	542,00	0,00	0,00	1,00	0,00	1,00	94,00	542,00	62,00	2804,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	542,00	0,00	0,00	1,00	0,00	1,00	94,00	542,00	31,00	2804,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	542,00	0,00	0,00	1,00	0,00	1,00	93,00	542,00	47,00	2804,00	93,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	542,00	0,00	0,00	1,00	0,00	1,00	94,00	542,00	78,00	2804,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	542,00	0,00	0,00	1,00	0,00	1,00	156,00	542,00	94,00	2804,00	156,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	542,00	0,00	0,00	1,00	0,00	1,00	94,00	542,00	63,00	2804,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	542,00	0,00	0,00	1,00	0,00	1,00	93,00	542,00	46,00	2804,00	93,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	542,00	16,00	0,00	1,00	0,00	1,00	78,00	542,00	15,00	2804,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	542,00	15,00	0,00	1,00	0,00	1,00	78,00	542,00	31,00	2804,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	542,00	0,00	0,00	1,00	0,00	1,00	94,00	542,00	62,00	2804,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	542,00	0,00	0,00	1,00	0,00	1,00	79,00	542,00	33,00	2804,00	79,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	542,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	0,00	16,00	0,00	1,00	0,00	1,00	47,00	542,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	542,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	0,00	16,00	0,00	1,00	0,00	1,00	47,00	542,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	0,00	0,00	0,00	1,00	0,00	1,00	46,00	542,00	0,00	0,00	46,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	542,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	542,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	542,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	542,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15786,00	14862,00	0,63	2478,00	234,00	2676,00	2669,00	8244,00	7343,00	343,00	10920,00	10012,00	1,13	12384,00	14429,00	123,00	0,00	0,00	0,00	0,00	375,00	16665,00	221,00	7663,00	390,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15786,00	14862,00	0,63	2478,00	234,00	2676,00	2669,00	8244,00	7343,00	343,00	10920,00	10012,00	1,13	12384,00	14429,00	126,00	0,00	0,00	0,00	0,00	328,00	16646,00	140,00	7663,00	343,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15786,00	14862,00	0,63	2478,00	234,00	2676,00	2669,00	8244,00	7343,00	343,00	10920,00	10012,00	1,13	12384,00	14429,00	140,00	0,00	0,00	0,00	0,00	391,00	16655,00	219,00	7663,00	406,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15786,00	14862,00	0,63	2478,00	234,00	2676,00	2669,00	8244,00	7343,00	343,00	10920,00	10012,00	1,13	12384,00	14429,00	77,00	0,00	0,00	0,00	0,00	328,00	16647,00	251,00	7663,00	343,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15786,00	14862,00	0,63	2478,00	234,00	2676,00	2669,00	8244,00	7343,00	343,00	10920,00	10012,00	1,13	12384,00	14429,00	141,00	0,00	0,00	0,00	0,00	343,00	16639,00	156,00	7663,00	343,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15786,00	14862,00	0,63	2478,00	234,00	2676,00	2669,00	8244,00	7343,00	343,00	10920,00	10012,00	1,13	12384,00	14429,00	139,00	0,00	0,00	0,00	0,00	344,00	16659,00	142,00	7663,00	360,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15786,00	14862,00	0,63	2478,00	234,00	2676,00	2669,00	8244,00	7343,00	343,00	10920,00	10012,00	1,13	12384,00	14429,00	159,00	0,00	0,00	0,00	0,00	359,00	16669,00	185,00	7663,00	375,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15786,00	14862,00	0,63	2478,00	234,00	2676,00	2669,00	8244,00	7343,00	343,00	10920,00	10012,00	1,13	12384,00	14429,00	107,00	0,00	0,00	0,00	0,00	344,00	16646,00	190,00	7663,00	344,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15786,00	14862,00	0,63	2478,00	234,00	2676,00	2669,00	8244,00	7343,00	343,00	10920,00	10012,00	1,13	12384,00	14429,00	168,00	0,00	0,00	0,00	0,00	328,00	16647,00	144,00	7663,00	344,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15786,00	14862,00	0,63	2478,00	234,00	2676,00	2669,00	8244,00	7343,00	343,00	10920,00	10012,00	1,13	12384,00	14429,00	122,00	0,00	0,00	0,00	0,00	359,00	16677,00	174,00	7663,00	359,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	576,00	0,00	0,00	1,00	0,00	1,00	94,00	576,00	79,00	3057,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	576,00	0,00	0,00	1,00	0,00	1,00	93,00	576,00	31,00	3057,00	93,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	576,00	15,00	0,00	1,00	0,00	1,00	94,00	576,00	16,00	3057,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	576,00	0,00	0,00	1,00	0,00	1,00	94,00	576,00	31,00	3057,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	576,00	0,00	0,00	1,00	0,00	1,00	109,00	576,00	63,00	3057,00	109,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	576,00	0,00	0,00	1,00	0,00	1,00	109,00	576,00	62,00	3057,00	109,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	576,00	0,00	0,00	1,00	0,00	1,00	94,00	576,00	31,00	3057,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	576,00	0,00	0,00	1,00	0,00	1,00	94,00	576,00	47,00	3057,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	576,00	0,00	0,00	1,00	0,00	1,00	78,00	576,00	16,00	3057,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	576,00	16,00	0,00	1,00	0,00	1,00	94,00	576,00	16,00	3057,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	576,00	0,00	0,00	1,00	0,00	1,00	140,00	576,00	32,00	3057,00	140,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	576,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	576,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	576,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	576,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	576,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	0,00	0,00	0,00	1,00	0,00	1,00	62,00	576,00	0,00	0,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	576,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	0,00	0,00	0,00	1,00	0,00	1,00	62,00	576,00	0,00	0,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	576,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16872,00	15609,50	0,63	2596,50	250,00	2815,00	2808,00	8662,00	7744,00	361,00	11477,00	10552,00	1,13	13013,00	15513,00	140,00	0,00	0,00	0,00	0,00	407,00	17967,00	220,00	8207,00	422,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16872,00	15609,50	0,63	2596,50	250,00	2815,00	2808,00	8662,00	7744,00	361,00	11477,00	10552,00	1,13	13013,00	15513,00	203,00	0,00	0,00	0,00	0,00	406,00	17964,00	157,00	8207,00	422,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16872,00	15609,50	0,63	2596,50	250,00	2815,00	2808,00	8662,00	7744,00	361,00	11477,00	10552,00	1,13	13013,00	15513,00	124,00	0,00	0,00	0,00	0,00	391,00	17953,00	267,00	8207,00	407,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16872,00	15609,50	0,63	2596,50	250,00	2815,00	2808,00	8662,00	7744,00	361,00	11477,00	10552,00	1,13	13013,00	15513,00	125,00	0,00	0,00	0,00	0,00	391,00	17978,00	171,00	8207,00	407,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16872,00	15609,50	0,63	2596,50	250,00	2815,00	2808,00	8662,00	7744,00	361,00	11477,00	10552,00	1,13	13013,00	15513,00	110,00	0,00	0,00	0,00	0,00	359,00	17966,00	171,00	8207,00	375,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16872,00	15609,50	0,63	2596,50	250,00	2815,00	2808,00	8662,00	7744,00	361,00	11477,00	10552,00	1,13	13013,00	15513,00	157,00	0,00	0,00	0,00	0,00	390,00	17964,00	188,00	8207,00	406,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16872,00	15609,50	0,63	2596,50	250,00	2815,00	2808,00	8662,00	7744,00	361,00	11477,00	10552,00	1,13	13013,00	15513,00	107,00	0,00	0,00	0,00	0,00	361,00	17954,00	239,00	8207,00	361,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16872,00	15609,50	0,63	2596,50	250,00	2815,00	2808,00	8662,00	7744,00	361,00	11477,00	10552,00	1,13	13013,00	15513,00	171,00	0,00	0,00	0,00	0,00	421,00	17953,00	218,00	8207,00	437,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16872,00	15609,50	0,63	2596,50	250,00	2815,00	2808,00	8662,00	7744,00	361,00	11477,00	10552,00	1,13	13013,00	15513,00	187,00	0,00	0,00	0,00	0,00	438,00	17965,00	204,00	8207,00	453,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16872,00	15609,50	0,63	2596,50	250,00	2815,00	2808,00	8662,00	7744,00	361,00	11477,00	10552,00	1,13	13013,00	15513,00	109,00	0,00	0,00	0,00	0,00	375,00	17960,00	218,00	8207,00	390,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	638,00	0,00	0,00	1,00	0,00	1,00	94,00	638,00	78,00	3391,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	638,00	16,00	0,00	1,00	0,00	1,00	125,00	638,00	77,00	3391,00	125,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	638,00	0,00	0,00	1,00	0,00	1,00	109,00	638,00	62,00	3391,00	109,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	638,00	0,00	0,00	1,00	0,00	1,00	93,00	638,00	46,00	3391,00	93,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	638,00	0,00	0,00	1,00	0,00	1,00	94,00	638,00	31,00	3391,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	638,00	0,00	0,00	1,00	0,00	1,00	94,00	638,00	31,00	3391,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	638,00	0,00	0,00	1,00	0,00	1,00	109,00	638,00	46,00	3391,00	109,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	638,00	0,00	0,00	1,00	0,00	1,00	156,00	638,00	125,00	3391,00	156,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	638,00	0,00	0,00	1,00	0,00	1,00	109,00	638,00	48,00	3391,00	109,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	638,00	0,00	0,00	1,00	0,00	1,00	109,00	638,00	16,00	3391,00	109,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	638,00	0,00	0,00	1,00	0,00	1,00	110,00	638,00	62,00	3391,00	110,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	0,00	0,00	0,00	1,00	0,00	1,00	63,00	638,00	0,00	0,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	0,00	0,00	0,00	1,00	0,00	1,00	62,00	638,00	0,00	0,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	638,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	638,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	638,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	638,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	0,00	0,00	0,00	1,00	0,00	1,00	62,00	638,00	0,00	0,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	638,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	638,00	0,00	0,00	47,00	
Index: /reasoner/measures/benchmark-results-new-1.3-ojdk10-noTypeCache/measurements-scenarios.tsv
===================================================================
--- /reasoner/measures/benchmark-results-new-1.3-ojdk10-noTypeCache/measurements-scenarios.tsv	(revision 278)
+++ /reasoner/measures/benchmark-results-new-1.3-ojdk10-noTypeCache/measurements-scenarios.tsv	(revision 278)
@@ -0,0 +1,211 @@
+model name	URI	tag	runCount	caller	MODEL_ANNOTATIONS	MODEL_COMPLEXITY	MODEL_CONSTRAINT_AVG_COMPLEXITY	MODEL_CONSTRAINT_COMPLEXITY	MODEL_CONSTRAINT_INSTANCES	MODEL_CONSTRAINT_VARIABLES	MODEL_CONSTRAINT_VARIABLES_NO_CONTAINER	MODEL_NORMAL_VARIABLES	MODEL_NORMAL_VARIABLES_NO_CONTAINER	MODEL_TOPLEVEL_VARIABLES	MODEL_VARIABLES	MODEL_VARIABLES_WITHOUT_CONTAINER	MODEL_VARIABLE_AVG_COMPLEXITY	MODEL_VARIABLE_COMPLEXITY	REASONER_CONSTRAINT_COUNT	REASONER_EVALUATION_TIME	REASONER_INSTANCE_CREATION_TIME	REASONER_PROBLEMS	REASONER_PROBLEM_ASSIGNMENTS	REASONER_PROBLEM_CONSTRAINTS	REASONER_REASONING_TIME	REASONER_REEVALUATION_COUNT	REASONER_TRANSLATION_TIME	REASONER_VARIABLES_IN_CONSTRAINTS	RESPONSETIME_AUTO	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	18300,00	295,00	0,00	0,00	0,00	0,00	734,00	21592,00	344,00	10508,00	750,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	18300,00	186,00	0,00	0,00	0,00	0,00	485,00	21627,00	221,00	10508,00	500,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	18300,00	252,00	0,00	0,00	0,00	0,00	578,00	21632,00	263,00	10508,00	609,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	18300,00	234,00	0,00	0,00	0,00	0,00	469,00	21615,00	188,00	10508,00	484,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	18300,00	173,00	0,00	0,00	0,00	0,00	455,00	21618,00	203,00	10508,00	471,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	18300,00	157,00	0,00	0,00	0,00	0,00	468,00	21614,00	280,00	10508,00	484,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	18300,00	157,00	0,00	0,00	0,00	0,00	437,00	21643,00	248,00	10508,00	453,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	18300,00	280,00	0,00	0,00	0,00	0,00	484,00	21629,00	172,00	10508,00	500,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	18300,00	203,00	0,00	0,00	0,00	0,00	485,00	21625,00	252,00	10508,00	500,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	18300,00	126,00	0,00	0,00	0,00	0,00	437,00	21607,00	204,00	10508,00	453,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INC	1	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	684,00	16,00	0,00	1,00	0,00	1,00	125,00	684,00	31,00	4038,00	125,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INC	2	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	684,00	16,00	0,00	1,00	0,00	1,00	110,00	684,00	48,00	4038,00	110,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INC	3	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	684,00	0,00	0,00	1,00	0,00	1,00	127,00	684,00	64,00	4038,00	127,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INC	4	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	684,00	0,00	0,00	1,00	0,00	1,00	110,00	684,00	63,00	4038,00	110,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INC	5	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	684,00	0,00	0,00	1,00	0,00	1,00	156,00	684,00	93,00	4038,00	156,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INC	6	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	684,00	0,00	0,00	1,00	0,00	1,00	125,00	684,00	63,00	4038,00	125,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INC	7	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	684,00	16,00	0,00	1,00	0,00	1,00	125,00	684,00	30,00	4038,00	125,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INC	8	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	684,00	0,00	0,00	1,00	0,00	1,00	125,00	684,00	64,00	4038,00	125,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INC	9	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	684,00	16,00	0,00	1,00	0,00	1,00	109,00	684,00	47,00	4038,00	109,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INC	10	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	684,00	0,00	0,00	1,00	0,00	1,00	140,00	684,00	109,00	4038,00	140,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INST 	1	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	684,00	0,00	0,00	1,00	0,00	1,00	172,00	684,00	93,00	4038,00	172,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INST 	2	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	0,00	0,00	1,00	0,00	1,00	63,00	684,00	0,00	0,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INST 	3	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	0,00	0,00	1,00	0,00	1,00	62,00	684,00	0,00	0,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INST 	4	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	15,00	0,00	1,00	0,00	1,00	63,00	684,00	0,00	0,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INST 	5	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	0,00	0,00	1,00	0,00	1,00	78,00	684,00	0,00	0,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INST 	6	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	16,00	0,00	1,00	0,00	1,00	94,00	684,00	0,00	0,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INST 	7	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	0,00	0,00	1,00	0,00	1,00	78,00	684,00	0,00	0,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INST 	8	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	0,00	0,00	1,00	0,00	1,00	78,00	684,00	0,00	0,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INST 	9	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	0,00	0,00	1,00	0,00	1,00	63,00	684,00	0,00	0,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INST 	10	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	16,00	0,00	1,00	0,00	1,00	78,00	684,00	0,00	0,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	18300,00	156,00	0,00	0,00	0,00	0,00	470,00	21603,00	205,00	10508,00	486,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	18300,00	140,00	0,00	0,00	0,00	0,00	453,00	21621,00	252,00	10508,00	468,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	18300,00	219,00	0,00	0,00	0,00	0,00	499,00	21585,00	185,00	10508,00	515,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	18300,00	158,00	0,00	0,00	0,00	0,00	469,00	21617,00	295,00	10508,00	484,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	18300,00	156,00	0,00	0,00	0,00	0,00	437,00	21633,00	265,00	10508,00	453,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	18300,00	267,00	0,00	0,00	0,00	0,00	453,00	21624,00	154,00	10508,00	516,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	18300,00	206,00	0,00	0,00	0,00	0,00	486,00	21621,00	233,00	10508,00	501,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	18300,00	218,00	0,00	0,00	0,00	0,00	468,00	21601,00	156,00	10508,00	484,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	18300,00	233,00	0,00	0,00	0,00	0,00	437,00	21655,00	157,00	10508,00	453,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	18300,00	234,00	0,00	0,00	0,00	0,00	468,00	21588,00	173,00	10508,00	484,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INC	1	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	684,00	0,00	0,00	1,00	0,00	1,00	156,00	684,00	78,00	4038,00	156,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INC	2	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	684,00	0,00	0,00	1,00	0,00	1,00	125,00	684,00	47,00	4038,00	125,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INC	3	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	684,00	0,00	0,00	1,00	0,00	1,00	125,00	684,00	79,00	4038,00	125,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INC	4	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	684,00	0,00	0,00	1,00	0,00	1,00	188,00	684,00	48,00	4038,00	188,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INC	5	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	684,00	0,00	0,00	1,00	0,00	1,00	125,00	684,00	63,00	4038,00	125,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INC	6	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	684,00	0,00	0,00	1,00	0,00	1,00	125,00	684,00	63,00	4038,00	125,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INC	7	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	684,00	16,00	0,00	1,00	0,00	1,00	110,00	684,00	31,00	4038,00	110,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INC	8	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	684,00	0,00	0,00	1,00	0,00	1,00	109,00	684,00	78,00	4038,00	109,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INC	9	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	684,00	0,00	0,00	1,00	0,00	1,00	125,00	684,00	62,00	4038,00	125,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INC	10	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	684,00	0,00	0,00	1,00	0,00	1,00	109,00	684,00	47,00	4038,00	109,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INST 	1	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	684,00	0,00	0,00	1,00	0,00	1,00	125,00	684,00	79,00	4038,00	125,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INST 	2	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	0,00	0,00	1,00	0,00	1,00	63,00	684,00	0,00	0,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INST 	3	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	0,00	0,00	1,00	0,00	1,00	62,00	684,00	0,00	0,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INST 	4	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	0,00	0,00	1,00	0,00	1,00	78,00	684,00	0,00	0,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INST 	5	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	0,00	0,00	1,00	0,00	1,00	79,00	684,00	0,00	0,00	79,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INST 	6	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	0,00	0,00	1,00	0,00	1,00	63,00	684,00	0,00	0,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INST 	7	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	0,00	0,00	1,00	0,00	1,00	62,00	684,00	15,00	0,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INST 	8	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	0,00	0,00	1,00	0,00	1,00	79,00	684,00	0,00	0,00	79,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INST 	9	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	0,00	0,00	1,00	0,00	1,00	78,00	684,00	0,00	0,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INST 	10	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	0,00	0,00	1,00	0,00	1,00	62,00	684,00	0,00	0,00	62,00	
+april14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/april14/EASy/april14_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterApril14	0,00	106,00	0,75	15,00	0,00	0,00	0,00	67,00	48,00	17,00	67,00	48,00	1,36	91,00	24,00	0,00	0,00	0,00	0,00	0,00	0,00	24,00	0,00	6,00	0,00	
+april14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/april14/EASy/april14_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterApril14	0,00	106,00	0,75	15,00	0,00	0,00	0,00	67,00	48,00	17,00	67,00	48,00	1,36	91,00	24,00	0,00	0,00	0,00	0,00	0,00	0,00	24,00	0,00	6,00	0,00	
+april14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/april14/EASy/april14_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterApril14	0,00	106,00	0,75	15,00	0,00	0,00	0,00	67,00	48,00	17,00	67,00	48,00	1,36	91,00	24,00	0,00	0,00	0,00	0,00	0,00	0,00	24,00	0,00	6,00	0,00	
+april14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/april14/EASy/april14_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterApril14	0,00	106,00	0,75	15,00	0,00	0,00	0,00	67,00	48,00	17,00	67,00	48,00	1,36	91,00	24,00	0,00	0,00	0,00	0,00	0,00	0,00	24,00	0,00	6,00	0,00	
+april14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/april14/EASy/april14_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterApril14	0,00	106,00	0,75	15,00	0,00	0,00	0,00	67,00	48,00	17,00	67,00	48,00	1,36	91,00	24,00	0,00	0,00	0,00	0,00	0,00	0,00	24,00	0,00	6,00	0,00	
+april14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/april14/EASy/april14_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterApril14	0,00	106,00	0,75	15,00	0,00	0,00	0,00	67,00	48,00	17,00	67,00	48,00	1,36	91,00	24,00	0,00	0,00	0,00	0,00	0,00	0,00	24,00	0,00	6,00	0,00	
+april14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/april14/EASy/april14_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterApril14	0,00	106,00	0,75	15,00	0,00	0,00	0,00	67,00	48,00	17,00	67,00	48,00	1,36	91,00	24,00	0,00	0,00	0,00	0,00	0,00	0,00	24,00	0,00	6,00	15,00	
+april14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/april14/EASy/april14_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterApril14	0,00	106,00	0,75	15,00	0,00	0,00	0,00	67,00	48,00	17,00	67,00	48,00	1,36	91,00	24,00	0,00	0,00	0,00	0,00	0,00	0,00	24,00	0,00	6,00	0,00	
+april14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/april14/EASy/april14_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterApril14	0,00	106,00	0,75	15,00	0,00	0,00	0,00	67,00	48,00	17,00	67,00	48,00	1,36	91,00	24,00	0,00	0,00	0,00	0,00	0,00	0,00	24,00	0,00	6,00	0,00	
+april14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/april14/EASy/april14_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterApril14	0,00	106,00	0,75	15,00	0,00	0,00	0,00	67,00	48,00	17,00	67,00	48,00	1,36	91,00	24,00	0,00	0,00	0,00	0,00	0,00	0,00	24,00	0,00	6,00	0,00	
+PL_YMS_Platform	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_YMS_Platform/EASy/PL_YMS_Platform_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlYmsPlatform	0,00	16,00	0,50	1,00	0,00	8,00	8,00	5,00	5,00	2,00	13,00	13,00	1,15	15,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+PL_YMS_Platform	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_YMS_Platform/EASy/PL_YMS_Platform_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlYmsPlatform	0,00	16,00	0,50	1,00	0,00	8,00	8,00	5,00	5,00	2,00	13,00	13,00	1,15	15,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+PL_YMS_Platform	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_YMS_Platform/EASy/PL_YMS_Platform_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlYmsPlatform	0,00	16,00	0,50	1,00	0,00	8,00	8,00	5,00	5,00	2,00	13,00	13,00	1,15	15,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+PL_YMS_Platform	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_YMS_Platform/EASy/PL_YMS_Platform_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlYmsPlatform	0,00	16,00	0,50	1,00	0,00	8,00	8,00	5,00	5,00	2,00	13,00	13,00	1,15	15,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+PL_YMS_Platform	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_YMS_Platform/EASy/PL_YMS_Platform_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlYmsPlatform	0,00	16,00	0,50	1,00	0,00	8,00	8,00	5,00	5,00	2,00	13,00	13,00	1,15	15,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+PL_YMS_Platform	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_YMS_Platform/EASy/PL_YMS_Platform_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlYmsPlatform	0,00	16,00	0,50	1,00	0,00	8,00	8,00	5,00	5,00	2,00	13,00	13,00	1,15	15,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+PL_YMS_Platform	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_YMS_Platform/EASy/PL_YMS_Platform_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlYmsPlatform	0,00	16,00	0,50	1,00	0,00	8,00	8,00	5,00	5,00	2,00	13,00	13,00	1,15	15,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+PL_YMS_Platform	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_YMS_Platform/EASy/PL_YMS_Platform_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlYmsPlatform	0,00	16,00	0,50	1,00	0,00	8,00	8,00	5,00	5,00	2,00	13,00	13,00	1,15	15,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+PL_YMS_Platform	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_YMS_Platform/EASy/PL_YMS_Platform_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlYmsPlatform	0,00	16,00	0,50	1,00	0,00	8,00	8,00	5,00	5,00	2,00	13,00	13,00	1,15	15,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+PL_YMS_Platform	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_YMS_Platform/EASy/PL_YMS_Platform_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlYmsPlatform	0,00	16,00	0,50	1,00	0,00	8,00	8,00	5,00	5,00	2,00	13,00	13,00	1,15	15,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/svncontrol/EASy/svncontrol_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/svncontrol/EASy/svncontrol_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/svncontrol/EASy/svncontrol_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/svncontrol/EASy/svncontrol_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/svncontrol/EASy/svncontrol_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/svncontrol/EASy/svncontrol_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/svncontrol/EASy/svncontrol_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/svncontrol/EASy/svncontrol_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/svncontrol/EASy/svncontrol_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/svncontrol/EASy/svncontrol_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_svncontrol/EASy/svncontrol_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_svncontrol/EASy/svncontrol_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_svncontrol/EASy/svncontrol_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_svncontrol/EASy/svncontrol_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_svncontrol/EASy/svncontrol_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_svncontrol/EASy/svncontrol_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_svncontrol/EASy/svncontrol_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_svncontrol/EASy/svncontrol_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_svncontrol/EASy/svncontrol_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_svncontrol/EASy/svncontrol_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+New_Product	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/New_Product/EASy/New_Product_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealTests.testElevator	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	36,00	0,00	6,00	0,00	
+New_Product	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/New_Product/EASy/New_Product_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealTests.testElevator	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	36,00	0,00	6,00	0,00	
+New_Product	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/New_Product/EASy/New_Product_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealTests.testElevator	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	36,00	0,00	6,00	0,00	
+New_Product	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/New_Product/EASy/New_Product_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealTests.testElevator	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	36,00	0,00	6,00	0,00	
+New_Product	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/New_Product/EASy/New_Product_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealTests.testElevator	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	36,00	0,00	6,00	0,00	
+New_Product	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/New_Product/EASy/New_Product_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealTests.testElevator	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	36,00	0,00	6,00	0,00	
+New_Product	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/New_Product/EASy/New_Product_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealTests.testElevator	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	36,00	0,00	6,00	0,00	
+New_Product	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/New_Product/EASy/New_Product_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealTests.testElevator	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	36,00	0,00	6,00	0,00	
+New_Product	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/New_Product/EASy/New_Product_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealTests.testElevator	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	36,00	0,00	6,00	0,00	
+New_Product	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/New_Product/EASy/New_Product_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealTests.testElevator	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	36,00	0,00	6,00	0,00	
+NumericCSVInstantiationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/NumericCSVInstantiationTest/EASy/NumericCSVInstantiationTest_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealTests.testInstantiateNumericCSVInstantiation	0,00	7,50	0,50	2,50	0,00	2,00	2,00	3,00	3,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	1,00	0,00	
+NumericCSVInstantiationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/NumericCSVInstantiationTest/EASy/NumericCSVInstantiationTest_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealTests.testInstantiateNumericCSVInstantiation	0,00	7,50	0,50	2,50	0,00	2,00	2,00	3,00	3,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	1,00	0,00	
+NumericCSVInstantiationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/NumericCSVInstantiationTest/EASy/NumericCSVInstantiationTest_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealTests.testInstantiateNumericCSVInstantiation	0,00	7,50	0,50	2,50	0,00	2,00	2,00	3,00	3,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	1,00	0,00	
+NumericCSVInstantiationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/NumericCSVInstantiationTest/EASy/NumericCSVInstantiationTest_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealTests.testInstantiateNumericCSVInstantiation	0,00	7,50	0,50	2,50	0,00	2,00	2,00	3,00	3,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	1,00	0,00	
+NumericCSVInstantiationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/NumericCSVInstantiationTest/EASy/NumericCSVInstantiationTest_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealTests.testInstantiateNumericCSVInstantiation	0,00	7,50	0,50	2,50	0,00	2,00	2,00	3,00	3,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	1,00	0,00	
+NumericCSVInstantiationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/NumericCSVInstantiationTest/EASy/NumericCSVInstantiationTest_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealTests.testInstantiateNumericCSVInstantiation	0,00	7,50	0,50	2,50	0,00	2,00	2,00	3,00	3,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	1,00	0,00	
+NumericCSVInstantiationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/NumericCSVInstantiationTest/EASy/NumericCSVInstantiationTest_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealTests.testInstantiateNumericCSVInstantiation	0,00	7,50	0,50	2,50	0,00	2,00	2,00	3,00	3,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	1,00	0,00	
+NumericCSVInstantiationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/NumericCSVInstantiationTest/EASy/NumericCSVInstantiationTest_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealTests.testInstantiateNumericCSVInstantiation	0,00	7,50	0,50	2,50	0,00	2,00	2,00	3,00	3,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	1,00	0,00	
+NumericCSVInstantiationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/NumericCSVInstantiationTest/EASy/NumericCSVInstantiationTest_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealTests.testInstantiateNumericCSVInstantiation	0,00	7,50	0,50	2,50	0,00	2,00	2,00	3,00	3,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	1,00	0,00	
+NumericCSVInstantiationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/NumericCSVInstantiationTest/EASy/NumericCSVInstantiationTest_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealTests.testInstantiateNumericCSVInstantiation	0,00	7,50	0,50	2,50	0,00	2,00	2,00	3,00	3,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	1,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb15/EASy/QM_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb15	1271,00	1809,25	1,48	399,25	5,00	159,00	143,00	1005,00	810,00	64,00	1164,00	953,00	1,21	1410,00	1211,00	0,00	0,00	0,00	0,00	0,00	46,00	1291,00	46,00	1283,00	46,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb15/EASy/QM_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb15	1271,00	1809,25	1,48	399,25	5,00	159,00	143,00	1005,00	810,00	64,00	1164,00	953,00	1,21	1410,00	1211,00	47,00	0,00	0,00	0,00	0,00	47,00	1291,00	0,00	1283,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb15/EASy/QM_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb15	1271,00	1809,25	1,48	399,25	5,00	159,00	143,00	1005,00	810,00	64,00	1164,00	953,00	1,21	1410,00	1211,00	46,00	0,00	0,00	0,00	0,00	46,00	1291,00	0,00	1283,00	46,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb15/EASy/QM_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb15	1271,00	1809,25	1,48	399,25	5,00	159,00	143,00	1005,00	810,00	64,00	1164,00	953,00	1,21	1410,00	1211,00	16,00	0,00	0,00	0,00	0,00	32,00	1291,00	16,00	1283,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb15/EASy/QM_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb15	1271,00	1809,25	1,48	399,25	5,00	159,00	143,00	1005,00	810,00	64,00	1164,00	953,00	1,21	1410,00	1211,00	16,00	0,00	0,00	0,00	0,00	32,00	1291,00	16,00	1283,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb15/EASy/QM_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb15	1271,00	1809,25	1,48	399,25	5,00	159,00	143,00	1005,00	810,00	64,00	1164,00	953,00	1,21	1410,00	1211,00	15,00	0,00	0,00	0,00	0,00	31,00	1291,00	16,00	1283,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb15/EASy/QM_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb15	1271,00	1809,25	1,48	399,25	5,00	159,00	143,00	1005,00	810,00	64,00	1164,00	953,00	1,21	1410,00	1211,00	16,00	0,00	0,00	0,00	0,00	16,00	1291,00	0,00	1283,00	16,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb15/EASy/QM_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb15	1271,00	1809,25	1,48	399,25	5,00	159,00	143,00	1005,00	810,00	64,00	1164,00	953,00	1,21	1410,00	1211,00	15,00	0,00	0,00	0,00	0,00	31,00	1291,00	16,00	1283,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb15/EASy/QM_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb15	1271,00	1809,25	1,48	399,25	5,00	159,00	143,00	1005,00	810,00	64,00	1164,00	953,00	1,21	1410,00	1211,00	0,00	0,00	0,00	0,00	0,00	32,00	1291,00	32,00	1283,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb15/EASy/QM_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb15	1271,00	1809,25	1,48	399,25	5,00	159,00	143,00	1005,00	810,00	64,00	1164,00	953,00	1,21	1410,00	1211,00	31,00	0,00	0,00	0,00	0,00	47,00	1291,00	16,00	1283,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	8213,00	9869,25	0,88	2209,25	495,00	1585,00	1583,00	5031,00	4704,00	241,00	6616,00	6287,00	1,16	7660,00	7271,00	78,00	0,00	0,00	0,00	0,00	218,00	7760,00	63,00	4691,00	218,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	8213,00	9869,25	0,88	2209,25	495,00	1585,00	1583,00	5031,00	4704,00	241,00	6616,00	6287,00	1,16	7660,00	7271,00	93,00	0,00	0,00	0,00	0,00	187,00	7761,00	78,00	4691,00	187,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	8213,00	9869,25	0,88	2209,25	495,00	1585,00	1583,00	5031,00	4704,00	241,00	6616,00	6287,00	1,16	7660,00	7271,00	47,00	0,00	0,00	0,00	0,00	172,00	7758,00	109,00	4691,00	172,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	8213,00	9869,25	0,88	2209,25	495,00	1585,00	1583,00	5031,00	4704,00	241,00	6616,00	6287,00	1,16	7660,00	7271,00	79,00	0,00	0,00	0,00	0,00	187,00	7760,00	92,00	4691,00	187,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	8213,00	9869,25	0,88	2209,25	495,00	1585,00	1583,00	5031,00	4704,00	241,00	6616,00	6287,00	1,16	7660,00	7271,00	63,00	0,00	0,00	0,00	0,00	221,00	7758,00	94,00	4691,00	221,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	8213,00	9869,25	0,88	2209,25	495,00	1585,00	1583,00	5031,00	4704,00	241,00	6616,00	6287,00	1,16	7660,00	7271,00	47,00	0,00	0,00	0,00	0,00	156,00	7759,00	78,00	4691,00	172,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	8213,00	9869,25	0,88	2209,25	495,00	1585,00	1583,00	5031,00	4704,00	241,00	6616,00	6287,00	1,16	7660,00	7271,00	46,00	0,00	0,00	0,00	0,00	172,00	7762,00	78,00	4691,00	172,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	8213,00	9869,25	0,88	2209,25	495,00	1585,00	1583,00	5031,00	4704,00	241,00	6616,00	6287,00	1,16	7660,00	7271,00	77,00	0,00	0,00	0,00	0,00	187,00	7760,00	79,00	4691,00	187,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	8213,00	9869,25	0,88	2209,25	495,00	1585,00	1583,00	5031,00	4704,00	241,00	6616,00	6287,00	1,16	7660,00	7271,00	46,00	0,00	0,00	0,00	0,00	156,00	7760,00	94,00	4691,00	156,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	8213,00	9869,25	0,88	2209,25	495,00	1585,00	1583,00	5031,00	4704,00	241,00	6616,00	6287,00	1,16	7660,00	7271,00	92,00	0,00	0,00	0,00	0,00	156,00	7761,00	48,00	4691,00	156,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INC	1	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	130,00	0,00	0,00	1,00	0,00	1,00	47,00	130,00	32,00	647,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INC	2	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	130,00	0,00	0,00	1,00	0,00	1,00	47,00	130,00	15,00	647,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INC	3	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	130,00	0,00	0,00	1,00	0,00	1,00	63,00	130,00	0,00	647,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INC	4	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	130,00	0,00	0,00	1,00	0,00	1,00	46,00	130,00	15,00	647,00	46,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INC	5	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	130,00	0,00	0,00	1,00	0,00	1,00	47,00	130,00	16,00	647,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INC	6	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	130,00	0,00	0,00	1,00	0,00	1,00	46,00	130,00	0,00	647,00	46,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INC	7	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	130,00	0,00	0,00	1,00	0,00	1,00	63,00	130,00	31,00	647,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INC	8	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	130,00	0,00	0,00	1,00	0,00	1,00	62,00	130,00	46,00	647,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INC	9	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	130,00	0,00	0,00	1,00	0,00	1,00	63,00	130,00	16,00	647,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INC	10	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	130,00	0,00	0,00	1,00	0,00	1,00	62,00	130,00	15,00	647,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INST 	1	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	130,00	0,00	0,00	1,00	0,00	1,00	47,00	130,00	15,00	647,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INST 	2	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	130,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INST 	3	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	130,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INST 	4	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	0,00	0,00	0,00	1,00	0,00	1,00	32,00	130,00	0,00	0,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INST 	5	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	130,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INST 	6	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	130,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INST 	7	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	130,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INST 	8	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	130,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INST 	9	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	130,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INST 	10	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	0,00	0,00	0,00	1,00	0,00	1,00	62,00	130,00	0,00	0,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/jun15/EASy/QM_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterJun15	2331,00	2996,00	1,32	752,00	136,00	234,00	234,00	1657,00	1492,00	119,00	1891,00	1726,00	1,19	2244,00	2444,00	16,00	0,00	0,00	0,00	0,00	47,00	2744,00	15,00	2567,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/jun15/EASy/QM_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterJun15	2331,00	2996,00	1,32	752,00	136,00	234,00	234,00	1657,00	1492,00	119,00	1891,00	1726,00	1,19	2244,00	2444,00	31,00	0,00	0,00	0,00	0,00	62,00	2744,00	31,00	2567,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/jun15/EASy/QM_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterJun15	2331,00	2996,00	1,32	752,00	136,00	234,00	234,00	1657,00	1492,00	119,00	1891,00	1726,00	1,19	2244,00	2444,00	16,00	0,00	0,00	0,00	0,00	47,00	2742,00	15,00	2567,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/jun15/EASy/QM_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterJun15	2331,00	2996,00	1,32	752,00	136,00	234,00	234,00	1657,00	1492,00	119,00	1891,00	1726,00	1,19	2244,00	2444,00	0,00	0,00	0,00	0,00	0,00	31,00	2740,00	15,00	2567,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/jun15/EASy/QM_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterJun15	2331,00	2996,00	1,32	752,00	136,00	234,00	234,00	1657,00	1492,00	119,00	1891,00	1726,00	1,19	2244,00	2444,00	16,00	0,00	0,00	0,00	0,00	47,00	2737,00	0,00	2567,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/jun15/EASy/QM_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterJun15	2331,00	2996,00	1,32	752,00	136,00	234,00	234,00	1657,00	1492,00	119,00	1891,00	1726,00	1,19	2244,00	2444,00	0,00	0,00	0,00	0,00	0,00	46,00	2742,00	46,00	2567,00	46,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/jun15/EASy/QM_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterJun15	2331,00	2996,00	1,32	752,00	136,00	234,00	234,00	1657,00	1492,00	119,00	1891,00	1726,00	1,19	2244,00	2444,00	15,00	0,00	0,00	0,00	0,00	31,00	2744,00	16,00	2567,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/jun15/EASy/QM_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterJun15	2331,00	2996,00	1,32	752,00	136,00	234,00	234,00	1657,00	1492,00	119,00	1891,00	1726,00	1,19	2244,00	2444,00	16,00	0,00	0,00	0,00	0,00	47,00	2745,00	31,00	2567,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/jun15/EASy/QM_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterJun15	2331,00	2996,00	1,32	752,00	136,00	234,00	234,00	1657,00	1492,00	119,00	1891,00	1726,00	1,19	2244,00	2444,00	31,00	0,00	0,00	0,00	0,00	47,00	2742,00	0,00	2567,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/jun15/EASy/QM_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterJun15	2331,00	2996,00	1,32	752,00	136,00	234,00	234,00	1657,00	1492,00	119,00	1891,00	1726,00	1,19	2244,00	2444,00	0,00	0,00	0,00	0,00	0,00	63,00	2737,00	31,00	2567,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/mar15/EASy/QM_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMar15	1327,00	1863,75	1,48	399,75	5,00	159,00	143,00	1059,00	864,00	65,00	1218,00	1007,00	1,20	1464,00	1232,00	16,00	0,00	0,00	0,00	0,00	16,00	1312,00	0,00	1302,00	16,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/mar15/EASy/QM_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMar15	1327,00	1863,75	1,48	399,75	5,00	159,00	143,00	1059,00	864,00	65,00	1218,00	1007,00	1,20	1464,00	1232,00	15,00	0,00	0,00	0,00	0,00	15,00	1312,00	0,00	1302,00	15,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/mar15/EASy/QM_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMar15	1327,00	1863,75	1,48	399,75	5,00	159,00	143,00	1059,00	864,00	65,00	1218,00	1007,00	1,20	1464,00	1232,00	16,00	0,00	0,00	0,00	0,00	16,00	1312,00	0,00	1302,00	16,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/mar15/EASy/QM_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMar15	1327,00	1863,75	1,48	399,75	5,00	159,00	143,00	1059,00	864,00	65,00	1218,00	1007,00	1,20	1464,00	1232,00	16,00	0,00	0,00	0,00	0,00	16,00	1312,00	0,00	1302,00	16,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/mar15/EASy/QM_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMar15	1327,00	1863,75	1,48	399,75	5,00	159,00	143,00	1059,00	864,00	65,00	1218,00	1007,00	1,20	1464,00	1232,00	32,00	0,00	0,00	0,00	0,00	32,00	1312,00	0,00	1302,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/mar15/EASy/QM_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMar15	1327,00	1863,75	1,48	399,75	5,00	159,00	143,00	1059,00	864,00	65,00	1218,00	1007,00	1,20	1464,00	1232,00	0,00	0,00	0,00	0,00	0,00	16,00	1312,00	16,00	1302,00	16,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/mar15/EASy/QM_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMar15	1327,00	1863,75	1,48	399,75	5,00	159,00	143,00	1059,00	864,00	65,00	1218,00	1007,00	1,20	1464,00	1232,00	16,00	0,00	0,00	0,00	0,00	31,00	1312,00	15,00	1302,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/mar15/EASy/QM_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMar15	1327,00	1863,75	1,48	399,75	5,00	159,00	143,00	1059,00	864,00	65,00	1218,00	1007,00	1,20	1464,00	1232,00	31,00	0,00	0,00	0,00	0,00	31,00	1312,00	0,00	1302,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/mar15/EASy/QM_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMar15	1327,00	1863,75	1,48	399,75	5,00	159,00	143,00	1059,00	864,00	65,00	1218,00	1007,00	1,20	1464,00	1232,00	0,00	0,00	0,00	0,00	0,00	31,00	1312,00	31,00	1302,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/mar15/EASy/QM_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMar15	1327,00	1863,75	1,48	399,75	5,00	159,00	143,00	1059,00	864,00	65,00	1218,00	1007,00	1,20	1464,00	1232,00	15,00	0,00	0,00	0,00	0,00	15,00	1312,00	0,00	1302,00	15,00	
+may14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/may14/EASy/may14_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMay14	0,00	117,25	0,73	15,25	0,00	0,00	0,00	74,00	54,00	19,00	74,00	54,00	1,38	102,00	25,00	0,00	0,00	0,00	0,00	0,00	0,00	25,00	0,00	30,00	0,00	
+may14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/may14/EASy/may14_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMay14	0,00	117,25	0,73	15,25	0,00	0,00	0,00	74,00	54,00	19,00	74,00	54,00	1,38	102,00	25,00	0,00	0,00	0,00	0,00	0,00	0,00	25,00	0,00	30,00	0,00	
+may14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/may14/EASy/may14_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMay14	0,00	117,25	0,73	15,25	0,00	0,00	0,00	74,00	54,00	19,00	74,00	54,00	1,38	102,00	25,00	0,00	0,00	0,00	0,00	0,00	0,00	25,00	0,00	30,00	0,00	
+may14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/may14/EASy/may14_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMay14	0,00	117,25	0,73	15,25	0,00	0,00	0,00	74,00	54,00	19,00	74,00	54,00	1,38	102,00	25,00	0,00	0,00	0,00	0,00	0,00	0,00	25,00	0,00	30,00	0,00	
+may14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/may14/EASy/may14_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMay14	0,00	117,25	0,73	15,25	0,00	0,00	0,00	74,00	54,00	19,00	74,00	54,00	1,38	102,00	25,00	0,00	0,00	0,00	0,00	0,00	0,00	25,00	0,00	30,00	0,00	
+may14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/may14/EASy/may14_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMay14	0,00	117,25	0,73	15,25	0,00	0,00	0,00	74,00	54,00	19,00	74,00	54,00	1,38	102,00	25,00	0,00	0,00	0,00	0,00	0,00	0,00	25,00	0,00	30,00	0,00	
+may14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/may14/EASy/may14_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMay14	0,00	117,25	0,73	15,25	0,00	0,00	0,00	74,00	54,00	19,00	74,00	54,00	1,38	102,00	25,00	0,00	0,00	0,00	0,00	0,00	0,00	25,00	0,00	30,00	0,00	
+may14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/may14/EASy/may14_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMay14	0,00	117,25	0,73	15,25	0,00	0,00	0,00	74,00	54,00	19,00	74,00	54,00	1,38	102,00	25,00	0,00	0,00	0,00	0,00	0,00	0,00	25,00	0,00	30,00	0,00	
+may14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/may14/EASy/may14_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMay14	0,00	117,25	0,73	15,25	0,00	0,00	0,00	74,00	54,00	19,00	74,00	54,00	1,38	102,00	25,00	0,00	0,00	0,00	0,00	0,00	0,00	25,00	0,00	30,00	0,00	
+may14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/may14/EASy/may14_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMay14	0,00	117,25	0,73	15,25	0,00	0,00	0,00	74,00	54,00	19,00	74,00	54,00	1,38	102,00	25,00	0,00	0,00	0,00	0,00	0,00	0,00	25,00	0,00	30,00	0,00	
Index: /reasoner/measures/benchmark-results-new-1.3-ojdk10-noTypeCache/measurements-sse.tsv
===================================================================
--- /reasoner/measures/benchmark-results-new-1.3-ojdk10-noTypeCache/measurements-sse.tsv	(revision 278)
+++ /reasoner/measures/benchmark-results-new-1.3-ojdk10-noTypeCache/measurements-sse.tsv	(revision 278)
@@ -0,0 +1,3761 @@
+model name	URI	tag	runCount	caller	MODEL_ANNOTATIONS	MODEL_COMPLEXITY	MODEL_CONSTRAINT_AVG_COMPLEXITY	MODEL_CONSTRAINT_COMPLEXITY	MODEL_CONSTRAINT_INSTANCES	MODEL_CONSTRAINT_VARIABLES	MODEL_CONSTRAINT_VARIABLES_NO_CONTAINER	MODEL_NORMAL_VARIABLES	MODEL_NORMAL_VARIABLES_NO_CONTAINER	MODEL_TOPLEVEL_VARIABLES	MODEL_VARIABLES	MODEL_VARIABLES_WITHOUT_CONTAINER	MODEL_VARIABLE_AVG_COMPLEXITY	MODEL_VARIABLE_COMPLEXITY	REASONER_CONSTRAINT_COUNT	REASONER_EVALUATION_TIME	REASONER_INSTANCE_CREATION_TIME	REASONER_PROBLEMS	REASONER_PROBLEM_ASSIGNMENTS	REASONER_PROBLEM_CONSTRAINTS	REASONER_REASONING_TIME	REASONER_REEVALUATION_COUNT	REASONER_TRANSLATION_TIME	REASONER_VARIABLES_IN_CONSTRAINTS	RESPONSETIME_AUTO	
+CompoundTestProject		CompoundInit	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	15,00	5,00	15,00	4,00	15,00	
+CompoundTestProject		CompoundInit	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		CompoundInit	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		CompoundInit	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		CompoundInit	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		CompoundInit	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		CompoundInit	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		CompoundInit	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		CompoundInit	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		CompoundInit	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		REASONING	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+CompoundTestProject		REASONING	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		REASONING	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		REASONING	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		REASONING	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		REASONING	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		REASONING	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		REASONING	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		REASONING	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		REASONING	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+SimpleTestProject		REASONING	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoning	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoning	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoning	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoning	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoning	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoning	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	16,00	0,00	1,00	0,00	1,00	16,00	5,00	0,00	3,00	16,00	
+SimpleTestProject		REASONING	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoning	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoning	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoning	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	15,00	5,00	0,00	3,00	15,00	
+SimpleTestProject		REASONING	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoning	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	16,00	0,00	1,00	0,00	1,00	16,00	5,00	0,00	3,00	16,00	
+SimpleTestProject		REASONING	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+CompoundTestProject		CompoundInit	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoning	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		CompoundInit	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoning	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		CompoundInit	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoning	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		CompoundInit	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoning	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		CompoundInit	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoning	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		CompoundInit	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoning	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		CompoundInit	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoning	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		CompoundInit	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoning	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		CompoundInit	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoning	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		CompoundInit	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoning	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	1,00	1,00	3,00	1,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	1,00	1,00	3,00	1,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	7,75	0,58	1,75	0,00	0,00	0,00	5,00	3,00	3,00	5,00	3,00	1,20	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	7,75	0,58	1,75	0,00	0,00	0,00	5,00	3,00	3,00	5,00	3,00	1,20	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	REASONING	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	REASONING	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	REASONING	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	REASONING	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	REASONING	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	REASONING	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	REASONING	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	REASONING	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	REASONING	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	REASONING	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	15,00	1,00	0,00	1,00	15,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	16,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	REASONING	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	REASONING	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	3,00	5,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	2,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	REASONING	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	3,00	5,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	2,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	REASONING	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	3,00	5,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	7,00	16,00	0,00	0,00	0,00	0,00	16,00	7,00	0,00	2,00	16,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	REASONING	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	3,00	5,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	2,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	REASONING	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	3,00	5,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	2,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	REASONING	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	3,00	5,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	2,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	REASONING	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	3,00	5,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	2,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	REASONING	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	3,00	5,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	2,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	REASONING	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	3,00	5,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	2,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	1,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+CompoundIndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/CompoundIndividualAssign.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.compoundIndividualAssign	8,00	11,00	1,14	8,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	6,00	0,00	
+CompoundIndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/CompoundIndividualAssign.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.compoundIndividualAssign	8,00	11,00	1,14	8,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	13,00	0,00	0,00	0,00	0,00	0,00	16,00	15,00	16,00	6,00	16,00	
+CompoundIndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/CompoundIndividualAssign.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.compoundIndividualAssign	8,00	11,00	1,14	8,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	6,00	0,00	
+CompoundIndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/CompoundIndividualAssign.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.compoundIndividualAssign	8,00	11,00	1,14	8,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	6,00	0,00	
+CompoundIndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/CompoundIndividualAssign.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.compoundIndividualAssign	8,00	11,00	1,14	8,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	6,00	0,00	
+CompoundIndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/CompoundIndividualAssign.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.compoundIndividualAssign	8,00	11,00	1,14	8,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	6,00	0,00	
+CompoundIndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/CompoundIndividualAssign.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.compoundIndividualAssign	8,00	11,00	1,14	8,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	6,00	0,00	
+CompoundIndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/CompoundIndividualAssign.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.compoundIndividualAssign	8,00	11,00	1,14	8,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	6,00	0,00	
+CompoundIndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/CompoundIndividualAssign.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.compoundIndividualAssign	8,00	11,00	1,14	8,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	6,00	0,00	
+CompoundIndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/CompoundIndividualAssign.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.compoundIndividualAssign	8,00	11,00	1,14	8,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	6,00	0,00	
+BlockAssignNestedConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraint.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraint	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+BlockAssignNestedConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraint.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraint	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+BlockAssignNestedConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraint.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraint	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+BlockAssignNestedConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraint.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraint	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+BlockAssignNestedConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraint.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraint	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+BlockAssignNestedConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraint.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraint	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+BlockAssignNestedConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraint.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraint	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+BlockAssignNestedConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraint.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraint	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+BlockAssignNestedConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraint.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraint	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+BlockAssignNestedConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraint.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraint	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+ConstraintAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/ConstraintAnnotationTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.constraintAnnotationTest	10,00	26,50	0,81	14,50	0,00	1,00	1,00	9,00	9,00	8,00	10,00	10,00	1,20	12,00	39,00	0,00	0,00	9,00	0,00	9,00	0,00	39,00	0,00	17,00	0,00	
+ConstraintAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/ConstraintAnnotationTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.constraintAnnotationTest	10,00	26,50	0,81	14,50	0,00	1,00	1,00	9,00	9,00	8,00	10,00	10,00	1,20	12,00	39,00	0,00	0,00	9,00	0,00	9,00	0,00	39,00	0,00	17,00	0,00	
+ConstraintAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/ConstraintAnnotationTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.constraintAnnotationTest	10,00	26,50	0,81	14,50	0,00	1,00	1,00	9,00	9,00	8,00	10,00	10,00	1,20	12,00	39,00	0,00	0,00	9,00	0,00	9,00	0,00	39,00	0,00	17,00	0,00	
+ConstraintAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/ConstraintAnnotationTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.constraintAnnotationTest	10,00	26,50	0,81	14,50	0,00	1,00	1,00	9,00	9,00	8,00	10,00	10,00	1,20	12,00	39,00	0,00	0,00	9,00	0,00	9,00	0,00	39,00	0,00	17,00	0,00	
+ConstraintAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/ConstraintAnnotationTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.constraintAnnotationTest	10,00	26,50	0,81	14,50	0,00	1,00	1,00	9,00	9,00	8,00	10,00	10,00	1,20	12,00	39,00	0,00	0,00	9,00	0,00	9,00	0,00	39,00	0,00	17,00	0,00	
+ConstraintAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/ConstraintAnnotationTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.constraintAnnotationTest	10,00	26,50	0,81	14,50	0,00	1,00	1,00	9,00	9,00	8,00	10,00	10,00	1,20	12,00	39,00	0,00	0,00	9,00	0,00	9,00	0,00	39,00	0,00	17,00	0,00	
+ConstraintAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/ConstraintAnnotationTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.constraintAnnotationTest	10,00	26,50	0,81	14,50	0,00	1,00	1,00	9,00	9,00	8,00	10,00	10,00	1,20	12,00	39,00	0,00	0,00	9,00	0,00	9,00	0,00	39,00	0,00	17,00	0,00	
+ConstraintAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/ConstraintAnnotationTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.constraintAnnotationTest	10,00	26,50	0,81	14,50	0,00	1,00	1,00	9,00	9,00	8,00	10,00	10,00	1,20	12,00	39,00	0,00	0,00	9,00	0,00	9,00	0,00	39,00	0,00	17,00	0,00	
+ConstraintAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/ConstraintAnnotationTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.constraintAnnotationTest	10,00	26,50	0,81	14,50	0,00	1,00	1,00	9,00	9,00	8,00	10,00	10,00	1,20	12,00	39,00	0,00	0,00	9,00	0,00	9,00	0,00	39,00	0,00	17,00	0,00	
+ConstraintAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/ConstraintAnnotationTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.constraintAnnotationTest	10,00	26,50	0,81	14,50	0,00	1,00	1,00	9,00	9,00	8,00	10,00	10,00	1,20	12,00	39,00	0,00	0,00	9,00	0,00	9,00	0,00	39,00	0,00	17,00	0,00	
+IndividualAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssignNested.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssignNested	2,00	5,50	2,50	2,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+IndividualAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssignNested.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssignNested	2,00	5,50	2,50	2,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+IndividualAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssignNested.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssignNested	2,00	5,50	2,50	2,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+IndividualAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssignNested.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssignNested	2,00	5,50	2,50	2,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+IndividualAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssignNested.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssignNested	2,00	5,50	2,50	2,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+IndividualAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssignNested.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssignNested	2,00	5,50	2,50	2,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+IndividualAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssignNested.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssignNested	2,00	5,50	2,50	2,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+IndividualAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssignNested.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssignNested	2,00	5,50	2,50	2,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+IndividualAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssignNested.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssignNested	2,00	5,50	2,50	2,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+IndividualAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssignNested.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssignNested	2,00	5,50	2,50	2,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	15,00	
+NestedAssignBlock2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlock2.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlock2	3,00	11,25	2,08	6,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+NestedAssignBlock2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlock2.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlock2	3,00	11,25	2,08	6,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+NestedAssignBlock2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlock2.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlock2	3,00	11,25	2,08	6,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+NestedAssignBlock2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlock2.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlock2	3,00	11,25	2,08	6,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+NestedAssignBlock2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlock2.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlock2	3,00	11,25	2,08	6,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+NestedAssignBlock2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlock2.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlock2	3,00	11,25	2,08	6,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+NestedAssignBlock2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlock2.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlock2	3,00	11,25	2,08	6,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+NestedAssignBlock2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlock2.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlock2	3,00	11,25	2,08	6,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+NestedAssignBlock2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlock2.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlock2	3,00	11,25	2,08	6,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+NestedAssignBlock2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlock2.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlock2	3,00	11,25	2,08	6,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+BlockAssignNestedNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedNested.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedNested	12,00	15,00	2,50	10,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	6,00	0,00	
+BlockAssignNestedNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedNested.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedNested	12,00	15,00	2,50	10,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	6,00	0,00	
+BlockAssignNestedNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedNested.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedNested	12,00	15,00	2,50	10,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	9,00	16,00	0,00	0,00	0,00	0,00	16,00	13,00	0,00	6,00	16,00	
+BlockAssignNestedNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedNested.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedNested	12,00	15,00	2,50	10,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	6,00	0,00	
+BlockAssignNestedNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedNested.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedNested	12,00	15,00	2,50	10,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	6,00	0,00	
+BlockAssignNestedNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedNested.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedNested	12,00	15,00	2,50	10,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	6,00	0,00	
+BlockAssignNestedNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedNested.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedNested	12,00	15,00	2,50	10,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	6,00	0,00	
+BlockAssignNestedNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedNested.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedNested	12,00	15,00	2,50	10,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	6,00	0,00	
+BlockAssignNestedNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedNested.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedNested	12,00	15,00	2,50	10,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	6,00	0,00	
+BlockAssignNestedNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedNested.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedNested	12,00	15,00	2,50	10,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	6,00	0,00	
+BlockAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssign.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssign	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+BlockAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssign.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssign	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+BlockAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssign.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssign	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+BlockAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssign.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssign	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+BlockAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssign.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssign	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+BlockAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssign.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssign	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+BlockAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssign.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssign	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+BlockAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssign.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssign	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+BlockAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssign.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssign	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+BlockAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssign.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssign	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+DefaultAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/DefaultAssign.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.defaultAssign	3,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	6,00	0,00	
+DefaultAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/DefaultAssign.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.defaultAssign	3,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	6,00	0,00	
+DefaultAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/DefaultAssign.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.defaultAssign	3,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	6,00	0,00	
+DefaultAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/DefaultAssign.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.defaultAssign	3,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	6,00	0,00	
+DefaultAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/DefaultAssign.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.defaultAssign	3,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	6,00	0,00	
+DefaultAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/DefaultAssign.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.defaultAssign	3,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	6,00	0,00	
+DefaultAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/DefaultAssign.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.defaultAssign	3,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	6,00	0,00	
+DefaultAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/DefaultAssign.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.defaultAssign	3,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	6,00	0,00	
+DefaultAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/DefaultAssign.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.defaultAssign	3,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	6,00	0,00	
+DefaultAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/DefaultAssign.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.defaultAssign	3,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	6,00	0,00	
+IndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssign.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssign	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+IndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssign.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssign	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+IndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssign.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssign	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+IndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssign.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssign	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+IndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssign.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssign	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+IndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssign.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssign	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+IndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssign.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssign	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+IndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssign.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssign	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+IndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssign.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssign	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+IndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssign.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssign	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+BlockAssignNestedConstraintFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraintFail.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraintFail	3,00	5,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BlockAssignNestedConstraintFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraintFail.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraintFail	3,00	5,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BlockAssignNestedConstraintFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraintFail.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraintFail	3,00	5,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BlockAssignNestedConstraintFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraintFail.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraintFail	3,00	5,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BlockAssignNestedConstraintFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraintFail.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraintFail	3,00	5,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BlockAssignNestedConstraintFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraintFail.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraintFail	3,00	5,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BlockAssignNestedConstraintFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraintFail.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraintFail	3,00	5,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BlockAssignNestedConstraintFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraintFail.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraintFail	3,00	5,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BlockAssignNestedConstraintFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraintFail.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraintFail	3,00	5,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BlockAssignNestedConstraintFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraintFail.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraintFail	3,00	5,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+NestedAssignBlockTree	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlockTree.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlockTree	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+NestedAssignBlockTree	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlockTree.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlockTree	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+NestedAssignBlockTree	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlockTree.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlockTree	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+NestedAssignBlockTree	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlockTree.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlockTree	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+NestedAssignBlockTree	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlockTree.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlockTree	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+NestedAssignBlockTree	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlockTree.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlockTree	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+NestedAssignBlockTree	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlockTree.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlockTree	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+NestedAssignBlockTree	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlockTree.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlockTree	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+NestedAssignBlockTree	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlockTree.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlockTree	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+NestedAssignBlockTree	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlockTree.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlockTree	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+BlockAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNested.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNested	3,00	7,25	1,08	3,25	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+BlockAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNested.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNested	3,00	7,25	1,08	3,25	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+BlockAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNested.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNested	3,00	7,25	1,08	3,25	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+BlockAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNested.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNested	3,00	7,25	1,08	3,25	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+BlockAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNested.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNested	3,00	7,25	1,08	3,25	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+BlockAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNested.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNested	3,00	7,25	1,08	3,25	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+BlockAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNested.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNested	3,00	7,25	1,08	3,25	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+BlockAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNested.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNested	3,00	7,25	1,08	3,25	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+BlockAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNested.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNested	3,00	7,25	1,08	3,25	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+BlockAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNested.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNested	3,00	7,25	1,08	3,25	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+constraintSetSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDefault.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDefault.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDefault.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDefault.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDefault.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDefault.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDefault.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDefault.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDefault.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDefault.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+ContainerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ContainerAnnotationTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.containerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	15,00	0,00	10,00	0,00	10,00	15,00	33,00	0,00	19,00	15,00	
+ContainerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ContainerAnnotationTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.containerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+ContainerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ContainerAnnotationTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.containerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+ContainerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ContainerAnnotationTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.containerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+ContainerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ContainerAnnotationTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.containerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+ContainerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ContainerAnnotationTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.containerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+ContainerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ContainerAnnotationTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.containerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+ContainerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ContainerAnnotationTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.containerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+ContainerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ContainerAnnotationTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.containerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	15,00	33,00	15,00	19,00	15,00	
+ContainerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ContainerAnnotationTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.containerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/QM.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.qmTest	37,00	59,75	0,48	5,75	0,00	0,00	0,00	37,00	37,00	9,00	37,00	37,00	1,46	54,00	51,00	0,00	0,00	1,00	0,00	1,00	0,00	51,00	0,00	4,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/QM.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.qmTest	37,00	59,75	0,48	5,75	0,00	0,00	0,00	37,00	37,00	9,00	37,00	37,00	1,46	54,00	51,00	0,00	0,00	1,00	0,00	1,00	0,00	51,00	0,00	4,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/QM.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.qmTest	37,00	59,75	0,48	5,75	0,00	0,00	0,00	37,00	37,00	9,00	37,00	37,00	1,46	54,00	51,00	0,00	0,00	1,00	0,00	1,00	0,00	51,00	0,00	4,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/QM.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.qmTest	37,00	59,75	0,48	5,75	0,00	0,00	0,00	37,00	37,00	9,00	37,00	37,00	1,46	54,00	51,00	0,00	0,00	1,00	0,00	1,00	0,00	51,00	0,00	4,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/QM.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.qmTest	37,00	59,75	0,48	5,75	0,00	0,00	0,00	37,00	37,00	9,00	37,00	37,00	1,46	54,00	51,00	0,00	0,00	1,00	0,00	1,00	16,00	51,00	16,00	4,00	16,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/QM.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.qmTest	37,00	59,75	0,48	5,75	0,00	0,00	0,00	37,00	37,00	9,00	37,00	37,00	1,46	54,00	51,00	0,00	0,00	1,00	0,00	1,00	0,00	51,00	0,00	4,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/QM.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.qmTest	37,00	59,75	0,48	5,75	0,00	0,00	0,00	37,00	37,00	9,00	37,00	37,00	1,46	54,00	51,00	15,00	0,00	1,00	0,00	1,00	15,00	51,00	0,00	4,00	15,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/QM.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.qmTest	37,00	59,75	0,48	5,75	0,00	0,00	0,00	37,00	37,00	9,00	37,00	37,00	1,46	54,00	51,00	0,00	0,00	1,00	0,00	1,00	0,00	51,00	0,00	4,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/QM.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.qmTest	37,00	59,75	0,48	5,75	0,00	0,00	0,00	37,00	37,00	9,00	37,00	37,00	1,46	54,00	51,00	0,00	0,00	1,00	0,00	1,00	16,00	51,00	0,00	4,00	16,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/QM.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.qmTest	37,00	59,75	0,48	5,75	0,00	0,00	0,00	37,00	37,00	9,00	37,00	37,00	1,46	54,00	51,00	0,00	0,00	1,00	0,00	1,00	0,00	51,00	0,00	4,00	0,00	
+constraintSetAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetAssigned.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetAssignedTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetAssigned.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetAssignedTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetAssigned.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetAssignedTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetAssigned.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetAssignedTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetAssigned.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetAssignedTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetAssigned.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetAssignedTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetAssigned.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetAssignedTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetAssigned.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetAssignedTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetAssigned.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetAssignedTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetAssigned.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetAssignedTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefault.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefault.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefault.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefault.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefault.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefault.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefault.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefault.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefault.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefault.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetInNestedCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInNestedCompoundDefault.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInNestedCompoundDefaultTest	0,00	13,50	5,50	5,50	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,60	8,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+constraintSetInNestedCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInNestedCompoundDefault.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInNestedCompoundDefaultTest	0,00	13,50	5,50	5,50	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,60	8,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+constraintSetInNestedCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInNestedCompoundDefault.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInNestedCompoundDefaultTest	0,00	13,50	5,50	5,50	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,60	8,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+constraintSetInNestedCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInNestedCompoundDefault.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInNestedCompoundDefaultTest	0,00	13,50	5,50	5,50	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,60	8,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+constraintSetInNestedCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInNestedCompoundDefault.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInNestedCompoundDefaultTest	0,00	13,50	5,50	5,50	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,60	8,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+constraintSetInNestedCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInNestedCompoundDefault.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInNestedCompoundDefaultTest	0,00	13,50	5,50	5,50	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,60	8,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+constraintSetInNestedCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInNestedCompoundDefault.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInNestedCompoundDefaultTest	0,00	13,50	5,50	5,50	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,60	8,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+constraintSetInNestedCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInNestedCompoundDefault.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInNestedCompoundDefaultTest	0,00	13,50	5,50	5,50	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,60	8,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	16,00	
+constraintSetInNestedCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInNestedCompoundDefault.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInNestedCompoundDefaultTest	0,00	13,50	5,50	5,50	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,60	8,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+constraintSetInNestedCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInNestedCompoundDefault.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInNestedCompoundDefaultTest	0,00	13,50	5,50	5,50	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,60	8,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+setDerivedSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/setDerivedSet.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.setDerivedSetTest	0,00	11,75	1,35	6,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	9,00	0,00	6,00	0,00	
+setDerivedSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/setDerivedSet.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.setDerivedSetTest	0,00	11,75	1,35	6,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	9,00	0,00	6,00	0,00	
+setDerivedSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/setDerivedSet.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.setDerivedSetTest	0,00	11,75	1,35	6,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	9,00	0,00	6,00	0,00	
+setDerivedSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/setDerivedSet.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.setDerivedSetTest	0,00	11,75	1,35	6,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	9,00	0,00	6,00	0,00	
+setDerivedSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/setDerivedSet.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.setDerivedSetTest	0,00	11,75	1,35	6,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	9,00	0,00	6,00	0,00	
+setDerivedSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/setDerivedSet.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.setDerivedSetTest	0,00	11,75	1,35	6,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	9,00	0,00	6,00	0,00	
+setDerivedSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/setDerivedSet.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.setDerivedSetTest	0,00	11,75	1,35	6,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	9,00	0,00	6,00	0,00	
+setDerivedSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/setDerivedSet.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.setDerivedSetTest	0,00	11,75	1,35	6,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,25	5,00	9,00	16,00	0,00	3,00	0,00	3,00	16,00	9,00	0,00	6,00	16,00	
+setDerivedSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/setDerivedSet.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.setDerivedSetTest	0,00	11,75	1,35	6,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	9,00	0,00	6,00	0,00	
+setDerivedSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/setDerivedSet.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.setDerivedSetTest	0,00	11,75	1,35	6,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	9,00	0,00	6,00	0,00	
+ReferenceDerivedCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ReferenceDerivedCollectionTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.referenceDerivedCollectionTest	0,00	5,25	0,38	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	8,00	0,00	0,00	5,00	0,00	5,00	0,00	8,00	0,00	3,00	0,00	
+ReferenceDerivedCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ReferenceDerivedCollectionTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.referenceDerivedCollectionTest	0,00	5,25	0,38	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	8,00	0,00	0,00	5,00	0,00	5,00	0,00	8,00	0,00	3,00	0,00	
+ReferenceDerivedCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ReferenceDerivedCollectionTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.referenceDerivedCollectionTest	0,00	5,25	0,38	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	8,00	0,00	0,00	5,00	0,00	5,00	0,00	8,00	0,00	3,00	0,00	
+ReferenceDerivedCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ReferenceDerivedCollectionTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.referenceDerivedCollectionTest	0,00	5,25	0,38	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	8,00	0,00	0,00	5,00	0,00	5,00	0,00	8,00	0,00	3,00	0,00	
+ReferenceDerivedCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ReferenceDerivedCollectionTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.referenceDerivedCollectionTest	0,00	5,25	0,38	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	8,00	0,00	0,00	5,00	0,00	5,00	0,00	8,00	0,00	3,00	0,00	
+ReferenceDerivedCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ReferenceDerivedCollectionTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.referenceDerivedCollectionTest	0,00	5,25	0,38	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	8,00	0,00	0,00	5,00	0,00	5,00	0,00	8,00	0,00	3,00	0,00	
+ReferenceDerivedCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ReferenceDerivedCollectionTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.referenceDerivedCollectionTest	0,00	5,25	0,38	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	8,00	0,00	0,00	5,00	0,00	5,00	0,00	8,00	0,00	3,00	0,00	
+ReferenceDerivedCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ReferenceDerivedCollectionTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.referenceDerivedCollectionTest	0,00	5,25	0,38	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	8,00	0,00	0,00	5,00	0,00	5,00	0,00	8,00	0,00	3,00	0,00	
+ReferenceDerivedCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ReferenceDerivedCollectionTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.referenceDerivedCollectionTest	0,00	5,25	0,38	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	8,00	0,00	0,00	5,00	0,00	5,00	0,00	8,00	0,00	3,00	0,00	
+ReferenceDerivedCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ReferenceDerivedCollectionTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.referenceDerivedCollectionTest	0,00	5,25	0,38	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	8,00	0,00	0,00	5,00	0,00	5,00	0,00	8,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest1.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection1Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	16,00	0,00	1,00	0,00	1,00	16,00	3,00	0,00	3,00	16,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest1.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection1Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest1.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection1Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest1.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection1Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest1.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection1Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest1.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection1Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest1.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection1Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest1.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection1Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest1.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection1Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest1.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection1Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest2.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection2Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	15,00	3,00	15,00	3,00	15,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest2.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection2Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest2.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection2Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest2.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection2Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest2.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection2Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest2.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection2Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	16,00	0,00	0,00	0,00	0,00	16,00	3,00	0,00	3,00	16,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest2.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection2Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest2.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection2Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest2.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection2Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest2.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection2Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest3.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection3Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest3.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection3Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest3.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection3Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest3.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection3Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest3.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection3Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest3.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection3Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest3.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection3Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest3.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection3Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest3.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection3Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest3.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection3Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest4.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection4Test	0,00	19,50	2,88	11,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	6,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest4.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection4Test	0,00	19,50	2,88	11,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	6,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest4.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection4Test	0,00	19,50	2,88	11,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	6,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest4.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection4Test	0,00	19,50	2,88	11,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	6,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest4.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection4Test	0,00	19,50	2,88	11,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	6,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest4.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection4Test	0,00	19,50	2,88	11,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	6,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest4.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection4Test	0,00	19,50	2,88	11,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	6,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest4.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection4Test	0,00	19,50	2,88	11,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	6,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest4.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection4Test	0,00	19,50	2,88	11,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	6,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest4.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection4Test	0,00	19,50	2,88	11,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	6,00	0,00	
+constraintSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDerivedCompound.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	4,00	0,00	
+constraintSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDerivedCompound.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	4,00	0,00	
+constraintSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDerivedCompound.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	16,00	0,00	2,00	0,00	2,00	16,00	10,00	0,00	4,00	16,00	
+constraintSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDerivedCompound.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	4,00	0,00	
+constraintSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDerivedCompound.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	4,00	0,00	
+constraintSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDerivedCompound.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	4,00	0,00	
+constraintSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDerivedCompound.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	15,00	0,00	2,00	0,00	2,00	15,00	10,00	0,00	4,00	15,00	
+constraintSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDerivedCompound.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	4,00	0,00	
+constraintSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDerivedCompound.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	4,00	0,00	
+constraintSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDerivedCompound.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	4,00	0,00	
+constraintSetInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundAssigned.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundAssignedTest	0,00	6,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	16,00	0,00	1,00	0,00	1,00	16,00	3,00	0,00	1,00	16,00	
+constraintSetInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundAssigned.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundAssignedTest	0,00	6,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+constraintSetInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundAssigned.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundAssignedTest	0,00	6,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+constraintSetInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundAssigned.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundAssignedTest	0,00	6,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+constraintSetInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundAssigned.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundAssignedTest	0,00	6,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+constraintSetInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundAssigned.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundAssignedTest	0,00	6,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+constraintSetInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundAssigned.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundAssignedTest	0,00	6,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+constraintSetInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundAssigned.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundAssignedTest	0,00	6,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+constraintSetInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundAssigned.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundAssignedTest	0,00	6,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+constraintSetInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundAssigned.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundAssignedTest	0,00	6,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+constraintSetInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundDefault.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundDefaultTest	0,00	6,25	1,25	1,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+constraintSetInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundDefault.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundDefaultTest	0,00	6,25	1,25	1,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+constraintSetInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundDefault.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundDefaultTest	0,00	6,25	1,25	1,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+constraintSetInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundDefault.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundDefaultTest	0,00	6,25	1,25	1,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+constraintSetInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundDefault.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundDefaultTest	0,00	6,25	1,25	1,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+constraintSetInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundDefault.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundDefaultTest	0,00	6,25	1,25	1,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+constraintSetInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundDefault.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundDefaultTest	0,00	6,25	1,25	1,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+constraintSetInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundDefault.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundDefaultTest	0,00	6,25	1,25	1,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+constraintSetInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundDefault.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundDefaultTest	0,00	6,25	1,25	1,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+constraintSetInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundDefault.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundDefaultTest	0,00	6,25	1,25	1,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+constraintSetSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDerivedCompound.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	4,00	0,00	
+constraintSetSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDerivedCompound.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	4,00	0,00	
+constraintSetSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDerivedCompound.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	4,00	0,00	
+constraintSetSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDerivedCompound.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	4,00	0,00	
+constraintSetSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDerivedCompound.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	4,00	0,00	
+constraintSetSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDerivedCompound.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	16,00	0,00	2,00	0,00	2,00	16,00	10,00	0,00	4,00	16,00	
+constraintSetSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDerivedCompound.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	4,00	0,00	
+constraintSetSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDerivedCompound.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	4,00	0,00	
+constraintSetSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDerivedCompound.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	4,00	0,00	
+constraintSetSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDerivedCompound.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	16,00	0,00	2,00	0,00	2,00	16,00	10,00	0,00	4,00	16,00	
+constraintSetDefaultInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefaultInCompound.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultInCompoundTest	0,00	6,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+constraintSetDefaultInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefaultInCompound.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultInCompoundTest	0,00	6,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+constraintSetDefaultInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefaultInCompound.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultInCompoundTest	0,00	6,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+constraintSetDefaultInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefaultInCompound.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultInCompoundTest	0,00	6,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+constraintSetDefaultInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefaultInCompound.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultInCompoundTest	0,00	6,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+constraintSetDefaultInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefaultInCompound.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultInCompoundTest	0,00	6,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+constraintSetDefaultInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefaultInCompound.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultInCompoundTest	0,00	6,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+constraintSetDefaultInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefaultInCompound.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultInCompoundTest	0,00	6,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+constraintSetDefaultInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefaultInCompound.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultInCompoundTest	0,00	6,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+constraintSetDefaultInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefaultInCompound.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultInCompoundTest	0,00	6,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+basicAssignmentTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicAssignmentTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicAssignmentTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	2,00	2,00	0,00	0,00	4,00	0,00	0,00	0,00	
+basicAssignmentTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicAssignmentTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicAssignmentTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	2,00	2,00	0,00	0,00	4,00	0,00	0,00	0,00	
+basicAssignmentTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicAssignmentTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicAssignmentTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	2,00	2,00	0,00	0,00	4,00	0,00	0,00	0,00	
+basicAssignmentTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicAssignmentTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicAssignmentTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	2,00	2,00	0,00	0,00	4,00	0,00	0,00	0,00	
+basicAssignmentTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicAssignmentTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicAssignmentTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	2,00	2,00	0,00	0,00	4,00	0,00	0,00	0,00	
+basicAssignmentTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicAssignmentTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicAssignmentTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	2,00	2,00	0,00	0,00	4,00	0,00	0,00	0,00	
+basicAssignmentTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicAssignmentTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicAssignmentTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	2,00	2,00	0,00	0,00	4,00	0,00	0,00	0,00	
+basicAssignmentTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicAssignmentTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicAssignmentTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	2,00	2,00	0,00	0,00	4,00	0,00	0,00	0,00	
+basicAssignmentTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicAssignmentTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicAssignmentTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	2,00	2,00	0,00	0,00	4,00	0,00	0,00	0,00	
+basicAssignmentTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicAssignmentTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicAssignmentTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	2,00	2,00	0,00	0,00	4,00	0,00	0,00	0,00	
+basicCompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicCompoundConstraintTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicCompoundConstraintTest	0,00	6,00	0,25	1,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+basicCompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicCompoundConstraintTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicCompoundConstraintTest	0,00	6,00	0,25	1,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+basicCompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicCompoundConstraintTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicCompoundConstraintTest	0,00	6,00	0,25	1,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+basicCompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicCompoundConstraintTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicCompoundConstraintTest	0,00	6,00	0,25	1,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+basicCompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicCompoundConstraintTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicCompoundConstraintTest	0,00	6,00	0,25	1,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+basicCompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicCompoundConstraintTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicCompoundConstraintTest	0,00	6,00	0,25	1,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+basicCompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicCompoundConstraintTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicCompoundConstraintTest	0,00	6,00	0,25	1,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+basicCompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicCompoundConstraintTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicCompoundConstraintTest	0,00	6,00	0,25	1,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+basicCompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicCompoundConstraintTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicCompoundConstraintTest	0,00	6,00	0,25	1,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+basicCompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicCompoundConstraintTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicCompoundConstraintTest	0,00	6,00	0,25	1,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+basicConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicConstraintTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicConstraintTest	0,00	4,75	0,44	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+basicConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicConstraintTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicConstraintTest	0,00	4,75	0,44	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+basicConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicConstraintTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicConstraintTest	0,00	4,75	0,44	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+basicConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicConstraintTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicConstraintTest	0,00	4,75	0,44	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+basicConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicConstraintTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicConstraintTest	0,00	4,75	0,44	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+basicConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicConstraintTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicConstraintTest	0,00	4,75	0,44	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+basicConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicConstraintTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicConstraintTest	0,00	4,75	0,44	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+basicConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicConstraintTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicConstraintTest	0,00	4,75	0,44	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+basicConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicConstraintTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicConstraintTest	0,00	4,75	0,44	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+basicConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicConstraintTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicConstraintTest	0,00	4,75	0,44	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+IgnoreDefaultAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/IgnoreDefaultAssignments.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.ignoreDefaultAssignmentsTest	0,00	8,00	0,60	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+IgnoreDefaultAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/IgnoreDefaultAssignments.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.ignoreDefaultAssignmentsTest	0,00	8,00	0,60	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+IgnoreDefaultAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/IgnoreDefaultAssignments.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.ignoreDefaultAssignmentsTest	0,00	8,00	0,60	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+IgnoreDefaultAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/IgnoreDefaultAssignments.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.ignoreDefaultAssignmentsTest	0,00	8,00	0,60	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+IgnoreDefaultAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/IgnoreDefaultAssignments.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.ignoreDefaultAssignmentsTest	0,00	8,00	0,60	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+IgnoreDefaultAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/IgnoreDefaultAssignments.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.ignoreDefaultAssignmentsTest	0,00	8,00	0,60	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+IgnoreDefaultAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/IgnoreDefaultAssignments.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.ignoreDefaultAssignmentsTest	0,00	8,00	0,60	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+IgnoreDefaultAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/IgnoreDefaultAssignments.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.ignoreDefaultAssignmentsTest	0,00	8,00	0,60	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+IgnoreDefaultAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/IgnoreDefaultAssignments.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.ignoreDefaultAssignmentsTest	0,00	8,00	0,60	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+IgnoreDefaultAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/IgnoreDefaultAssignments.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.ignoreDefaultAssignmentsTest	0,00	8,00	0,60	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+PartialFreeze	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/PartialFreeze.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.partialFreezeTest	2,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+PartialFreeze	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/PartialFreeze.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.partialFreezeTest	2,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+PartialFreeze	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/PartialFreeze.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.partialFreezeTest	2,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+PartialFreeze	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/PartialFreeze.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.partialFreezeTest	2,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+PartialFreeze	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/PartialFreeze.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.partialFreezeTest	2,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+PartialFreeze	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/PartialFreeze.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.partialFreezeTest	2,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+PartialFreeze	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/PartialFreeze.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.partialFreezeTest	2,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+PartialFreeze	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/PartialFreeze.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.partialFreezeTest	2,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+PartialFreeze	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/PartialFreeze.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.partialFreezeTest	2,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+PartialFreeze	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/PartialFreeze.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.partialFreezeTest	2,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+ValidationConstraintFilter	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/ValidationConstraintFilter.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.validationConstraintFilterTest	0,00	10,25	1,31	5,25	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+ValidationConstraintFilter	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/ValidationConstraintFilter.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.validationConstraintFilterTest	0,00	10,25	1,31	5,25	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+ValidationConstraintFilter	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/ValidationConstraintFilter.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.validationConstraintFilterTest	0,00	10,25	1,31	5,25	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+ValidationConstraintFilter	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/ValidationConstraintFilter.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.validationConstraintFilterTest	0,00	10,25	1,31	5,25	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+ValidationConstraintFilter	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/ValidationConstraintFilter.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.validationConstraintFilterTest	0,00	10,25	1,31	5,25	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+ValidationConstraintFilter	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/ValidationConstraintFilter.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.validationConstraintFilterTest	0,00	10,25	1,31	5,25	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+ValidationConstraintFilter	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/ValidationConstraintFilter.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.validationConstraintFilterTest	0,00	10,25	1,31	5,25	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+ValidationConstraintFilter	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/ValidationConstraintFilter.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.validationConstraintFilterTest	0,00	10,25	1,31	5,25	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+ValidationConstraintFilter	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/ValidationConstraintFilter.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.validationConstraintFilterTest	0,00	10,25	1,31	5,25	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+ValidationConstraintFilter	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/ValidationConstraintFilter.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.validationConstraintFilterTest	0,00	10,25	1,31	5,25	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+booleanXORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanXORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanXORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanXORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanXORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanXORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanXORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanXORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanXORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanXORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+DynamicDispatchTestIsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsValid.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsValid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsValid.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsValid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsValid.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsValid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsValid.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsValid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsValid.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsValid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsValid.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsValid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsValid.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsValid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsValid.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsValid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsValid.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsValid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsValid.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsValid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	1,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	16,00	0,00	0,00	0,00	0,00	16,00	4,00	0,00	0,00	16,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+typedefTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedef.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+typedefTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedef.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+typedefTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedef.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+typedefTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedef.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+typedefTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedef.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+typedefTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedef.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	16,00	6,00	16,00	2,00	16,00	
+typedefTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedef.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+typedefTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedef.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+typedefTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedef.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+typedefTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedef.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+valueValidation13	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation13.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation13IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation13	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation13.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation13IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation13	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation13.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation13IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation13	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation13.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation13IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation13	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation13.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation13IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation13	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation13.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation13IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation13	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation13.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation13IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation13	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation13.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation13IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation13	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation13.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation13IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation13	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation13.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation13IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+DynamicDispatchTestIsInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsInvalid.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsInvalid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsInvalid.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsInvalid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsInvalid.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsInvalid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsInvalid.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsInvalid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsInvalid.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsInvalid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsInvalid.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsInvalid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsInvalid.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsInvalid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsInvalid.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsInvalid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsInvalid.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsInvalid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsInvalid.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsInvalid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+valueValidation1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation1.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation1IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation1.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation1IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation1.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation1IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation1.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation1IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation1.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation1IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation1.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation1IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation1.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation1IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation1.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation1IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation1.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation1IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation1.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation1IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+typedefOfTypedefInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefInvalid.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefInvalid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	8,00	0,00	2,00	0,00	
+typedefOfTypedefInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefInvalid.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefInvalid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	8,00	0,00	2,00	0,00	
+typedefOfTypedefInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefInvalid.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefInvalid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	8,00	0,00	2,00	0,00	
+typedefOfTypedefInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefInvalid.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefInvalid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	8,00	0,00	2,00	0,00	
+typedefOfTypedefInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefInvalid.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefInvalid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	8,00	0,00	2,00	0,00	
+typedefOfTypedefInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefInvalid.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefInvalid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	8,00	0,00	2,00	0,00	
+typedefOfTypedefInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefInvalid.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefInvalid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	8,00	0,00	2,00	0,00	
+typedefOfTypedefInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefInvalid.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefInvalid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	8,00	0,00	2,00	0,00	
+typedefOfTypedefInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefInvalid.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefInvalid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	8,00	0,00	2,00	0,00	
+typedefOfTypedefInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefInvalid.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefInvalid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	8,00	0,00	2,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulConstants	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulConstants	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulConstants	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulConstants	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulConstants	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	16,00	0,00	0,00	0,00	0,00	16,00	3,00	0,00	0,00	16,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulConstants	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulConstants	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulConstants	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulConstants	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulConstants	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+valueValidation18	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation18.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation18IsValid	5,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation18	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation18.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation18IsValid	5,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation18	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation18.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation18IsValid	5,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation18	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation18.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation18IsValid	5,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation18	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation18.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation18IsValid	5,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation18	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation18.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation18IsValid	5,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation18	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation18.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation18IsValid	5,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation18	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation18.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation18IsValid	5,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation18	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation18.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation18IsValid	5,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation18	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation18.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation18IsValid	5,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation6	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation6.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation6IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+valueValidation6	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation6.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation6IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+valueValidation6	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation6.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation6IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+valueValidation6	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation6.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation6IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+valueValidation6	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation6.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation6IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+valueValidation6	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation6.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation6IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+valueValidation6	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation6.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation6IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+valueValidation6	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation6.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation6IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+valueValidation6	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation6.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation6IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+valueValidation6	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation6.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation6IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+typedefNestedInSequenceValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceValid.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	16,00	0,00	0,00	0,00	0,00	16,00	3,00	0,00	2,00	16,00	
+typedefNestedInSequenceValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceValid.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSequenceValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceValid.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSequenceValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceValid.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSequenceValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceValid.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSequenceValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceValid.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSequenceValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceValid.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSequenceValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceValid.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSequenceValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceValid.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	15,00	0,00	0,00	0,00	0,00	15,00	3,00	0,00	2,00	15,00	
+typedefNestedInSequenceValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceValid.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+booleanEvaluateValueAssignVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanEvaluateValueAssignVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanEvaluateValueAssignVariables	0,00	11,50	0,50	3,50	0,00	2,00	2,00	6,00	6,00	8,00	8,00	8,00	1,00	8,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	6,00	0,00	
+booleanEvaluateValueAssignVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanEvaluateValueAssignVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanEvaluateValueAssignVariables	0,00	11,50	0,50	3,50	0,00	2,00	2,00	6,00	6,00	8,00	8,00	8,00	1,00	8,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	6,00	0,00	
+booleanEvaluateValueAssignVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanEvaluateValueAssignVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanEvaluateValueAssignVariables	0,00	11,50	0,50	3,50	0,00	2,00	2,00	6,00	6,00	8,00	8,00	8,00	1,00	8,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	6,00	0,00	
+booleanEvaluateValueAssignVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanEvaluateValueAssignVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanEvaluateValueAssignVariables	0,00	11,50	0,50	3,50	0,00	2,00	2,00	6,00	6,00	8,00	8,00	8,00	1,00	8,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	6,00	0,00	
+booleanEvaluateValueAssignVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanEvaluateValueAssignVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanEvaluateValueAssignVariables	0,00	11,50	0,50	3,50	0,00	2,00	2,00	6,00	6,00	8,00	8,00	8,00	1,00	8,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	6,00	0,00	
+booleanEvaluateValueAssignVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanEvaluateValueAssignVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanEvaluateValueAssignVariables	0,00	11,50	0,50	3,50	0,00	2,00	2,00	6,00	6,00	8,00	8,00	8,00	1,00	8,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	6,00	0,00	
+booleanEvaluateValueAssignVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanEvaluateValueAssignVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanEvaluateValueAssignVariables	0,00	11,50	0,50	3,50	0,00	2,00	2,00	6,00	6,00	8,00	8,00	8,00	1,00	8,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	6,00	0,00	
+booleanEvaluateValueAssignVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanEvaluateValueAssignVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanEvaluateValueAssignVariables	0,00	11,50	0,50	3,50	0,00	2,00	2,00	6,00	6,00	8,00	8,00	8,00	1,00	8,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	6,00	0,00	
+booleanEvaluateValueAssignVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanEvaluateValueAssignVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanEvaluateValueAssignVariables	0,00	11,50	0,50	3,50	0,00	2,00	2,00	6,00	6,00	8,00	8,00	8,00	1,00	8,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	6,00	0,00	
+booleanEvaluateValueAssignVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanEvaluateValueAssignVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanEvaluateValueAssignVariables	0,00	11,50	0,50	3,50	0,00	2,00	2,00	6,00	6,00	8,00	8,00	8,00	1,00	8,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	6,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+typedefNestedInSetValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetValid.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetValid.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetValid.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetValid.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetValid.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetValid.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetValid.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetValid.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetValid.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetValid.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+realAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddConstants	0,00	1,50	0,75	1,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddConstants	0,00	1,50	0,75	1,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddConstants	0,00	1,50	0,75	1,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddConstants	0,00	1,50	0,75	1,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddConstants	0,00	1,50	0,75	1,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddConstants	0,00	1,50	0,75	1,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddConstants	0,00	1,50	0,75	1,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddConstants	0,00	1,50	0,75	1,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddConstants	0,00	1,50	0,75	1,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddConstants	0,00	1,50	0,75	1,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanANDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanANDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanANDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanANDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanANDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	16,00	
+booleanANDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanANDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanANDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanANDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanANDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation22	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation22.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation22IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation22	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation22.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation22IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation22	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation22.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation22IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation22	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation22.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation22IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation22	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation22.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation22IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation22	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation22.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation22IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation22	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation22.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation22IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation22	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation22.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation22IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation22	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation22.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation22IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation22	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation22.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation22IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+valueValidation11	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation11.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation11IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation11	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation11.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation11IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation11	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation11.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation11IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation11	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation11.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation11IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation11	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation11.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation11IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation11	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation11.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation11IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation11	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation11.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation11IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation11	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation11.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation11IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation11	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation11.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation11IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation11	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation11.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation11IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	16,00	0,00	0,00	0,00	0,00	16,00	10,00	0,00	0,00	16,00	
+realFLOORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORConstants	0,00	2,00	0,50	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realFLOORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORConstants	0,00	2,00	0,50	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realFLOORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORConstants	0,00	2,00	0,50	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realFLOORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORConstants	0,00	2,00	0,50	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realFLOORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORConstants	0,00	2,00	0,50	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realFLOORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORConstants	0,00	2,00	0,50	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realFLOORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORConstants	0,00	2,00	0,50	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realFLOORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORConstants	0,00	2,00	0,50	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realFLOORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORConstants	0,00	2,00	0,50	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realFLOORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORConstants	0,00	2,00	0,50	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realAddVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddVariables	0,00	4,75	0,55	2,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+realAddVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddVariables	0,00	4,75	0,55	2,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+realAddVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddVariables	0,00	4,75	0,55	2,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+realAddVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddVariables	0,00	4,75	0,55	2,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+realAddVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddVariables	0,00	4,75	0,55	2,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+realAddVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddVariables	0,00	4,75	0,55	2,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+realAddVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddVariables	0,00	4,75	0,55	2,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+realAddVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddVariables	0,00	4,75	0,55	2,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+realAddVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddVariables	0,00	4,75	0,55	2,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+realAddVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddVariables	0,00	4,75	0,55	2,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+valueValidation16	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation16.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation16IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation16	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation16.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation16IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation16	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation16.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation16IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation16	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation16.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation16IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation16	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation16.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation16IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation16	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation16.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation16IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation16	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation16.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation16IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation16	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation16.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation16IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation16	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation16.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation16IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation16	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation16.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation16IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+typedefNestedInCompoundInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundInvalid.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundInvalid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundInvalid.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundInvalid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundInvalid.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundInvalid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundInvalid.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundInvalid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundInvalid.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundInvalid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundInvalid.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundInvalid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundInvalid.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundInvalid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundInvalid.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundInvalid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundInvalid.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundInvalid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundInvalid.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundInvalid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+valueValidation4	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation4.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation4IsValid	0,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation4	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation4.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation4IsValid	0,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation4	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation4.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation4IsValid	0,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation4	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation4.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation4IsValid	0,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation4	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation4.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation4IsValid	0,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation4	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation4.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation4IsValid	0,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation4	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation4.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation4IsValid	0,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation4	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation4.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation4IsValid	0,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation4	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation4.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation4IsValid	0,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation4	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation4.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation4IsValid	0,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+typedefNestedInCompoundValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundValid.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundValid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundValid.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundValid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundValid.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundValid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundValid.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundValid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundValid.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundValid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundValid.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundValid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundValid.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundValid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundValid.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundValid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundValid.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundValid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundValid.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundValid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+AliasUsedInSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/AliasUsedInSet.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAliasesInContainerValid	0,00	2,00	0,00	0,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+AliasUsedInSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/AliasUsedInSet.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAliasesInContainerValid	0,00	2,00	0,00	0,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+AliasUsedInSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/AliasUsedInSet.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAliasesInContainerValid	0,00	2,00	0,00	0,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+AliasUsedInSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/AliasUsedInSet.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAliasesInContainerValid	0,00	2,00	0,00	0,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+AliasUsedInSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/AliasUsedInSet.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAliasesInContainerValid	0,00	2,00	0,00	0,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+AliasUsedInSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/AliasUsedInSet.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAliasesInContainerValid	0,00	2,00	0,00	0,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+AliasUsedInSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/AliasUsedInSet.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAliasesInContainerValid	0,00	2,00	0,00	0,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+AliasUsedInSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/AliasUsedInSet.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAliasesInContainerValid	0,00	2,00	0,00	0,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+AliasUsedInSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/AliasUsedInSet.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAliasesInContainerValid	0,00	2,00	0,00	0,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+AliasUsedInSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/AliasUsedInSet.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAliasesInContainerValid	0,00	2,00	0,00	0,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+booleanANDVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanANDVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanANDVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanANDVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanANDVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanANDVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanANDVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanANDVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanANDVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanANDVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+valueValidation9	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation9.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation9IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation9	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation9.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation9IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation9	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation9.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation9IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation9	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation9.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation9IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation9	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation9.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation9IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation9	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation9.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation9IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation9	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation9.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation9IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation9	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation9.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation9IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation9	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation9.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation9IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation9	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation9.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation9IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+booleanORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariablesFail.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariablesFails	0,00	9,75	0,61	6,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	3,00	0,00	
+integerDivVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariablesFail.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariablesFails	0,00	9,75	0,61	6,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	3,00	0,00	
+integerDivVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariablesFail.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariablesFails	0,00	9,75	0,61	6,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	3,00	0,00	
+integerDivVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariablesFail.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariablesFails	0,00	9,75	0,61	6,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	3,00	0,00	
+integerDivVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariablesFail.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariablesFails	0,00	9,75	0,61	6,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	3,00	0,00	
+integerDivVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariablesFail.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariablesFails	0,00	9,75	0,61	6,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	3,00	0,00	
+integerDivVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariablesFail.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariablesFails	0,00	9,75	0,61	6,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	3,00	0,00	
+integerDivVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariablesFail.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariablesFails	0,00	9,75	0,61	6,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	3,00	0,00	
+integerDivVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariablesFail.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariablesFails	0,00	9,75	0,61	6,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	3,00	0,00	
+integerDivVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariablesFail.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariablesFails	0,00	9,75	0,61	6,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	3,00	0,00	
+integerLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realFLOORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+realFLOORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+realFLOORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+realFLOORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+realFLOORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+realFLOORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+realFLOORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+realFLOORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+realFLOORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+realFLOORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+integerDivConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstantsFail.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstantsFail	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstantsFail.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstantsFail	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstantsFail.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstantsFail	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstantsFail.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstantsFail	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstantsFail.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstantsFail	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstantsFail.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstantsFail	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstantsFail.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstantsFail	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstantsFail.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstantsFail	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstantsFail.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstantsFail	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstantsFail.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstantsFail	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+valueValidation20	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation20.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation20IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation20	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation20.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation20IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation20	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation20.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation20IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation20	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation20.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation20IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation20	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation20.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation20IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation20	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation20.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation20IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation20	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation20.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation20IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation20	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation20.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation20IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation20	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation20.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation20IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation20	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation20.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation20IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+integerMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivVariables	0,00	6,00	0,50	3,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivVariables	0,00	6,00	0,50	3,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivVariables	0,00	6,00	0,50	3,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivVariables	0,00	6,00	0,50	3,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivVariables	0,00	6,00	0,50	3,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivVariables	0,00	6,00	0,50	3,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivVariables	0,00	6,00	0,50	3,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivVariables	0,00	6,00	0,50	3,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivVariables	0,00	6,00	0,50	3,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivVariables	0,00	6,00	0,50	3,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+realEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+realEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+realEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+realEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+realEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+realEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+realEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+realEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+realEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+realEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+booleanNOTConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+booleanNOTConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+booleanNOTConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+booleanNOTConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+booleanNOTConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+booleanNOTConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+booleanNOTConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+booleanNOTConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+booleanNOTConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+booleanNOTConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+valueValidation14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation14.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation14IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation14.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation14IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation14.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation14IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation14.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation14IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation14.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation14IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation14.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation14IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation14.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation14IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation14.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation14IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation14.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation14IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation14.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation14IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation2.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation2IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation2.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation2IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation2.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation2IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation2.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation2IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation2.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation2IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation2.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation2IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation2.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation2IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation2.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation2IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation2.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation2IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation2.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation2IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+testBasisDatatype	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/string.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testStringOperationsIsValid	0,00	14,25	0,75	5,25	0,00	2,00	2,00	7,00	7,00	9,00	9,00	9,00	1,00	9,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	6,00	0,00	
+testBasisDatatype	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/string.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testStringOperationsIsValid	0,00	14,25	0,75	5,25	0,00	2,00	2,00	7,00	7,00	9,00	9,00	9,00	1,00	9,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	6,00	0,00	
+testBasisDatatype	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/string.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testStringOperationsIsValid	0,00	14,25	0,75	5,25	0,00	2,00	2,00	7,00	7,00	9,00	9,00	9,00	1,00	9,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	6,00	0,00	
+testBasisDatatype	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/string.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testStringOperationsIsValid	0,00	14,25	0,75	5,25	0,00	2,00	2,00	7,00	7,00	9,00	9,00	9,00	1,00	9,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	6,00	0,00	
+testBasisDatatype	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/string.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testStringOperationsIsValid	0,00	14,25	0,75	5,25	0,00	2,00	2,00	7,00	7,00	9,00	9,00	9,00	1,00	9,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	6,00	0,00	
+testBasisDatatype	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/string.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testStringOperationsIsValid	0,00	14,25	0,75	5,25	0,00	2,00	2,00	7,00	7,00	9,00	9,00	9,00	1,00	9,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	6,00	0,00	
+testBasisDatatype	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/string.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testStringOperationsIsValid	0,00	14,25	0,75	5,25	0,00	2,00	2,00	7,00	7,00	9,00	9,00	9,00	1,00	9,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	6,00	0,00	
+testBasisDatatype	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/string.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testStringOperationsIsValid	0,00	14,25	0,75	5,25	0,00	2,00	2,00	7,00	7,00	9,00	9,00	9,00	1,00	9,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	6,00	0,00	
+testBasisDatatype	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/string.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testStringOperationsIsValid	0,00	14,25	0,75	5,25	0,00	2,00	2,00	7,00	7,00	9,00	9,00	9,00	1,00	9,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	6,00	0,00	
+testBasisDatatype	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/string.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testStringOperationsIsValid	0,00	14,25	0,75	5,25	0,00	2,00	2,00	7,00	7,00	9,00	9,00	9,00	1,00	9,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	6,00	0,00	
+typedefNestedInSequenceInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceInvalid.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSequenceInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceInvalid.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSequenceInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceInvalid.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSequenceInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceInvalid.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSequenceInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceInvalid.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSequenceInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceInvalid.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSequenceInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceInvalid.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSequenceInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceInvalid.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSequenceInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceInvalid.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSequenceInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceInvalid.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation19	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation19.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation19IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation19	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation19.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation19IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation19	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation19.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation19IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation19	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation19.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation19IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation19	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation19.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation19IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation19	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation19.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation19IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation19	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation19.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation19IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation19	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation19.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation19IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation19	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation19.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation19IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation19	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation19.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation19IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation7	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation7.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation7IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation7	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation7.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation7IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation7	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation7.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation7IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation7	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation7.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation7IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation7	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation7.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation7IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation7	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation7.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation7IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation7	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation7.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation7IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation7	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation7.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation7IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation7	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation7.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation7IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation7	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation7.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation7IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+typedefCompoundNestedInSequenceValid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid1.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid1.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid1.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid1.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid1.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid1.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid1.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid1.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid1.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid1.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid2.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid2.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid2.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid2.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid2.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid2.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid2.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid2.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid2.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid2.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+integerMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+realEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+realEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+realEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+realEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+realEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+realEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+realEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+realEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+realEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+booleanNOTVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTVariables	0,00	4,00	0,50	2,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+booleanNOTVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTVariables	0,00	4,00	0,50	2,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+booleanNOTVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTVariables	0,00	4,00	0,50	2,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+booleanNOTVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTVariables	0,00	4,00	0,50	2,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+booleanNOTVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTVariables	0,00	4,00	0,50	2,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+booleanNOTVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTVariables	0,00	4,00	0,50	2,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+booleanNOTVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTVariables	0,00	4,00	0,50	2,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+booleanNOTVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTVariables	0,00	4,00	0,50	2,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+booleanNOTVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTVariables	0,00	4,00	0,50	2,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+booleanNOTVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTVariables	0,00	4,00	0,50	2,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+sequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/sequence.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testSequenceOperationsIsValid	0,00	28,25	0,52	16,25	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	2,00	12,00	31,00	0,00	0,00	0,00	0,00	0,00	0,00	31,00	0,00	6,00	0,00	
+sequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/sequence.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testSequenceOperationsIsValid	0,00	28,25	0,52	16,25	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	2,00	12,00	31,00	0,00	0,00	0,00	0,00	0,00	0,00	31,00	0,00	6,00	0,00	
+sequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/sequence.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testSequenceOperationsIsValid	0,00	28,25	0,52	16,25	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	2,00	12,00	31,00	0,00	0,00	0,00	0,00	0,00	0,00	31,00	0,00	6,00	0,00	
+sequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/sequence.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testSequenceOperationsIsValid	0,00	28,25	0,52	16,25	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	2,00	12,00	31,00	0,00	0,00	0,00	0,00	0,00	0,00	31,00	0,00	6,00	0,00	
+sequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/sequence.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testSequenceOperationsIsValid	0,00	28,25	0,52	16,25	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	2,00	12,00	31,00	0,00	0,00	0,00	0,00	0,00	0,00	31,00	0,00	6,00	0,00	
+sequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/sequence.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testSequenceOperationsIsValid	0,00	28,25	0,52	16,25	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	2,00	12,00	31,00	0,00	0,00	0,00	0,00	0,00	0,00	31,00	0,00	6,00	0,00	
+sequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/sequence.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testSequenceOperationsIsValid	0,00	28,25	0,52	16,25	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	2,00	12,00	31,00	0,00	0,00	0,00	0,00	0,00	0,00	31,00	0,00	6,00	0,00	
+sequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/sequence.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testSequenceOperationsIsValid	0,00	28,25	0,52	16,25	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	2,00	12,00	31,00	0,00	0,00	0,00	0,00	0,00	0,00	31,00	0,00	6,00	0,00	
+sequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/sequence.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testSequenceOperationsIsValid	0,00	28,25	0,52	16,25	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	2,00	12,00	31,00	0,00	0,00	0,00	0,00	0,00	0,00	31,00	0,00	6,00	0,00	
+sequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/sequence.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testSequenceOperationsIsValid	0,00	28,25	0,52	16,25	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	2,00	12,00	31,00	0,00	0,00	0,00	0,00	0,00	0,00	31,00	0,00	6,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	16,00	13,00	16,00	4,00	16,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMAXVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMAXVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMAXVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMAXVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMAXVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMAXVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMAXVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMAXVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMAXVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMAXVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+typedefOfTypedefValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefValid.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+typedefOfTypedefValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefValid.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+typedefOfTypedefValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefValid.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+typedefOfTypedefValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefValid.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+typedefOfTypedefValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefValid.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+typedefOfTypedefValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefValid.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+typedefOfTypedefValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefValid.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+typedefOfTypedefValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefValid.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	15,00	0,00	0,00	0,00	0,00	15,00	8,00	0,00	2,00	15,00	
+typedefOfTypedefValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefValid.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+typedefOfTypedefValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefValid.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+valueValidation12	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation12.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation12IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation12	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation12.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation12IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation12	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation12.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation12IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation12	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation12.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation12IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation12	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation12.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation12IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation12	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation12.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation12IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation12	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation12.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation12IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation12	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation12.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation12IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation12	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation12.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation12IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation12	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation12.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation12IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+valueValidation17	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation17.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation17IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation17	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation17.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation17IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation17	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation17.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation17IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation17	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation17.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation17IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation17	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation17.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation17IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation17	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation17.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation17IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation17	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation17.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation17IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation17	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation17.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation17IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation17	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation17.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation17IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation17	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation17.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation17IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation5	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation5.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation5IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation5	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation5.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation5IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation5	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation5.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation5IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation5	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation5.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation5IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation5	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation5.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation5IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation5	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation5.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation5IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation5	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation5.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation5IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation5	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation5.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation5IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation5	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation5.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation5IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation5	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation5.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation5IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMulConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstantsFail.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstantsFail	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	3,00	0,00	3,00	0,00	3,00	0,00	0,00	0,00	
+integerMulConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstantsFail.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstantsFail	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	3,00	0,00	3,00	0,00	3,00	0,00	0,00	0,00	
+integerMulConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstantsFail.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstantsFail	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	3,00	0,00	3,00	0,00	3,00	0,00	0,00	0,00	
+integerMulConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstantsFail.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstantsFail	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	3,00	0,00	3,00	0,00	3,00	0,00	0,00	0,00	
+integerMulConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstantsFail.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstantsFail	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	3,00	0,00	3,00	0,00	3,00	0,00	0,00	0,00	
+integerMulConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstantsFail.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstantsFail	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	3,00	0,00	3,00	0,00	3,00	0,00	0,00	0,00	
+integerMulConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstantsFail.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstantsFail	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	3,00	0,00	3,00	0,00	3,00	0,00	0,00	0,00	
+integerMulConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstantsFail.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstantsFail	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	3,00	0,00	3,00	0,00	3,00	0,00	0,00	0,00	
+integerMulConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstantsFail.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstantsFail	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	3,00	0,00	3,00	0,00	3,00	0,00	0,00	0,00	
+integerMulConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstantsFail.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstantsFail	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	3,00	0,00	3,00	0,00	3,00	0,00	0,00	0,00	
+booleanImpliesVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanImpliesVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanImpliesVariables	0,00	11,00	0,88	7,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanImpliesVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanImpliesVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanImpliesVariables	0,00	11,00	0,88	7,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanImpliesVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanImpliesVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanImpliesVariables	0,00	11,00	0,88	7,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanImpliesVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanImpliesVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanImpliesVariables	0,00	11,00	0,88	7,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanImpliesVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanImpliesVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanImpliesVariables	0,00	11,00	0,88	7,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanImpliesVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanImpliesVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanImpliesVariables	0,00	11,00	0,88	7,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanImpliesVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanImpliesVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanImpliesVariables	0,00	11,00	0,88	7,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanImpliesVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanImpliesVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanImpliesVariables	0,00	11,00	0,88	7,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanImpliesVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanImpliesVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanImpliesVariables	0,00	11,00	0,88	7,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanImpliesVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanImpliesVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanImpliesVariables	0,00	11,00	0,88	7,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMINVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMINVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMINVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMINVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMINVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMINVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMINVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMINVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMINVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMINVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+integerEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+integerEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+integerEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+integerEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+integerEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+integerEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+integerEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+integerEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+integerEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+integerDIVopConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDIVopConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDIVopConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDIVopConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDIVopConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDIVopConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDIVopConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDIVopConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDIVopConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDIVopConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddConstants	0,00	6,00	0,75	6,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddConstants	0,00	6,00	0,75	6,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddConstants	0,00	6,00	0,75	6,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddConstants	0,00	6,00	0,75	6,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddConstants	0,00	6,00	0,75	6,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddConstants	0,00	6,00	0,75	6,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddConstants	0,00	6,00	0,75	6,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddConstants	0,00	6,00	0,75	6,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddConstants	0,00	6,00	0,75	6,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddConstants	0,00	6,00	0,75	6,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+integerABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+integerABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+integerABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+integerABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+integerABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+integerABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+integerABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+integerABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+integerABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+integerABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+integerEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+booleanIFFVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanIFFVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanIFFVariables	0,00	10,00	0,75	6,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanIFFVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanIFFVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanIFFVariables	0,00	10,00	0,75	6,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanIFFVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanIFFVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanIFFVariables	0,00	10,00	0,75	6,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanIFFVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanIFFVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanIFFVariables	0,00	10,00	0,75	6,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanIFFVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanIFFVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanIFFVariables	0,00	10,00	0,75	6,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanIFFVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanIFFVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanIFFVariables	0,00	10,00	0,75	6,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanIFFVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanIFFVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanIFFVariables	0,00	10,00	0,75	6,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanIFFVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanIFFVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanIFFVariables	0,00	10,00	0,75	6,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanIFFVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanIFFVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanIFFVariables	0,00	10,00	0,75	6,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanIFFVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanIFFVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanIFFVariables	0,00	10,00	0,75	6,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+valueValidation21	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation21.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation21IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation21	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation21.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation21IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation21	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation21.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation21IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation21	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation21.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation21IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation21	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation21.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation21IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation21	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation21.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation21IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation21	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation21.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation21IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation21	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation21.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation21IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation21	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation21.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation21IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation21	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation21.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation21IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerDIVopVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopVariables	0,00	14,75	0,67	8,75	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerDIVopVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopVariables	0,00	14,75	0,67	8,75	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerDIVopVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopVariables	0,00	14,75	0,67	8,75	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerDIVopVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopVariables	0,00	14,75	0,67	8,75	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerDIVopVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopVariables	0,00	14,75	0,67	8,75	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerDIVopVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopVariables	0,00	14,75	0,67	8,75	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerDIVopVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopVariables	0,00	14,75	0,67	8,75	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerDIVopVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopVariables	0,00	14,75	0,67	8,75	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerDIVopVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopVariables	0,00	14,75	0,67	8,75	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerDIVopVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopVariables	0,00	14,75	0,67	8,75	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+typedefNestedInSetInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetInvalid.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetInvalid.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetInvalid.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetInvalid.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetInvalid.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetInvalid.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetInvalid.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetInvalid.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetInvalid.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetInvalid.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+valueValidation10	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation10.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation10IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation10	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation10.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation10IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation10	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation10.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation10IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation10	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation10.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation10IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation10	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation10.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation10IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation10	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation10.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation10IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation10	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation10.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation10IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation10	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation10.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation10IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation10	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation10.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation10IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation10	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation10.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation10IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+booleanXORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanXORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanXORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanXORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanXORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanXORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanXORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanXORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanXORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanXORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+integerABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+integerABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+integerABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+integerABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+integerABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+integerABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+integerABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+integerABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+integerABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+realMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/annotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAnnotationsToDifferenCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/annotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAnnotationsToDifferenCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/annotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAnnotationsToDifferenCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/annotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAnnotationsToDifferenCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/annotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAnnotationsToDifferenCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/annotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAnnotationsToDifferenCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/annotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAnnotationsToDifferenCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/annotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAnnotationsToDifferenCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/annotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAnnotationsToDifferenCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/annotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAnnotationsToDifferenCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+valueValidation15	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation15.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation15IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation15	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation15.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation15IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation15	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation15.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation15IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation15	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation15.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation15IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation15	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation15.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation15IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation15	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation15.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation15IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation15	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation15.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation15IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation15	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation15.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation15IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation15	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation15.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation15IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation15	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation15.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation15IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation3.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation3IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation3.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation3IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation3.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation3IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation3.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation3IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	16,00	
+valueValidation3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation3.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation3IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation3.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation3IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation3.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation3IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation3.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation3IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation3.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation3IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation3.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation3IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+realROUNDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDConstants	0,00	3,00	0,50	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+realROUNDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDConstants	0,00	3,00	0,50	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+realROUNDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDConstants	0,00	3,00	0,50	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+realROUNDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDConstants	0,00	3,00	0,50	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+realROUNDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDConstants	0,00	3,00	0,50	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+realROUNDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDConstants	0,00	3,00	0,50	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+realROUNDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDConstants	0,00	3,00	0,50	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+realROUNDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDConstants	0,00	3,00	0,50	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+realROUNDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDConstants	0,00	3,00	0,50	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+realROUNDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDConstants	0,00	3,00	0,50	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+typedefCompoundNestedInSequenceInvalid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid1.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceInvalid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid1.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceInvalid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid1.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceInvalid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid1.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceInvalid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid1.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceInvalid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid1.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	16,00	3,00	16,00	2,00	16,00	
+typedefCompoundNestedInSequenceInvalid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid1.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceInvalid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid1.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceInvalid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid1.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceInvalid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid1.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceInvalid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid2.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceInvalid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid2.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceInvalid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid2.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceInvalid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid2.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceInvalid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid2.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	16,00	0,00	2,00	0,00	2,00	16,00	5,00	0,00	2,00	16,00	
+typedefCompoundNestedInSequenceInvalid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid2.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceInvalid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid2.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceInvalid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid2.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceInvalid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid2.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceInvalid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid2.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	2,00	0,00	
+integerEqVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariablesFail.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariablesFail	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	9,00	0,00	9,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariablesFail.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariablesFail	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	9,00	0,00	9,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariablesFail.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariablesFail	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	9,00	0,00	9,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariablesFail.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariablesFail	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	9,00	0,00	9,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariablesFail.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariablesFail	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	9,00	0,00	9,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariablesFail.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariablesFail	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	9,00	0,00	9,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariablesFail.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariablesFail	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	9,00	0,00	9,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariablesFail.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariablesFail	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	9,00	0,00	9,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariablesFail.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariablesFail	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	9,00	0,00	9,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariablesFail.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariablesFail	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	9,00	0,00	9,00	0,00	12,00	0,00	3,00	0,00	
+valueValidation8	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation8.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation8IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation8	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation8.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation8IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation8	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation8.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation8IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation8	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation8.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation8IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation8	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation8.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation8IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation8	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation8.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation8IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation8	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation8.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation8IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation8	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation8.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation8IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation8	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation8.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation8IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation8	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation8.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation8IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Invalid.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintInvalid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Invalid.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintInvalid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Invalid.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintInvalid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Invalid.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintInvalid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Invalid.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintInvalid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Invalid.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintInvalid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Invalid.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintInvalid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Invalid.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintInvalid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Invalid.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintInvalid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Invalid.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintInvalid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Valid.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintValid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Valid.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintValid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Valid.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintValid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Valid.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintValid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Valid.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintValid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Valid.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintValid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Valid.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintValid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Valid.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintValid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Valid.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintValid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Valid.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintValid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+ImportCycleTest_CyclingDeclarations_A		REASONING	1	net.ssehub.easy.reasoning.core.frontend.StructureTests.testCyclingDeclarations	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	16,00	0,00	0,00	0,00	0,00	16,00	7,00	0,00	5,00	16,00	
+ImportCycleTest_CyclingDeclarations_A		REASONING	2	net.ssehub.easy.reasoning.core.frontend.StructureTests.testCyclingDeclarations	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	5,00	0,00	
+ImportCycleTest_CyclingDeclarations_A		REASONING	3	net.ssehub.easy.reasoning.core.frontend.StructureTests.testCyclingDeclarations	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	5,00	0,00	
+ImportCycleTest_CyclingDeclarations_A		REASONING	4	net.ssehub.easy.reasoning.core.frontend.StructureTests.testCyclingDeclarations	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	5,00	0,00	
+ImportCycleTest_CyclingDeclarations_A		REASONING	5	net.ssehub.easy.reasoning.core.frontend.StructureTests.testCyclingDeclarations	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	5,00	0,00	
+ImportCycleTest_CyclingDeclarations_A		REASONING	6	net.ssehub.easy.reasoning.core.frontend.StructureTests.testCyclingDeclarations	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	5,00	0,00	
+ImportCycleTest_CyclingDeclarations_A		REASONING	7	net.ssehub.easy.reasoning.core.frontend.StructureTests.testCyclingDeclarations	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	5,00	0,00	
+ImportCycleTest_CyclingDeclarations_A		REASONING	8	net.ssehub.easy.reasoning.core.frontend.StructureTests.testCyclingDeclarations	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	5,00	0,00	
+ImportCycleTest_CyclingDeclarations_A		REASONING	9	net.ssehub.easy.reasoning.core.frontend.StructureTests.testCyclingDeclarations	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	5,00	0,00	
+ImportCycleTest_CyclingDeclarations_A		REASONING	10	net.ssehub.easy.reasoning.core.frontend.StructureTests.testCyclingDeclarations	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	5,00	0,00	
+NestedCycleTest_MainProject		REASONING	1	net.ssehub.easy.reasoning.core.frontend.StructureTests.testNestedCycle	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	7,00	0,00	
+NestedCycleTest_MainProject		REASONING	2	net.ssehub.easy.reasoning.core.frontend.StructureTests.testNestedCycle	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	7,00	0,00	
+NestedCycleTest_MainProject		REASONING	3	net.ssehub.easy.reasoning.core.frontend.StructureTests.testNestedCycle	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	7,00	0,00	
+NestedCycleTest_MainProject		REASONING	4	net.ssehub.easy.reasoning.core.frontend.StructureTests.testNestedCycle	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	7,00	0,00	
+NestedCycleTest_MainProject		REASONING	5	net.ssehub.easy.reasoning.core.frontend.StructureTests.testNestedCycle	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	7,00	0,00	
+NestedCycleTest_MainProject		REASONING	6	net.ssehub.easy.reasoning.core.frontend.StructureTests.testNestedCycle	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	7,00	0,00	
+NestedCycleTest_MainProject		REASONING	7	net.ssehub.easy.reasoning.core.frontend.StructureTests.testNestedCycle	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	7,00	0,00	
+NestedCycleTest_MainProject		REASONING	8	net.ssehub.easy.reasoning.core.frontend.StructureTests.testNestedCycle	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	7,00	0,00	
+NestedCycleTest_MainProject		REASONING	9	net.ssehub.easy.reasoning.core.frontend.StructureTests.testNestedCycle	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	7,00	0,00	
+NestedCycleTest_MainProject		REASONING	10	net.ssehub.easy.reasoning.core.frontend.StructureTests.testNestedCycle	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	7,00	0,00	
+booleanDefaultFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalse.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalse	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalse.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalse	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalse.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalse	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalse.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalse	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalse.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalse	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalse.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalse	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalse.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalse	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalse.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalse	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalse.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalse	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalse.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalse	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+falseTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/falseTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.falseTest	0,00	0,25	0,25	0,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+falseTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/falseTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.falseTest	0,00	0,25	0,25	0,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+falseTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/falseTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.falseTest	0,00	0,25	0,25	0,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+falseTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/falseTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.falseTest	0,00	0,25	0,25	0,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+falseTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/falseTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.falseTest	0,00	0,25	0,25	0,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+falseTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/falseTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.falseTest	0,00	0,25	0,25	0,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+falseTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/falseTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.falseTest	0,00	0,25	0,25	0,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+falseTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/falseTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.falseTest	0,00	0,25	0,25	0,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+falseTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/falseTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.falseTest	0,00	0,25	0,25	0,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+falseTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/falseTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.falseTest	0,00	0,25	0,25	0,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithDefaultValue.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithDefaultValue.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithDefaultValue.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithDefaultValue.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithDefaultValue.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithDefaultValue.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithDefaultValue.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithDefaultValue.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithDefaultValue.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithDefaultValue.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+constraintInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundDefault.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundDefaultTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundDefault.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundDefaultTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundDefault.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundDefaultTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundDefault.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundDefaultTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundDefault.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundDefaultTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundDefault.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundDefaultTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundDefault.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundDefaultTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundDefault.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundDefaultTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundDefault.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundDefaultTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundDefault.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundDefaultTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+booleanDefaultFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalseInCompound.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalseInCompound	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalseInCompound.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalseInCompound	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalseInCompound.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalseInCompound	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalseInCompound.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalseInCompound	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalseInCompound.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalseInCompound	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalseInCompound.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalseInCompound	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalseInCompound.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalseInCompound	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalseInCompound.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalseInCompound	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalseInCompound.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalseInCompound	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalseInCompound.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalseInCompound	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithNoDefaultValue.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithNoDefaultValue.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithNoDefaultValue.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithNoDefaultValue.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithNoDefaultValue.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	2,00	0,00	0,00	1,00	0,00	1,00	16,00	2,00	0,00	0,00	16,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithNoDefaultValue.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithNoDefaultValue.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithNoDefaultValue.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithNoDefaultValue.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithNoDefaultValue.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithEmptyDefaultValue.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithEmptyDefaultValue	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithEmptyDefaultValue.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithEmptyDefaultValue	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithEmptyDefaultValue.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithEmptyDefaultValue	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithEmptyDefaultValue.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithEmptyDefaultValue	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithEmptyDefaultValue.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithEmptyDefaultValue	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithEmptyDefaultValue.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithEmptyDefaultValue	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithEmptyDefaultValue.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithEmptyDefaultValue	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithEmptyDefaultValue.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithEmptyDefaultValue	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithEmptyDefaultValue.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithEmptyDefaultValue	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithEmptyDefaultValue.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithEmptyDefaultValue	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithNoDefaultValue.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithNoDefaultValue.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithNoDefaultValue.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithNoDefaultValue.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithNoDefaultValue.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithNoDefaultValue.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithNoDefaultValue.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithNoDefaultValue.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithNoDefaultValue.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithNoDefaultValue.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithDefaultValue.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithDefaultValue.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithDefaultValue.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithDefaultValue.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithDefaultValue.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithDefaultValue.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithDefaultValue.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithDefaultValue.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithDefaultValue.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithDefaultValue.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+QM_constraintOrder	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/QM_constraintOrder.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.compoundConstraintVarOrder	0,00	101,75	3,51	59,75	0,00	4,00	4,00	26,00	26,00	10,00	30,00	30,00	1,40	42,00	18,00	0,00	0,00	0,00	0,00	0,00	0,00	18,00	0,00	6,00	0,00	
+QM_constraintOrder	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/QM_constraintOrder.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.compoundConstraintVarOrder	0,00	101,75	3,51	59,75	0,00	4,00	4,00	26,00	26,00	10,00	30,00	30,00	1,40	42,00	18,00	15,00	0,00	0,00	0,00	0,00	15,00	18,00	0,00	6,00	15,00	
+QM_constraintOrder	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/QM_constraintOrder.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.compoundConstraintVarOrder	0,00	101,75	3,51	59,75	0,00	4,00	4,00	26,00	26,00	10,00	30,00	30,00	1,40	42,00	18,00	0,00	0,00	0,00	0,00	0,00	0,00	18,00	0,00	6,00	0,00	
+QM_constraintOrder	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/QM_constraintOrder.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.compoundConstraintVarOrder	0,00	101,75	3,51	59,75	0,00	4,00	4,00	26,00	26,00	10,00	30,00	30,00	1,40	42,00	18,00	0,00	0,00	0,00	0,00	0,00	0,00	18,00	0,00	6,00	0,00	
+QM_constraintOrder	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/QM_constraintOrder.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.compoundConstraintVarOrder	0,00	101,75	3,51	59,75	0,00	4,00	4,00	26,00	26,00	10,00	30,00	30,00	1,40	42,00	18,00	0,00	0,00	0,00	0,00	0,00	0,00	18,00	0,00	6,00	0,00	
+QM_constraintOrder	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/QM_constraintOrder.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.compoundConstraintVarOrder	0,00	101,75	3,51	59,75	0,00	4,00	4,00	26,00	26,00	10,00	30,00	30,00	1,40	42,00	18,00	0,00	0,00	0,00	0,00	0,00	0,00	18,00	0,00	6,00	0,00	
+QM_constraintOrder	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/QM_constraintOrder.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.compoundConstraintVarOrder	0,00	101,75	3,51	59,75	0,00	4,00	4,00	26,00	26,00	10,00	30,00	30,00	1,40	42,00	18,00	0,00	0,00	0,00	0,00	0,00	16,00	18,00	16,00	6,00	16,00	
+QM_constraintOrder	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/QM_constraintOrder.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.compoundConstraintVarOrder	0,00	101,75	3,51	59,75	0,00	4,00	4,00	26,00	26,00	10,00	30,00	30,00	1,40	42,00	18,00	0,00	0,00	0,00	0,00	0,00	0,00	18,00	0,00	6,00	0,00	
+QM_constraintOrder	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/QM_constraintOrder.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.compoundConstraintVarOrder	0,00	101,75	3,51	59,75	0,00	4,00	4,00	26,00	26,00	10,00	30,00	30,00	1,40	42,00	18,00	0,00	0,00	0,00	0,00	0,00	0,00	18,00	0,00	6,00	0,00	
+QM_constraintOrder	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/QM_constraintOrder.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.compoundConstraintVarOrder	0,00	101,75	3,51	59,75	0,00	4,00	4,00	26,00	26,00	10,00	30,00	30,00	1,40	42,00	18,00	0,00	0,00	0,00	0,00	0,00	0,00	18,00	0,00	6,00	0,00	
+refinedConstraints		REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.refinedConstraintsTest	0,00	5,25	0,42	1,25	1,00	1,00	1,00	2,00	2,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+refinedConstraints		REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.refinedConstraintsTest	0,00	5,25	0,42	1,25	1,00	1,00	1,00	2,00	2,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+refinedConstraints		REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.refinedConstraintsTest	0,00	5,25	0,42	1,25	1,00	1,00	1,00	2,00	2,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+refinedConstraints		REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.refinedConstraintsTest	0,00	5,25	0,42	1,25	1,00	1,00	1,00	2,00	2,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+refinedConstraints		REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.refinedConstraintsTest	0,00	5,25	0,42	1,25	1,00	1,00	1,00	2,00	2,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+refinedConstraints		REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.refinedConstraintsTest	0,00	5,25	0,42	1,25	1,00	1,00	1,00	2,00	2,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+refinedConstraints		REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.refinedConstraintsTest	0,00	5,25	0,42	1,25	1,00	1,00	1,00	2,00	2,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+refinedConstraints		REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.refinedConstraintsTest	0,00	5,25	0,42	1,25	1,00	1,00	1,00	2,00	2,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+refinedConstraints		REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.refinedConstraintsTest	0,00	5,25	0,42	1,25	1,00	1,00	1,00	2,00	2,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+refinedConstraints		REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.refinedConstraintsTest	0,00	5,25	0,42	1,25	1,00	1,00	1,00	2,00	2,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+constraintDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintDefault.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintDefaultTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintDefault.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintDefaultTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintDefault.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintDefaultTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintDefault.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintDefaultTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintDefault.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintDefaultTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintDefault.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintDefaultTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintDefault.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintDefaultTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintDefault.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintDefaultTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintDefault.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintDefaultTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintDefault.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintDefaultTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintsDerived	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsDerived.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsDerivedTest	0,00	7,00	0,25	1,00	0,00	2,00	2,00	2,00	2,00	3,00	4,00	4,00	1,50	6,00	8,00	0,00	0,00	4,00	0,00	4,00	0,00	8,00	0,00	0,00	0,00	
+constraintsDerived	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsDerived.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsDerivedTest	0,00	7,00	0,25	1,00	0,00	2,00	2,00	2,00	2,00	3,00	4,00	4,00	1,50	6,00	8,00	0,00	0,00	4,00	0,00	4,00	0,00	8,00	0,00	0,00	0,00	
+constraintsDerived	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsDerived.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsDerivedTest	0,00	7,00	0,25	1,00	0,00	2,00	2,00	2,00	2,00	3,00	4,00	4,00	1,50	6,00	8,00	0,00	0,00	4,00	0,00	4,00	0,00	8,00	0,00	0,00	0,00	
+constraintsDerived	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsDerived.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsDerivedTest	0,00	7,00	0,25	1,00	0,00	2,00	2,00	2,00	2,00	3,00	4,00	4,00	1,50	6,00	8,00	0,00	0,00	4,00	0,00	4,00	0,00	8,00	0,00	0,00	0,00	
+constraintsDerived	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsDerived.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsDerivedTest	0,00	7,00	0,25	1,00	0,00	2,00	2,00	2,00	2,00	3,00	4,00	4,00	1,50	6,00	8,00	0,00	0,00	4,00	0,00	4,00	0,00	8,00	0,00	0,00	0,00	
+constraintsDerived	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsDerived.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsDerivedTest	0,00	7,00	0,25	1,00	0,00	2,00	2,00	2,00	2,00	3,00	4,00	4,00	1,50	6,00	8,00	0,00	0,00	4,00	0,00	4,00	0,00	8,00	0,00	0,00	0,00	
+constraintsDerived	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsDerived.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsDerivedTest	0,00	7,00	0,25	1,00	0,00	2,00	2,00	2,00	2,00	3,00	4,00	4,00	1,50	6,00	8,00	0,00	0,00	4,00	0,00	4,00	0,00	8,00	0,00	0,00	0,00	
+constraintsDerived	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsDerived.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsDerivedTest	0,00	7,00	0,25	1,00	0,00	2,00	2,00	2,00	2,00	3,00	4,00	4,00	1,50	6,00	8,00	0,00	0,00	4,00	0,00	4,00	0,00	8,00	0,00	0,00	0,00	
+constraintsDerived	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsDerived.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsDerivedTest	0,00	7,00	0,25	1,00	0,00	2,00	2,00	2,00	2,00	3,00	4,00	4,00	1,50	6,00	8,00	0,00	0,00	4,00	0,00	4,00	0,00	8,00	0,00	0,00	0,00	
+constraintsDerived	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsDerived.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsDerivedTest	0,00	7,00	0,25	1,00	0,00	2,00	2,00	2,00	2,00	3,00	4,00	4,00	1,50	6,00	8,00	0,00	0,00	4,00	0,00	4,00	0,00	8,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithDefaultValue.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithDefaultValue.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithDefaultValue.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithDefaultValue.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithDefaultValue.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithDefaultValue.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithDefaultValue.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithDefaultValue.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithDefaultValue.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithDefaultValue.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithNoDefaultValue.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithNoDefaultValue.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithNoDefaultValue.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithNoDefaultValue.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithNoDefaultValue.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithNoDefaultValue.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithNoDefaultValue.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithNoDefaultValue.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithNoDefaultValue.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithNoDefaultValue.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+booleanAssignedFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalse.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalse	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalse.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalse	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalse.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalse	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalse.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalse	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalse.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalse	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalse.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalse	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalse.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalse	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalse.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalse	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalse.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalse	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalse.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalse	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfConstraintsWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithEmptyDefaultValue.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithEmptyDefaultValue	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithEmptyDefaultValue.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithEmptyDefaultValue	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithEmptyDefaultValue.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithEmptyDefaultValue	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithEmptyDefaultValue.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithEmptyDefaultValue	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithEmptyDefaultValue.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithEmptyDefaultValue	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithEmptyDefaultValue.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithEmptyDefaultValue	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithEmptyDefaultValue.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithEmptyDefaultValue	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithEmptyDefaultValue.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithEmptyDefaultValue	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithEmptyDefaultValue.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithEmptyDefaultValue	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithEmptyDefaultValue.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithEmptyDefaultValue	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+booleanAssignedFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalseInCompound.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalseInCompound	0,00	4,50	1,50	1,50	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalseInCompound.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalseInCompound	0,00	4,50	1,50	1,50	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalseInCompound.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalseInCompound	0,00	4,50	1,50	1,50	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalseInCompound.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalseInCompound	0,00	4,50	1,50	1,50	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalseInCompound.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalseInCompound	0,00	4,50	1,50	1,50	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalseInCompound.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalseInCompound	0,00	4,50	1,50	1,50	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalseInCompound.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalseInCompound	0,00	4,50	1,50	1,50	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalseInCompound.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalseInCompound	0,00	4,50	1,50	1,50	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalseInCompound.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalseInCompound	0,00	4,50	1,50	1,50	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalseInCompound.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalseInCompound	0,00	4,50	1,50	1,50	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithNoDefaultValue.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithNoDefaultValue.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithNoDefaultValue.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithNoDefaultValue.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithNoDefaultValue.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithNoDefaultValue.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithNoDefaultValue.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithNoDefaultValue.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithNoDefaultValue.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithNoDefaultValue.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+constraintInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundAssigned.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundAssignedTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundAssigned.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundAssignedTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundAssigned.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundAssignedTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundAssigned.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundAssignedTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundAssigned.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundAssignedTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundAssigned.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundAssignedTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundAssigned.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundAssignedTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundAssigned.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundAssignedTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundAssigned.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundAssignedTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundAssigned.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundAssignedTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsInCompoundWithNoDefaultValue.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsInCompoundWithNoDefaultValue	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsInCompoundWithNoDefaultValue.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsInCompoundWithNoDefaultValue	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsInCompoundWithNoDefaultValue.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsInCompoundWithNoDefaultValue	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsInCompoundWithNoDefaultValue.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsInCompoundWithNoDefaultValue	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsInCompoundWithNoDefaultValue.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsInCompoundWithNoDefaultValue	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsInCompoundWithNoDefaultValue.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsInCompoundWithNoDefaultValue	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsInCompoundWithNoDefaultValue.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsInCompoundWithNoDefaultValue	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsInCompoundWithNoDefaultValue.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsInCompoundWithNoDefaultValue	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsInCompoundWithNoDefaultValue.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsInCompoundWithNoDefaultValue	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsInCompoundWithNoDefaultValue.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsInCompoundWithNoDefaultValue	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithDefaultValue.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithDefaultValue.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithDefaultValue.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithDefaultValue.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithDefaultValue.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithDefaultValue.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithDefaultValue.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithDefaultValue.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithDefaultValue.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithDefaultValue.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+changingConstraintsBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/changingConstraints/changingConstraintsBase.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	23,25	0,56	7,25	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	23,00	0,00	0,00	8,00	0,00	8,00	0,00	23,00	0,00	3,00	0,00	
+changingConstraintsBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/changingConstraints/changingConstraintsBase.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	23,25	0,56	7,25	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	23,00	0,00	0,00	8,00	0,00	8,00	0,00	23,00	0,00	3,00	0,00	
+changingConstraintsBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/changingConstraints/changingConstraintsBase.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	23,25	0,56	7,25	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	23,00	0,00	0,00	8,00	0,00	8,00	0,00	23,00	0,00	3,00	0,00	
+changingConstraintsBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/changingConstraints/changingConstraintsBase.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	23,25	0,56	7,25	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	23,00	0,00	0,00	8,00	0,00	8,00	0,00	23,00	0,00	3,00	0,00	
+changingConstraintsBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/changingConstraints/changingConstraintsBase.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	23,25	0,56	7,25	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	23,00	0,00	0,00	8,00	0,00	8,00	0,00	23,00	0,00	3,00	0,00	
+changingConstraintsBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/changingConstraints/changingConstraintsBase.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	23,25	0,56	7,25	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	23,00	0,00	0,00	8,00	0,00	8,00	0,00	23,00	0,00	3,00	0,00	
+changingConstraintsBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/changingConstraints/changingConstraintsBase.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	23,25	0,56	7,25	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	23,00	0,00	0,00	8,00	0,00	8,00	0,00	23,00	0,00	3,00	0,00	
+changingConstraintsBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/changingConstraints/changingConstraintsBase.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	23,25	0,56	7,25	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	23,00	0,00	0,00	8,00	0,00	8,00	0,00	23,00	0,00	3,00	0,00	
+changingConstraintsBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/changingConstraints/changingConstraintsBase.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	23,25	0,56	7,25	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	23,00	0,00	0,00	8,00	0,00	8,00	0,00	23,00	0,00	3,00	0,00	
+changingConstraintsBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/changingConstraints/changingConstraintsBase.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	23,25	0,56	7,25	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	23,00	0,00	0,00	8,00	0,00	8,00	0,00	23,00	0,00	3,00	0,00	
+changingConstraints		REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	38,00	0,96	22,00	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	34,00	0,00	0,00	0,00	0,00	0,00	0,00	45,00	0,00	15,00	0,00	
+changingConstraints		REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	38,00	0,96	22,00	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	34,00	0,00	0,00	0,00	0,00	0,00	0,00	45,00	0,00	15,00	0,00	
+changingConstraints		REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	38,00	0,96	22,00	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	34,00	0,00	0,00	0,00	0,00	0,00	0,00	45,00	0,00	15,00	0,00	
+changingConstraints		REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	38,00	0,96	22,00	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	34,00	0,00	0,00	0,00	0,00	0,00	0,00	45,00	0,00	15,00	0,00	
+changingConstraints		REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	38,00	0,96	22,00	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	34,00	0,00	0,00	0,00	0,00	0,00	0,00	45,00	0,00	15,00	0,00	
+changingConstraints		REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	38,00	0,96	22,00	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	34,00	16,00	0,00	0,00	0,00	0,00	16,00	45,00	0,00	15,00	16,00	
+changingConstraints		REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	38,00	0,96	22,00	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	34,00	0,00	0,00	0,00	0,00	0,00	0,00	45,00	0,00	15,00	0,00	
+changingConstraints		REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	38,00	0,96	22,00	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	34,00	0,00	0,00	0,00	0,00	0,00	0,00	45,00	0,00	15,00	0,00	
+changingConstraints		REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	38,00	0,96	22,00	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	34,00	0,00	0,00	0,00	0,00	0,00	0,00	45,00	0,00	15,00	0,00	
+changingConstraints		REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	38,00	0,96	22,00	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	34,00	0,00	0,00	0,00	0,00	0,00	0,00	45,00	0,00	15,00	0,00	
+constraintAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintAssigned.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintAssignedTest	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintAssigned.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintAssignedTest	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintAssigned.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintAssignedTest	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintAssigned.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintAssignedTest	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintAssigned.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintAssignedTest	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintAssigned.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintAssignedTest	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintAssigned.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintAssignedTest	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintAssigned.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintAssignedTest	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintAssigned.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintAssignedTest	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintAssigned.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintAssignedTest	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+SimpleEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/SimpleEval.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EvalTests.simpleEval	0,00	3,00	0,67	2,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+SimpleEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/SimpleEval.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EvalTests.simpleEval	0,00	3,00	0,67	2,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+SimpleEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/SimpleEval.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EvalTests.simpleEval	0,00	3,00	0,67	2,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+SimpleEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/SimpleEval.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EvalTests.simpleEval	0,00	3,00	0,67	2,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+SimpleEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/SimpleEval.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EvalTests.simpleEval	0,00	3,00	0,67	2,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+SimpleEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/SimpleEval.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EvalTests.simpleEval	0,00	3,00	0,67	2,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+SimpleEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/SimpleEval.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EvalTests.simpleEval	0,00	3,00	0,67	2,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+SimpleEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/SimpleEval.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EvalTests.simpleEval	0,00	3,00	0,67	2,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+SimpleEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/SimpleEval.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EvalTests.simpleEval	0,00	3,00	0,67	2,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+SimpleEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/SimpleEval.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EvalTests.simpleEval	0,00	3,00	0,67	2,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+NestedEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/NestedEval.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EvalTests.nestedEval	0,00	2,50	0,50	1,50	2,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+NestedEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/NestedEval.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EvalTests.nestedEval	0,00	2,50	0,50	1,50	2,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+NestedEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/NestedEval.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EvalTests.nestedEval	0,00	2,50	0,50	1,50	2,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+NestedEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/NestedEval.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EvalTests.nestedEval	0,00	2,50	0,50	1,50	2,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+NestedEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/NestedEval.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EvalTests.nestedEval	0,00	2,50	0,50	1,50	2,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+NestedEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/NestedEval.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EvalTests.nestedEval	0,00	2,50	0,50	1,50	2,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+NestedEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/NestedEval.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EvalTests.nestedEval	0,00	2,50	0,50	1,50	2,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+NestedEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/NestedEval.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EvalTests.nestedEval	0,00	2,50	0,50	1,50	2,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+NestedEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/NestedEval.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EvalTests.nestedEval	0,00	2,50	0,50	1,50	2,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+NestedEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/NestedEval.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EvalTests.nestedEval	0,00	2,50	0,50	1,50	2,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+CompoundEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/CompoundEval.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EvalTests.compoundEval	0,00	4,75	0,88	1,75	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+CompoundEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/CompoundEval.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EvalTests.compoundEval	0,00	4,75	0,88	1,75	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+CompoundEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/CompoundEval.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EvalTests.compoundEval	0,00	4,75	0,88	1,75	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+CompoundEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/CompoundEval.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EvalTests.compoundEval	0,00	4,75	0,88	1,75	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+CompoundEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/CompoundEval.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EvalTests.compoundEval	0,00	4,75	0,88	1,75	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	15,00	
+CompoundEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/CompoundEval.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EvalTests.compoundEval	0,00	4,75	0,88	1,75	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+CompoundEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/CompoundEval.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EvalTests.compoundEval	0,00	4,75	0,88	1,75	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+CompoundEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/CompoundEval.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EvalTests.compoundEval	0,00	4,75	0,88	1,75	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+CompoundEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/CompoundEval.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EvalTests.compoundEval	0,00	4,75	0,88	1,75	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+CompoundEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/CompoundEval.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EvalTests.compoundEval	0,00	4,75	0,88	1,75	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	1	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	78,00	0,00	0,00	0,00	0,00	93,00	1530,00	15,00	1648,00	93,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	2	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	63,00	0,00	0,00	0,00	0,00	63,00	1531,00	0,00	1648,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	3	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	31,00	0,00	0,00	0,00	0,00	47,00	1529,00	16,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	4	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	47,00	0,00	0,00	0,00	0,00	63,00	1530,00	16,00	1648,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	5	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	47,00	0,00	0,00	0,00	0,00	47,00	1526,00	0,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	6	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	47,00	0,00	0,00	0,00	0,00	62,00	1528,00	15,00	1648,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	7	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	63,00	0,00	0,00	0,00	0,00	63,00	1530,00	0,00	1648,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	8	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	30,00	0,00	0,00	0,00	0,00	62,00	1528,00	32,00	1648,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	9	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	47,00	0,00	0,00	0,00	0,00	47,00	1528,00	0,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	10	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	32,00	0,00	0,00	0,00	0,00	47,00	1530,00	15,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	1	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	16,00	0,00	0,00	0,00	0,00	47,00	1523,00	31,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	2	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	30,00	0,00	0,00	0,00	0,00	46,00	1531,00	16,00	1648,00	46,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	3	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	16,00	0,00	0,00	0,00	0,00	63,00	1529,00	47,00	1648,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	4	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	32,00	0,00	0,00	0,00	0,00	47,00	1531,00	15,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	5	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	16,00	0,00	0,00	0,00	0,00	78,00	1529,00	62,00	1648,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	6	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	15,00	0,00	0,00	0,00	0,00	31,00	1523,00	16,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	7	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	15,00	0,00	0,00	0,00	0,00	47,00	1523,00	32,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	8	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	46,00	0,00	0,00	0,00	0,00	46,00	1526,00	0,00	1648,00	46,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	9	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	16,00	0,00	0,00	0,00	0,00	31,00	1521,00	15,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	10	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	32,00	0,00	0,00	0,00	0,00	47,00	1531,00	15,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest1/QM_0.ivml	REASONING	1	net.ssehub.easy.reasoning.core.qm.QMHardwareTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	47,00	0,00	2,00	0,00	2,00	47,00	1520,00	0,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest1/QM_0.ivml	REASONING	2	net.ssehub.easy.reasoning.core.qm.QMHardwareTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	46,00	0,00	2,00	0,00	2,00	62,00	1531,00	16,00	1648,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest1/QM_0.ivml	REASONING	3	net.ssehub.easy.reasoning.core.qm.QMHardwareTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	15,00	0,00	2,00	0,00	2,00	47,00	1528,00	32,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest1/QM_0.ivml	REASONING	4	net.ssehub.easy.reasoning.core.qm.QMHardwareTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	16,00	0,00	2,00	0,00	2,00	31,00	1531,00	15,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest1/QM_0.ivml	REASONING	5	net.ssehub.easy.reasoning.core.qm.QMHardwareTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	46,00	0,00	2,00	0,00	2,00	62,00	1527,00	16,00	1648,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest1/QM_0.ivml	REASONING	6	net.ssehub.easy.reasoning.core.qm.QMHardwareTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	16,00	0,00	2,00	0,00	2,00	32,00	1523,00	16,00	1648,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest1/QM_0.ivml	REASONING	7	net.ssehub.easy.reasoning.core.qm.QMHardwareTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	46,00	0,00	2,00	0,00	2,00	46,00	1521,00	0,00	1648,00	46,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest1/QM_0.ivml	REASONING	8	net.ssehub.easy.reasoning.core.qm.QMHardwareTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	32,00	0,00	2,00	0,00	2,00	32,00	1526,00	0,00	1648,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest1/QM_0.ivml	REASONING	9	net.ssehub.easy.reasoning.core.qm.QMHardwareTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	32,00	0,00	2,00	0,00	2,00	47,00	1531,00	15,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest1/QM_0.ivml	REASONING	10	net.ssehub.easy.reasoning.core.qm.QMHardwareTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	15,00	0,00	2,00	0,00	2,00	31,00	1523,00	16,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest2/QM_0.ivml	REASONING	1	net.ssehub.easy.reasoning.core.qm.QMHardwareTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	31,00	0,00	1,00	0,00	1,00	62,00	1528,00	31,00	1648,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest2/QM_0.ivml	REASONING	2	net.ssehub.easy.reasoning.core.qm.QMHardwareTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	16,00	0,00	1,00	0,00	1,00	47,00	1525,00	31,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest2/QM_0.ivml	REASONING	3	net.ssehub.easy.reasoning.core.qm.QMHardwareTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	31,00	0,00	1,00	0,00	1,00	47,00	1531,00	16,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest2/QM_0.ivml	REASONING	4	net.ssehub.easy.reasoning.core.qm.QMHardwareTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	15,00	0,00	1,00	0,00	1,00	31,00	1521,00	16,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest2/QM_0.ivml	REASONING	5	net.ssehub.easy.reasoning.core.qm.QMHardwareTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	31,00	0,00	1,00	0,00	1,00	47,00	1529,00	16,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest2/QM_0.ivml	REASONING	6	net.ssehub.easy.reasoning.core.qm.QMHardwareTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	0,00	0,00	1,00	0,00	1,00	31,00	1526,00	16,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest2/QM_0.ivml	REASONING	7	net.ssehub.easy.reasoning.core.qm.QMHardwareTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	47,00	0,00	1,00	0,00	1,00	47,00	1522,00	0,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest2/QM_0.ivml	REASONING	8	net.ssehub.easy.reasoning.core.qm.QMHardwareTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	16,00	0,00	1,00	0,00	1,00	32,00	1531,00	16,00	1648,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest2/QM_0.ivml	REASONING	9	net.ssehub.easy.reasoning.core.qm.QMHardwareTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	47,00	0,00	1,00	0,00	1,00	47,00	1528,00	0,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest2/QM_0.ivml	REASONING	10	net.ssehub.easy.reasoning.core.qm.QMHardwareTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	0,00	0,00	1,00	0,00	1,00	31,00	1530,00	16,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest3/QM_0.ivml	REASONING	1	net.ssehub.easy.reasoning.core.qm.QMHardwareTest3.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	16,00	0,00	1,00	0,00	1,00	31,00	1529,00	15,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest3/QM_0.ivml	REASONING	2	net.ssehub.easy.reasoning.core.qm.QMHardwareTest3.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	16,00	0,00	1,00	0,00	1,00	32,00	1529,00	16,00	1648,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest3/QM_0.ivml	REASONING	3	net.ssehub.easy.reasoning.core.qm.QMHardwareTest3.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	16,00	0,00	1,00	0,00	1,00	32,00	1526,00	16,00	1648,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest3/QM_0.ivml	REASONING	4	net.ssehub.easy.reasoning.core.qm.QMHardwareTest3.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	0,00	0,00	1,00	0,00	1,00	31,00	1529,00	31,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest3/QM_0.ivml	REASONING	5	net.ssehub.easy.reasoning.core.qm.QMHardwareTest3.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	15,00	0,00	1,00	0,00	1,00	31,00	1526,00	16,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest3/QM_0.ivml	REASONING	6	net.ssehub.easy.reasoning.core.qm.QMHardwareTest3.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	31,00	0,00	1,00	0,00	1,00	31,00	1530,00	0,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest3/QM_0.ivml	REASONING	7	net.ssehub.easy.reasoning.core.qm.QMHardwareTest3.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	16,00	0,00	1,00	0,00	1,00	32,00	1524,00	16,00	1648,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest3/QM_0.ivml	REASONING	8	net.ssehub.easy.reasoning.core.qm.QMHardwareTest3.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	47,00	0,00	1,00	0,00	1,00	62,00	1528,00	15,00	1648,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest3/QM_0.ivml	REASONING	9	net.ssehub.easy.reasoning.core.qm.QMHardwareTest3.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	31,00	0,00	1,00	0,00	1,00	31,00	1528,00	0,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest3/QM_0.ivml	REASONING	10	net.ssehub.easy.reasoning.core.qm.QMHardwareTest3.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	31,00	0,00	1,00	0,00	1,00	31,00	1527,00	0,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmAlgorithmsTest1/QM_0.ivml	REASONING	1	net.ssehub.easy.reasoning.core.qm.QMAlgorithmsTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	15,00	0,00	1,00	0,00	1,00	31,00	1525,00	16,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmAlgorithmsTest1/QM_0.ivml	REASONING	2	net.ssehub.easy.reasoning.core.qm.QMAlgorithmsTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	32,00	0,00	1,00	0,00	1,00	47,00	1531,00	15,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmAlgorithmsTest1/QM_0.ivml	REASONING	3	net.ssehub.easy.reasoning.core.qm.QMAlgorithmsTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	47,00	0,00	1,00	0,00	1,00	47,00	1531,00	0,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmAlgorithmsTest1/QM_0.ivml	REASONING	4	net.ssehub.easy.reasoning.core.qm.QMAlgorithmsTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	32,00	0,00	1,00	0,00	1,00	47,00	1530,00	15,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmAlgorithmsTest1/QM_0.ivml	REASONING	5	net.ssehub.easy.reasoning.core.qm.QMAlgorithmsTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	16,00	0,00	1,00	0,00	1,00	31,00	1529,00	15,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmAlgorithmsTest1/QM_0.ivml	REASONING	6	net.ssehub.easy.reasoning.core.qm.QMAlgorithmsTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	31,00	0,00	1,00	0,00	1,00	31,00	1522,00	0,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmAlgorithmsTest1/QM_0.ivml	REASONING	7	net.ssehub.easy.reasoning.core.qm.QMAlgorithmsTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	47,00	0,00	1,00	0,00	1,00	47,00	1525,00	0,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmAlgorithmsTest1/QM_0.ivml	REASONING	8	net.ssehub.easy.reasoning.core.qm.QMAlgorithmsTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	16,00	0,00	1,00	0,00	1,00	31,00	1527,00	15,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmAlgorithmsTest1/QM_0.ivml	REASONING	9	net.ssehub.easy.reasoning.core.qm.QMAlgorithmsTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	15,00	0,00	1,00	0,00	1,00	31,00	1525,00	16,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmAlgorithmsTest1/QM_0.ivml	REASONING	10	net.ssehub.easy.reasoning.core.qm.QMAlgorithmsTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	32,00	0,00	1,00	0,00	1,00	47,00	1527,00	15,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest1/QM_0.ivml	REASONING	1	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	47,00	0,00	1,00	0,00	1,00	63,00	1530,00	16,00	1648,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest1/QM_0.ivml	REASONING	2	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	31,00	0,00	1,00	0,00	1,00	31,00	1525,00	0,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest1/QM_0.ivml	REASONING	3	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	31,00	0,00	1,00	0,00	1,00	31,00	1525,00	0,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest1/QM_0.ivml	REASONING	4	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	32,00	0,00	1,00	0,00	1,00	32,00	1527,00	0,00	1648,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest1/QM_0.ivml	REASONING	5	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	16,00	0,00	1,00	0,00	1,00	47,00	1529,00	31,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest1/QM_0.ivml	REASONING	6	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	31,00	0,00	1,00	0,00	1,00	31,00	1525,00	0,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest1/QM_0.ivml	REASONING	7	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	31,00	0,00	1,00	0,00	1,00	31,00	1522,00	0,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest1/QM_0.ivml	REASONING	8	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	31,00	0,00	1,00	0,00	1,00	31,00	1524,00	0,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest1/QM_0.ivml	REASONING	9	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	15,00	0,00	1,00	0,00	1,00	15,00	1530,00	0,00	1648,00	15,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest1/QM_0.ivml	REASONING	10	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	0,00	0,00	1,00	0,00	1,00	15,00	1529,00	15,00	1648,00	15,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest2/QM_0.ivml	REASONING	1	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	31,00	0,00	1,00	0,00	1,00	31,00	1530,00	0,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest2/QM_0.ivml	REASONING	2	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	16,00	0,00	1,00	0,00	1,00	32,00	1531,00	16,00	1648,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest2/QM_0.ivml	REASONING	3	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	31,00	0,00	1,00	0,00	1,00	31,00	1527,00	0,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest2/QM_0.ivml	REASONING	4	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	16,00	0,00	1,00	0,00	1,00	31,00	1525,00	15,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest2/QM_0.ivml	REASONING	5	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	0,00	0,00	1,00	0,00	1,00	31,00	1531,00	31,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest2/QM_0.ivml	REASONING	6	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	0,00	0,00	1,00	0,00	1,00	32,00	1531,00	32,00	1648,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest2/QM_0.ivml	REASONING	7	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	0,00	0,00	1,00	0,00	1,00	31,00	1530,00	31,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest2/QM_0.ivml	REASONING	8	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	0,00	0,00	1,00	0,00	1,00	31,00	1531,00	31,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest2/QM_0.ivml	REASONING	9	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	0,00	0,00	1,00	0,00	1,00	31,00	1524,00	31,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest2/QM_0.ivml	REASONING	10	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1225,00	0,00	0,00	1,00	0,00	1,00	15,00	1529,00	15,00	1648,00	15,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmPipelinesTest1/QM_0.ivml	REASONING	1	net.ssehub.easy.reasoning.core.qm.QMPipelinesTest1.coreTest	715,00	1057,75	1,76	367,75	5,00	107,00	107,00	494,00	494,00	67,00	601,00	601,00	1,15	690,00	1271,00	0,00	0,00	1,00	0,00	1,00	31,00	1578,00	31,00	1641,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmPipelinesTest1/QM_0.ivml	REASONING	2	net.ssehub.easy.reasoning.core.qm.QMPipelinesTest1.coreTest	715,00	1057,75	1,76	367,75	5,00	107,00	107,00	494,00	494,00	67,00	601,00	601,00	1,15	690,00	1271,00	31,00	0,00	1,00	0,00	1,00	47,00	1578,00	16,00	1641,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmPipelinesTest1/QM_0.ivml	REASONING	3	net.ssehub.easy.reasoning.core.qm.QMPipelinesTest1.coreTest	715,00	1057,75	1,76	367,75	5,00	107,00	107,00	494,00	494,00	67,00	601,00	601,00	1,15	690,00	1271,00	15,00	0,00	1,00	0,00	1,00	31,00	1575,00	16,00	1641,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmPipelinesTest1/QM_0.ivml	REASONING	4	net.ssehub.easy.reasoning.core.qm.QMPipelinesTest1.coreTest	715,00	1057,75	1,76	367,75	5,00	107,00	107,00	494,00	494,00	67,00	601,00	601,00	1,15	690,00	1271,00	16,00	0,00	1,00	0,00	1,00	32,00	1582,00	16,00	1641,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmPipelinesTest1/QM_0.ivml	REASONING	5	net.ssehub.easy.reasoning.core.qm.QMPipelinesTest1.coreTest	715,00	1057,75	1,76	367,75	5,00	107,00	107,00	494,00	494,00	67,00	601,00	601,00	1,15	690,00	1271,00	16,00	0,00	1,00	0,00	1,00	31,00	1582,00	15,00	1641,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmPipelinesTest1/QM_0.ivml	REASONING	6	net.ssehub.easy.reasoning.core.qm.QMPipelinesTest1.coreTest	715,00	1057,75	1,76	367,75	5,00	107,00	107,00	494,00	494,00	67,00	601,00	601,00	1,15	690,00	1271,00	15,00	0,00	1,00	0,00	1,00	31,00	1582,00	16,00	1641,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmPipelinesTest1/QM_0.ivml	REASONING	7	net.ssehub.easy.reasoning.core.qm.QMPipelinesTest1.coreTest	715,00	1057,75	1,76	367,75	5,00	107,00	107,00	494,00	494,00	67,00	601,00	601,00	1,15	690,00	1271,00	15,00	0,00	1,00	0,00	1,00	31,00	1577,00	16,00	1641,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmPipelinesTest1/QM_0.ivml	REASONING	8	net.ssehub.easy.reasoning.core.qm.QMPipelinesTest1.coreTest	715,00	1057,75	1,76	367,75	5,00	107,00	107,00	494,00	494,00	67,00	601,00	601,00	1,15	690,00	1271,00	32,00	0,00	1,00	0,00	1,00	32,00	1577,00	0,00	1641,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmPipelinesTest1/QM_0.ivml	REASONING	9	net.ssehub.easy.reasoning.core.qm.QMPipelinesTest1.coreTest	715,00	1057,75	1,76	367,75	5,00	107,00	107,00	494,00	494,00	67,00	601,00	601,00	1,15	690,00	1271,00	31,00	0,00	1,00	0,00	1,00	31,00	1576,00	0,00	1641,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmPipelinesTest1/QM_0.ivml	REASONING	10	net.ssehub.easy.reasoning.core.qm.QMPipelinesTest1.coreTest	715,00	1057,75	1,76	367,75	5,00	107,00	107,00	494,00	494,00	67,00	601,00	601,00	1,15	690,00	1271,00	31,00	0,00	1,00	0,00	1,00	31,00	1584,00	0,00	1641,00	31,00	
+HardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMHardwareTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmHardwareTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	19,00	0,00	2,00	0,00	
+HardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMHardwareTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmHardwareTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	19,00	0,00	2,00	0,00	
+HardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMHardwareTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmHardwareTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	19,00	0,00	2,00	0,00	
+HardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMHardwareTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmHardwareTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	19,00	0,00	2,00	0,00	
+HardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMHardwareTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmHardwareTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	19,00	0,00	2,00	0,00	
+HardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMHardwareTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmHardwareTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	19,00	0,00	2,00	0,00	
+HardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMHardwareTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmHardwareTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	19,00	0,00	2,00	0,00	
+HardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMHardwareTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmHardwareTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	19,00	0,00	2,00	0,00	
+HardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMHardwareTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmHardwareTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	19,00	0,00	2,00	0,00	
+HardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMHardwareTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmHardwareTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	19,00	0,00	2,00	0,00	
+QMFamilyAlgorithmsFieldsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMFamilyAlgorithmsFieldsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmFamilyAlgorithmsFieldsTest	0,00	87,00	3,58	43,00	0,00	2,00	2,00	34,00	34,00	7,00	36,00	36,00	1,22	44,00	11,00	0,00	0,00	1,00	0,00	1,00	0,00	11,00	0,00	5,00	0,00	
+QMFamilyAlgorithmsFieldsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMFamilyAlgorithmsFieldsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmFamilyAlgorithmsFieldsTest	0,00	87,00	3,58	43,00	0,00	2,00	2,00	34,00	34,00	7,00	36,00	36,00	1,22	44,00	11,00	0,00	0,00	1,00	0,00	1,00	0,00	11,00	0,00	5,00	0,00	
+QMFamilyAlgorithmsFieldsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMFamilyAlgorithmsFieldsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmFamilyAlgorithmsFieldsTest	0,00	87,00	3,58	43,00	0,00	2,00	2,00	34,00	34,00	7,00	36,00	36,00	1,22	44,00	11,00	0,00	0,00	1,00	0,00	1,00	0,00	11,00	0,00	5,00	0,00	
+QMFamilyAlgorithmsFieldsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMFamilyAlgorithmsFieldsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmFamilyAlgorithmsFieldsTest	0,00	87,00	3,58	43,00	0,00	2,00	2,00	34,00	34,00	7,00	36,00	36,00	1,22	44,00	11,00	0,00	0,00	1,00	0,00	1,00	0,00	11,00	0,00	5,00	0,00	
+QMFamilyAlgorithmsFieldsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMFamilyAlgorithmsFieldsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmFamilyAlgorithmsFieldsTest	0,00	87,00	3,58	43,00	0,00	2,00	2,00	34,00	34,00	7,00	36,00	36,00	1,22	44,00	11,00	0,00	0,00	1,00	0,00	1,00	0,00	11,00	0,00	5,00	0,00	
+QMFamilyAlgorithmsFieldsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMFamilyAlgorithmsFieldsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmFamilyAlgorithmsFieldsTest	0,00	87,00	3,58	43,00	0,00	2,00	2,00	34,00	34,00	7,00	36,00	36,00	1,22	44,00	11,00	0,00	0,00	1,00	0,00	1,00	0,00	11,00	0,00	5,00	0,00	
+QMFamilyAlgorithmsFieldsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMFamilyAlgorithmsFieldsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmFamilyAlgorithmsFieldsTest	0,00	87,00	3,58	43,00	0,00	2,00	2,00	34,00	34,00	7,00	36,00	36,00	1,22	44,00	11,00	0,00	0,00	1,00	0,00	1,00	0,00	11,00	0,00	5,00	0,00	
+QMFamilyAlgorithmsFieldsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMFamilyAlgorithmsFieldsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmFamilyAlgorithmsFieldsTest	0,00	87,00	3,58	43,00	0,00	2,00	2,00	34,00	34,00	7,00	36,00	36,00	1,22	44,00	11,00	0,00	0,00	1,00	0,00	1,00	0,00	11,00	0,00	5,00	0,00	
+QMFamilyAlgorithmsFieldsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMFamilyAlgorithmsFieldsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmFamilyAlgorithmsFieldsTest	0,00	87,00	3,58	43,00	0,00	2,00	2,00	34,00	34,00	7,00	36,00	36,00	1,22	44,00	11,00	0,00	0,00	1,00	0,00	1,00	15,00	11,00	15,00	5,00	15,00	
+QMFamilyAlgorithmsFieldsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMFamilyAlgorithmsFieldsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmFamilyAlgorithmsFieldsTest	0,00	87,00	3,58	43,00	0,00	2,00	2,00	34,00	34,00	7,00	36,00	36,00	1,22	44,00	11,00	0,00	0,00	1,00	0,00	1,00	0,00	11,00	0,00	5,00	0,00	
+NestedHardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/nestedHardwareTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.nestedHardwareTest	0,00	8,50	2,50	2,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	4,00	0,00	
+NestedHardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/nestedHardwareTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.nestedHardwareTest	0,00	8,50	2,50	2,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	4,00	0,00	
+NestedHardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/nestedHardwareTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.nestedHardwareTest	0,00	8,50	2,50	2,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	4,00	0,00	
+NestedHardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/nestedHardwareTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.nestedHardwareTest	0,00	8,50	2,50	2,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	4,00	0,00	
+NestedHardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/nestedHardwareTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.nestedHardwareTest	0,00	8,50	2,50	2,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	4,00	0,00	
+NestedHardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/nestedHardwareTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.nestedHardwareTest	0,00	8,50	2,50	2,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	4,00	0,00	
+NestedHardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/nestedHardwareTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.nestedHardwareTest	0,00	8,50	2,50	2,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	4,00	0,00	
+NestedHardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/nestedHardwareTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.nestedHardwareTest	0,00	8,50	2,50	2,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	4,00	0,00	
+NestedHardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/nestedHardwareTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.nestedHardwareTest	0,00	8,50	2,50	2,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	4,00	0,00	
+NestedHardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/nestedHardwareTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.nestedHardwareTest	0,00	8,50	2,50	2,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	4,00	0,00	
+MismatchTest		REASONING	1	net.ssehub.easy.reasoning.core.frontend.MismatchedTest.testMismatchTestFail	619,00	941,75	1,58	356,75	33,00	109,00	109,00	403,00	403,00	60,00	512,00	512,00	1,14	585,00	978,00	0,00	0,00	2,00	0,00	2,00	31,00	1227,00	0,00	860,00	31,00	
+MismatchTest		REASONING	2	net.ssehub.easy.reasoning.core.frontend.MismatchedTest.testMismatchTestFail	619,00	941,75	1,58	356,75	33,00	109,00	109,00	403,00	403,00	60,00	512,00	512,00	1,14	585,00	978,00	0,00	0,00	2,00	0,00	2,00	32,00	1233,00	32,00	860,00	47,00	
+MismatchTest		REASONING	3	net.ssehub.easy.reasoning.core.frontend.MismatchedTest.testMismatchTestFail	619,00	941,75	1,58	356,75	33,00	109,00	109,00	403,00	403,00	60,00	512,00	512,00	1,14	585,00	978,00	15,00	0,00	2,00	0,00	2,00	31,00	1227,00	16,00	860,00	31,00	
+MismatchTest		REASONING	4	net.ssehub.easy.reasoning.core.frontend.MismatchedTest.testMismatchTestFail	619,00	941,75	1,58	356,75	33,00	109,00	109,00	403,00	403,00	60,00	512,00	512,00	1,14	585,00	978,00	16,00	0,00	2,00	0,00	2,00	32,00	1222,00	16,00	860,00	32,00	
+MismatchTest		REASONING	5	net.ssehub.easy.reasoning.core.frontend.MismatchedTest.testMismatchTestFail	619,00	941,75	1,58	356,75	33,00	109,00	109,00	403,00	403,00	60,00	512,00	512,00	1,14	585,00	978,00	15,00	0,00	2,00	0,00	2,00	47,00	1231,00	32,00	860,00	47,00	
+MismatchTest		REASONING	6	net.ssehub.easy.reasoning.core.frontend.MismatchedTest.testMismatchTestFail	619,00	941,75	1,58	356,75	33,00	109,00	109,00	403,00	403,00	60,00	512,00	512,00	1,14	585,00	978,00	31,00	0,00	2,00	0,00	2,00	31,00	1226,00	0,00	860,00	31,00	
+MismatchTest		REASONING	7	net.ssehub.easy.reasoning.core.frontend.MismatchedTest.testMismatchTestFail	619,00	941,75	1,58	356,75	33,00	109,00	109,00	403,00	403,00	60,00	512,00	512,00	1,14	585,00	978,00	16,00	0,00	2,00	0,00	2,00	47,00	1229,00	31,00	860,00	47,00	
+MismatchTest		REASONING	8	net.ssehub.easy.reasoning.core.frontend.MismatchedTest.testMismatchTestFail	619,00	941,75	1,58	356,75	33,00	109,00	109,00	403,00	403,00	60,00	512,00	512,00	1,14	585,00	978,00	0,00	0,00	2,00	0,00	2,00	31,00	1233,00	16,00	860,00	31,00	
+MismatchTest		REASONING	9	net.ssehub.easy.reasoning.core.frontend.MismatchedTest.testMismatchTestFail	619,00	941,75	1,58	356,75	33,00	109,00	109,00	403,00	403,00	60,00	512,00	512,00	1,14	585,00	978,00	15,00	0,00	2,00	0,00	2,00	15,00	1225,00	0,00	860,00	31,00	
+MismatchTest		REASONING	10	net.ssehub.easy.reasoning.core.frontend.MismatchedTest.testMismatchTestFail	619,00	941,75	1,58	356,75	33,00	109,00	109,00	403,00	403,00	60,00	512,00	512,00	1,14	585,00	978,00	16,00	0,00	2,00	0,00	2,00	16,00	1224,00	0,00	860,00	16,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	1	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	81,00	114,50	0,36	7,50	0,00	10,00	8,00	71,00	60,00	13,00	81,00	68,00	1,32	107,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	5,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	2	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	3	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	4	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	16,00	2,00	16,00	2,00	16,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	5	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	6	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	7	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	8	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	9	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	10	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	1	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	81,00	114,50	0,36	7,50	0,00	10,00	8,00	71,00	60,00	13,00	81,00	68,00	1,32	107,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	5,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	2	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	3	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	4	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	5	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	6	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	7	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	8	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	9	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	10	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+ProjectP2		REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EvaluationIntegrityTest.testResolveOfIntegers	0,00	7,75	0,63	3,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	8,00	0,00	
+ProjectP2		REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EvaluationIntegrityTest.testResolveOfIntegers	0,00	7,75	0,63	3,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	8,00	0,00	
+ProjectP2		REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EvaluationIntegrityTest.testResolveOfIntegers	0,00	7,75	0,63	3,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	8,00	0,00	
+ProjectP2		REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EvaluationIntegrityTest.testResolveOfIntegers	0,00	7,75	0,63	3,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	8,00	0,00	
+ProjectP2		REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EvaluationIntegrityTest.testResolveOfIntegers	0,00	7,75	0,63	3,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	8,00	0,00	
+ProjectP2		REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EvaluationIntegrityTest.testResolveOfIntegers	0,00	7,75	0,63	3,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	8,00	0,00	
+ProjectP2		REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EvaluationIntegrityTest.testResolveOfIntegers	0,00	7,75	0,63	3,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	8,00	0,00	
+ProjectP2		REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EvaluationIntegrityTest.testResolveOfIntegers	0,00	7,75	0,63	3,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	8,00	0,00	
+ProjectP2		REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EvaluationIntegrityTest.testResolveOfIntegers	0,00	7,75	0,63	3,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	8,00	0,00	
+ProjectP2		REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EvaluationIntegrityTest.testResolveOfIntegers	0,00	7,75	0,63	3,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	8,00	0,00	
+internalConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InternalConstraintTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintTest	0,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+internalConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InternalConstraintTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintTest	0,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+internalConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InternalConstraintTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintTest	0,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+internalConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InternalConstraintTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintTest	0,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+internalConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InternalConstraintTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintTest	0,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+internalConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InternalConstraintTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintTest	0,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+internalConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InternalConstraintTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintTest	0,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+internalConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InternalConstraintTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintTest	0,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+internalConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InternalConstraintTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintTest	0,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+internalConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InternalConstraintTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintTest	0,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+NullTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullTest	0,00	9,00	0,44	4,00	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	13,00	0,00	5,00	0,00	
+NullTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullTest	0,00	9,00	0,44	4,00	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	13,00	0,00	5,00	0,00	
+NullTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullTest	0,00	9,00	0,44	4,00	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	13,00	0,00	5,00	0,00	
+NullTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullTest	0,00	9,00	0,44	4,00	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	13,00	0,00	5,00	0,00	
+NullTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullTest	0,00	9,00	0,44	4,00	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	13,00	0,00	5,00	0,00	
+NullTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullTest	0,00	9,00	0,44	4,00	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	13,00	0,00	5,00	0,00	
+NullTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullTest	0,00	9,00	0,44	4,00	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	13,00	0,00	5,00	0,00	
+NullTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullTest	0,00	9,00	0,44	4,00	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	13,00	0,00	5,00	0,00	
+NullTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullTest	0,00	9,00	0,44	4,00	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	13,00	0,00	5,00	0,00	
+NullTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullTest	0,00	9,00	0,44	4,00	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	13,00	0,00	5,00	0,00	
+refByCompoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/refByCompoundCollectionEqualityTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refByCompoundCollectionEqualityTest	0,00	14,75	0,29	1,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+refByCompoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/refByCompoundCollectionEqualityTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refByCompoundCollectionEqualityTest	0,00	14,75	0,29	1,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+refByCompoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/refByCompoundCollectionEqualityTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refByCompoundCollectionEqualityTest	0,00	14,75	0,29	1,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+refByCompoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/refByCompoundCollectionEqualityTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refByCompoundCollectionEqualityTest	0,00	14,75	0,29	1,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+refByCompoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/refByCompoundCollectionEqualityTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refByCompoundCollectionEqualityTest	0,00	14,75	0,29	1,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+refByCompoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/refByCompoundCollectionEqualityTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refByCompoundCollectionEqualityTest	0,00	14,75	0,29	1,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+refByCompoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/refByCompoundCollectionEqualityTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refByCompoundCollectionEqualityTest	0,00	14,75	0,29	1,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+refByCompoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/refByCompoundCollectionEqualityTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refByCompoundCollectionEqualityTest	0,00	14,75	0,29	1,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+refByCompoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/refByCompoundCollectionEqualityTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refByCompoundCollectionEqualityTest	0,00	14,75	0,29	1,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+refByCompoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/refByCompoundCollectionEqualityTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refByCompoundCollectionEqualityTest	0,00	14,75	0,29	1,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+compoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/compoundCollectionEqualityTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundCollectionEqualityTest	0,00	15,75	0,46	2,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+compoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/compoundCollectionEqualityTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundCollectionEqualityTest	0,00	15,75	0,46	2,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+compoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/compoundCollectionEqualityTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundCollectionEqualityTest	0,00	15,75	0,46	2,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+compoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/compoundCollectionEqualityTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundCollectionEqualityTest	0,00	15,75	0,46	2,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+compoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/compoundCollectionEqualityTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundCollectionEqualityTest	0,00	15,75	0,46	2,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+compoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/compoundCollectionEqualityTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundCollectionEqualityTest	0,00	15,75	0,46	2,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+compoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/compoundCollectionEqualityTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundCollectionEqualityTest	0,00	15,75	0,46	2,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+compoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/compoundCollectionEqualityTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundCollectionEqualityTest	0,00	15,75	0,46	2,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+compoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/compoundCollectionEqualityTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundCollectionEqualityTest	0,00	15,75	0,46	2,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+compoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/compoundCollectionEqualityTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundCollectionEqualityTest	0,00	15,75	0,46	2,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+ConstrainedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstrainedCompoundTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constrainedCompoundTest	0,00	10,75	0,25	0,75	0,00	0,00	0,00	7,00	7,00	1,00	7,00	7,00	1,43	10,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	11,00	0,00	7,00	0,00	
+ConstrainedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstrainedCompoundTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constrainedCompoundTest	0,00	10,75	0,25	0,75	0,00	0,00	0,00	7,00	7,00	1,00	7,00	7,00	1,43	10,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	11,00	0,00	7,00	0,00	
+ConstrainedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstrainedCompoundTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constrainedCompoundTest	0,00	10,75	0,25	0,75	0,00	0,00	0,00	7,00	7,00	1,00	7,00	7,00	1,43	10,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	11,00	0,00	7,00	0,00	
+ConstrainedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstrainedCompoundTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constrainedCompoundTest	0,00	10,75	0,25	0,75	0,00	0,00	0,00	7,00	7,00	1,00	7,00	7,00	1,43	10,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	11,00	0,00	7,00	0,00	
+ConstrainedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstrainedCompoundTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constrainedCompoundTest	0,00	10,75	0,25	0,75	0,00	0,00	0,00	7,00	7,00	1,00	7,00	7,00	1,43	10,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	11,00	0,00	7,00	0,00	
+ConstrainedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstrainedCompoundTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constrainedCompoundTest	0,00	10,75	0,25	0,75	0,00	0,00	0,00	7,00	7,00	1,00	7,00	7,00	1,43	10,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	11,00	0,00	7,00	0,00	
+ConstrainedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstrainedCompoundTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constrainedCompoundTest	0,00	10,75	0,25	0,75	0,00	0,00	0,00	7,00	7,00	1,00	7,00	7,00	1,43	10,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	11,00	0,00	7,00	0,00	
+ConstrainedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstrainedCompoundTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constrainedCompoundTest	0,00	10,75	0,25	0,75	0,00	0,00	0,00	7,00	7,00	1,00	7,00	7,00	1,43	10,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	11,00	0,00	7,00	0,00	
+ConstrainedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstrainedCompoundTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constrainedCompoundTest	0,00	10,75	0,25	0,75	0,00	0,00	0,00	7,00	7,00	1,00	7,00	7,00	1,43	10,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	11,00	0,00	7,00	0,00	
+ConstrainedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstrainedCompoundTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constrainedCompoundTest	0,00	10,75	0,25	0,75	0,00	0,00	0,00	7,00	7,00	1,00	7,00	7,00	1,43	10,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	11,00	0,00	7,00	0,00	
+NestedVariableReplaceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/nestedVariableReplaceTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nestedVariableReplaceTest	0,00	8,25	0,63	1,25	0,00	0,00	0,00	5,00	5,00	2,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+NestedVariableReplaceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/nestedVariableReplaceTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nestedVariableReplaceTest	0,00	8,25	0,63	1,25	0,00	0,00	0,00	5,00	5,00	2,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+NestedVariableReplaceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/nestedVariableReplaceTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nestedVariableReplaceTest	0,00	8,25	0,63	1,25	0,00	0,00	0,00	5,00	5,00	2,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+NestedVariableReplaceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/nestedVariableReplaceTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nestedVariableReplaceTest	0,00	8,25	0,63	1,25	0,00	0,00	0,00	5,00	5,00	2,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+NestedVariableReplaceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/nestedVariableReplaceTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nestedVariableReplaceTest	0,00	8,25	0,63	1,25	0,00	0,00	0,00	5,00	5,00	2,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+NestedVariableReplaceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/nestedVariableReplaceTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nestedVariableReplaceTest	0,00	8,25	0,63	1,25	0,00	0,00	0,00	5,00	5,00	2,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+NestedVariableReplaceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/nestedVariableReplaceTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nestedVariableReplaceTest	0,00	8,25	0,63	1,25	0,00	0,00	0,00	5,00	5,00	2,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+NestedVariableReplaceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/nestedVariableReplaceTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nestedVariableReplaceTest	0,00	8,25	0,63	1,25	0,00	0,00	0,00	5,00	5,00	2,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+NestedVariableReplaceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/nestedVariableReplaceTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nestedVariableReplaceTest	0,00	8,25	0,63	1,25	0,00	0,00	0,00	5,00	5,00	2,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+NestedVariableReplaceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/nestedVariableReplaceTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nestedVariableReplaceTest	0,00	8,25	0,63	1,25	0,00	0,00	0,00	5,00	5,00	2,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+stringCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/stringCollectionEqualityTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.stringCollectionEqualityTest	0,00	10,00	0,33	2,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+stringCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/stringCollectionEqualityTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.stringCollectionEqualityTest	0,00	10,00	0,33	2,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+stringCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/stringCollectionEqualityTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.stringCollectionEqualityTest	0,00	10,00	0,33	2,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+stringCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/stringCollectionEqualityTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.stringCollectionEqualityTest	0,00	10,00	0,33	2,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+stringCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/stringCollectionEqualityTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.stringCollectionEqualityTest	0,00	10,00	0,33	2,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+stringCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/stringCollectionEqualityTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.stringCollectionEqualityTest	0,00	10,00	0,33	2,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+stringCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/stringCollectionEqualityTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.stringCollectionEqualityTest	0,00	10,00	0,33	2,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+stringCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/stringCollectionEqualityTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.stringCollectionEqualityTest	0,00	10,00	0,33	2,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+stringCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/stringCollectionEqualityTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.stringCollectionEqualityTest	0,00	10,00	0,33	2,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+stringCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/stringCollectionEqualityTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.stringCollectionEqualityTest	0,00	10,00	0,33	2,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+AttributeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationInitialTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationInitialTest	12,00	7,25	0,25	0,25	0,00	0,00	0,00	6,00	6,00	3,00	6,00	6,00	1,17	7,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+AttributeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationInitialTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationInitialTest	12,00	7,25	0,25	0,25	0,00	0,00	0,00	6,00	6,00	3,00	6,00	6,00	1,17	7,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+AttributeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationInitialTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationInitialTest	12,00	7,25	0,25	0,25	0,00	0,00	0,00	6,00	6,00	3,00	6,00	6,00	1,17	7,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+AttributeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationInitialTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationInitialTest	12,00	7,25	0,25	0,25	0,00	0,00	0,00	6,00	6,00	3,00	6,00	6,00	1,17	7,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+AttributeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationInitialTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationInitialTest	12,00	7,25	0,25	0,25	0,00	0,00	0,00	6,00	6,00	3,00	6,00	6,00	1,17	7,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+AttributeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationInitialTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationInitialTest	12,00	7,25	0,25	0,25	0,00	0,00	0,00	6,00	6,00	3,00	6,00	6,00	1,17	7,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+AttributeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationInitialTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationInitialTest	12,00	7,25	0,25	0,25	0,00	0,00	0,00	6,00	6,00	3,00	6,00	6,00	1,17	7,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+AttributeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationInitialTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationInitialTest	12,00	7,25	0,25	0,25	0,00	0,00	0,00	6,00	6,00	3,00	6,00	6,00	1,17	7,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+AttributeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationInitialTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationInitialTest	12,00	7,25	0,25	0,25	0,00	0,00	0,00	6,00	6,00	3,00	6,00	6,00	1,17	7,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+AttributeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationInitialTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationInitialTest	12,00	7,25	0,25	0,25	0,00	0,00	0,00	6,00	6,00	3,00	6,00	6,00	1,17	7,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+ConstraintVariableTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstraintVariableTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constraintVariablesTest	0,00	10,50	0,42	2,50	0,00	2,00	2,00	5,00	5,00	4,00	7,00	7,00	1,14	8,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	11,00	0,00	5,00	0,00	
+ConstraintVariableTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstraintVariableTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constraintVariablesTest	0,00	10,50	0,42	2,50	0,00	2,00	2,00	5,00	5,00	4,00	7,00	7,00	1,14	8,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	11,00	0,00	5,00	0,00	
+ConstraintVariableTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstraintVariableTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constraintVariablesTest	0,00	10,50	0,42	2,50	0,00	2,00	2,00	5,00	5,00	4,00	7,00	7,00	1,14	8,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	11,00	0,00	5,00	0,00	
+ConstraintVariableTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstraintVariableTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constraintVariablesTest	0,00	10,50	0,42	2,50	0,00	2,00	2,00	5,00	5,00	4,00	7,00	7,00	1,14	8,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	11,00	0,00	5,00	0,00	
+ConstraintVariableTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstraintVariableTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constraintVariablesTest	0,00	10,50	0,42	2,50	0,00	2,00	2,00	5,00	5,00	4,00	7,00	7,00	1,14	8,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	11,00	0,00	5,00	0,00	
+ConstraintVariableTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstraintVariableTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constraintVariablesTest	0,00	10,50	0,42	2,50	0,00	2,00	2,00	5,00	5,00	4,00	7,00	7,00	1,14	8,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	11,00	0,00	5,00	0,00	
+ConstraintVariableTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstraintVariableTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constraintVariablesTest	0,00	10,50	0,42	2,50	0,00	2,00	2,00	5,00	5,00	4,00	7,00	7,00	1,14	8,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	11,00	0,00	5,00	0,00	
+ConstraintVariableTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstraintVariableTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constraintVariablesTest	0,00	10,50	0,42	2,50	0,00	2,00	2,00	5,00	5,00	4,00	7,00	7,00	1,14	8,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	11,00	0,00	5,00	0,00	
+ConstraintVariableTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstraintVariableTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constraintVariablesTest	0,00	10,50	0,42	2,50	0,00	2,00	2,00	5,00	5,00	4,00	7,00	7,00	1,14	8,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	11,00	0,00	5,00	0,00	
+ConstraintVariableTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstraintVariableTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constraintVariablesTest	0,00	10,50	0,42	2,50	0,00	2,00	2,00	5,00	5,00	4,00	7,00	7,00	1,14	8,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	11,00	0,00	5,00	0,00	
+CompoundEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/CompoundEqualityTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundEqualityTest	0,00	10,75	0,38	0,75	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,25	10,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/CompoundEqualityTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundEqualityTest	0,00	10,75	0,38	0,75	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,25	10,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/CompoundEqualityTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundEqualityTest	0,00	10,75	0,38	0,75	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,25	10,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/CompoundEqualityTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundEqualityTest	0,00	10,75	0,38	0,75	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,25	10,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/CompoundEqualityTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundEqualityTest	0,00	10,75	0,38	0,75	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,25	10,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/CompoundEqualityTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundEqualityTest	0,00	10,75	0,38	0,75	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,25	10,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/CompoundEqualityTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundEqualityTest	0,00	10,75	0,38	0,75	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,25	10,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/CompoundEqualityTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundEqualityTest	0,00	10,75	0,38	0,75	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,25	10,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/CompoundEqualityTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundEqualityTest	0,00	10,75	0,38	0,75	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,25	10,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/CompoundEqualityTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundEqualityTest	0,00	10,75	0,38	0,75	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,25	10,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+internalConstraintInheritedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+internalConstraintInheritedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+internalConstraintInheritedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+internalConstraintInheritedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+internalConstraintInheritedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+internalConstraintInheritedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+internalConstraintInheritedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+internalConstraintInheritedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+internalConstraintInheritedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+internalConstraintInheritedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+DefaultConstraintReevaluationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/DefaultConstraintReevaluationTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.defaultConstraintReevaluationTest	0,00	3,25	0,42	1,25	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+DefaultConstraintReevaluationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/DefaultConstraintReevaluationTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.defaultConstraintReevaluationTest	0,00	3,25	0,42	1,25	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+DefaultConstraintReevaluationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/DefaultConstraintReevaluationTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.defaultConstraintReevaluationTest	0,00	3,25	0,42	1,25	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+DefaultConstraintReevaluationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/DefaultConstraintReevaluationTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.defaultConstraintReevaluationTest	0,00	3,25	0,42	1,25	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+DefaultConstraintReevaluationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/DefaultConstraintReevaluationTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.defaultConstraintReevaluationTest	0,00	3,25	0,42	1,25	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+DefaultConstraintReevaluationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/DefaultConstraintReevaluationTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.defaultConstraintReevaluationTest	0,00	3,25	0,42	1,25	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+DefaultConstraintReevaluationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/DefaultConstraintReevaluationTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.defaultConstraintReevaluationTest	0,00	3,25	0,42	1,25	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+DefaultConstraintReevaluationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/DefaultConstraintReevaluationTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.defaultConstraintReevaluationTest	0,00	3,25	0,42	1,25	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+DefaultConstraintReevaluationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/DefaultConstraintReevaluationTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.defaultConstraintReevaluationTest	0,00	3,25	0,42	1,25	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+DefaultConstraintReevaluationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/DefaultConstraintReevaluationTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.defaultConstraintReevaluationTest	0,00	3,25	0,42	1,25	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+HasDuplicatesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/HasDuplicatesTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.hasDuplicatesTestTest	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+HasDuplicatesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/HasDuplicatesTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.hasDuplicatesTestTest	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+HasDuplicatesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/HasDuplicatesTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.hasDuplicatesTestTest	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+HasDuplicatesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/HasDuplicatesTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.hasDuplicatesTestTest	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+HasDuplicatesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/HasDuplicatesTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.hasDuplicatesTestTest	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+HasDuplicatesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/HasDuplicatesTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.hasDuplicatesTestTest	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+HasDuplicatesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/HasDuplicatesTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.hasDuplicatesTestTest	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+HasDuplicatesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/HasDuplicatesTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.hasDuplicatesTestTest	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+HasDuplicatesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/HasDuplicatesTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.hasDuplicatesTestTest	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	16,00	3,00	0,00	1,00	16,00	
+HasDuplicatesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/HasDuplicatesTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.hasDuplicatesTestTest	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+internalConstraintCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionTest	0,00	5,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	3,00	0,00	
+internalConstraintCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionTest	0,00	5,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	3,00	0,00	
+internalConstraintCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionTest	0,00	5,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	3,00	0,00	
+internalConstraintCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionTest	0,00	5,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	3,00	0,00	
+internalConstraintCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionTest	0,00	5,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	3,00	0,00	
+internalConstraintCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionTest	0,00	5,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	3,00	0,00	
+internalConstraintCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionTest	0,00	5,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	3,00	0,00	
+internalConstraintCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionTest	0,00	5,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	3,00	0,00	
+internalConstraintCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionTest	0,00	5,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	3,00	0,00	
+internalConstraintCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionTest	0,00	5,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	3,00	0,00	
+ImportCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportCore.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importCoreTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	4,00	0,00	
+ImportCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportCore.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importCoreTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	4,00	0,00	
+ImportCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportCore.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importCoreTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	4,00	0,00	
+ImportCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportCore.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importCoreTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	4,00	0,00	
+ImportCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportCore.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importCoreTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	4,00	0,00	
+ImportCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportCore.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importCoreTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	4,00	0,00	
+ImportCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportCore.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importCoreTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	4,00	0,00	
+ImportCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportCore.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importCoreTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	4,00	0,00	
+ImportCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportCore.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importCoreTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	4,00	0,00	
+ImportCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportCore.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importCoreTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	4,00	0,00	
+ClearConfigCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ClearConfigCore.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.clearConfigTest	2,00	3,50	0,38	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+ClearConfigCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ClearConfigCore.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.clearConfigTest	2,00	3,50	0,38	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+ClearConfigCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ClearConfigCore.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.clearConfigTest	2,00	3,50	0,38	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+ClearConfigCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ClearConfigCore.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.clearConfigTest	2,00	3,50	0,38	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+ClearConfigCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ClearConfigCore.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.clearConfigTest	2,00	3,50	0,38	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+ClearConfigCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ClearConfigCore.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.clearConfigTest	2,00	3,50	0,38	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+ClearConfigCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ClearConfigCore.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.clearConfigTest	2,00	3,50	0,38	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+ClearConfigCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ClearConfigCore.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.clearConfigTest	2,00	3,50	0,38	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+ClearConfigCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ClearConfigCore.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.clearConfigTest	2,00	3,50	0,38	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+ClearConfigCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ClearConfigCore.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.clearConfigTest	2,00	3,50	0,38	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+PreCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/PreCollectionTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.preCollectionTest	0,00	13,00	0,50	1,00	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	4,00	0,00	
+PreCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/PreCollectionTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.preCollectionTest	0,00	13,00	0,50	1,00	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	4,00	0,00	
+PreCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/PreCollectionTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.preCollectionTest	0,00	13,00	0,50	1,00	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	4,00	0,00	
+PreCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/PreCollectionTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.preCollectionTest	0,00	13,00	0,50	1,00	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	4,00	0,00	
+PreCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/PreCollectionTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.preCollectionTest	0,00	13,00	0,50	1,00	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	4,00	0,00	
+PreCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/PreCollectionTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.preCollectionTest	0,00	13,00	0,50	1,00	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	4,00	0,00	
+PreCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/PreCollectionTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.preCollectionTest	0,00	13,00	0,50	1,00	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	4,00	0,00	
+PreCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/PreCollectionTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.preCollectionTest	0,00	13,00	0,50	1,00	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	4,00	0,00	
+PreCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/PreCollectionTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.preCollectionTest	0,00	13,00	0,50	1,00	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	4,00	0,00	
+PreCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/PreCollectionTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.preCollectionTest	0,00	13,00	0,50	1,00	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	4,00	0,00	
+FreezeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeTest	0,00	4,25	0,63	1,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+FreezeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeTest	0,00	4,25	0,63	1,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+FreezeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeTest	0,00	4,25	0,63	1,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+FreezeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeTest	0,00	4,25	0,63	1,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+FreezeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeTest	0,00	4,25	0,63	1,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+FreezeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeTest	0,00	4,25	0,63	1,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+FreezeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeTest	0,00	4,25	0,63	1,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+FreezeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeTest	0,00	4,25	0,63	1,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+FreezeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeTest	0,00	4,25	0,63	1,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+FreezeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeTest	0,00	4,25	0,63	1,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationAssignedToDifferentCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationAssignedToDifferentCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationAssignedToDifferentCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationAssignedToDifferentCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationAssignedToDifferentCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationAssignedToDifferentCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationAssignedToDifferentCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationAssignedToDifferentCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationAssignedToDifferentCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationAssignedToDifferentCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+NullImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullImportTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullImportTest	0,00	11,00	0,45	5,00	0,00	4,00	4,00	2,00	2,00	6,00	6,00	6,00	1,00	6,00	11,00	0,00	0,00	4,00	0,00	4,00	0,00	16,00	0,00	11,00	0,00	
+NullImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullImportTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullImportTest	0,00	11,00	0,45	5,00	0,00	4,00	4,00	2,00	2,00	6,00	6,00	6,00	1,00	6,00	11,00	0,00	0,00	4,00	0,00	4,00	0,00	16,00	0,00	11,00	0,00	
+NullImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullImportTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullImportTest	0,00	11,00	0,45	5,00	0,00	4,00	4,00	2,00	2,00	6,00	6,00	6,00	1,00	6,00	11,00	0,00	0,00	4,00	0,00	4,00	0,00	16,00	0,00	11,00	0,00	
+NullImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullImportTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullImportTest	0,00	11,00	0,45	5,00	0,00	4,00	4,00	2,00	2,00	6,00	6,00	6,00	1,00	6,00	11,00	0,00	0,00	4,00	0,00	4,00	0,00	16,00	0,00	11,00	0,00	
+NullImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullImportTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullImportTest	0,00	11,00	0,45	5,00	0,00	4,00	4,00	2,00	2,00	6,00	6,00	6,00	1,00	6,00	11,00	0,00	0,00	4,00	0,00	4,00	0,00	16,00	0,00	11,00	0,00	
+NullImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullImportTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullImportTest	0,00	11,00	0,45	5,00	0,00	4,00	4,00	2,00	2,00	6,00	6,00	6,00	1,00	6,00	11,00	0,00	0,00	4,00	0,00	4,00	0,00	16,00	0,00	11,00	0,00	
+NullImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullImportTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullImportTest	0,00	11,00	0,45	5,00	0,00	4,00	4,00	2,00	2,00	6,00	6,00	6,00	1,00	6,00	11,00	0,00	0,00	4,00	0,00	4,00	0,00	16,00	0,00	11,00	0,00	
+NullImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullImportTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullImportTest	0,00	11,00	0,45	5,00	0,00	4,00	4,00	2,00	2,00	6,00	6,00	6,00	1,00	6,00	11,00	0,00	0,00	4,00	0,00	4,00	0,00	16,00	0,00	11,00	0,00	
+NullImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullImportTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullImportTest	0,00	11,00	0,45	5,00	0,00	4,00	4,00	2,00	2,00	6,00	6,00	6,00	1,00	6,00	11,00	0,00	0,00	4,00	0,00	4,00	0,00	16,00	0,00	11,00	0,00	
+NullImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullImportTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullImportTest	0,00	11,00	0,45	5,00	0,00	4,00	4,00	2,00	2,00	6,00	6,00	6,00	1,00	6,00	11,00	0,00	0,00	4,00	0,00	4,00	0,00	16,00	0,00	11,00	0,00	
+internalConstraintCollectionInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionInCompoundTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionInCompoundTest	0,00	6,25	0,25	0,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+internalConstraintCollectionInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionInCompoundTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionInCompoundTest	0,00	6,25	0,25	0,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+internalConstraintCollectionInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionInCompoundTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionInCompoundTest	0,00	6,25	0,25	0,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+internalConstraintCollectionInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionInCompoundTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionInCompoundTest	0,00	6,25	0,25	0,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+internalConstraintCollectionInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionInCompoundTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionInCompoundTest	0,00	6,25	0,25	0,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+internalConstraintCollectionInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionInCompoundTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionInCompoundTest	0,00	6,25	0,25	0,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+internalConstraintCollectionInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionInCompoundTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionInCompoundTest	0,00	6,25	0,25	0,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+internalConstraintCollectionInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionInCompoundTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionInCompoundTest	0,00	6,25	0,25	0,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+internalConstraintCollectionInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionInCompoundTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionInCompoundTest	0,00	6,25	0,25	0,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+internalConstraintCollectionInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionInCompoundTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionInCompoundTest	0,00	6,25	0,25	0,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefinedCompoundTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refinedCompoundTest	0,00	22,00	0,50	5,00	5,00	0,00	0,00	12,00	12,00	4,00	12,00	12,00	1,42	17,00	9,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	0,00	0,00	
+RefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefinedCompoundTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refinedCompoundTest	0,00	22,00	0,50	5,00	5,00	0,00	0,00	12,00	12,00	4,00	12,00	12,00	1,42	17,00	9,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	0,00	0,00	
+RefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefinedCompoundTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refinedCompoundTest	0,00	22,00	0,50	5,00	5,00	0,00	0,00	12,00	12,00	4,00	12,00	12,00	1,42	17,00	9,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	0,00	0,00	
+RefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefinedCompoundTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refinedCompoundTest	0,00	22,00	0,50	5,00	5,00	0,00	0,00	12,00	12,00	4,00	12,00	12,00	1,42	17,00	9,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	0,00	0,00	
+RefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefinedCompoundTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refinedCompoundTest	0,00	22,00	0,50	5,00	5,00	0,00	0,00	12,00	12,00	4,00	12,00	12,00	1,42	17,00	9,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	0,00	0,00	
+RefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefinedCompoundTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refinedCompoundTest	0,00	22,00	0,50	5,00	5,00	0,00	0,00	12,00	12,00	4,00	12,00	12,00	1,42	17,00	9,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	0,00	0,00	
+RefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefinedCompoundTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refinedCompoundTest	0,00	22,00	0,50	5,00	5,00	0,00	0,00	12,00	12,00	4,00	12,00	12,00	1,42	17,00	9,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	0,00	0,00	
+RefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefinedCompoundTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refinedCompoundTest	0,00	22,00	0,50	5,00	5,00	0,00	0,00	12,00	12,00	4,00	12,00	12,00	1,42	17,00	9,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	0,00	0,00	
+RefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefinedCompoundTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refinedCompoundTest	0,00	22,00	0,50	5,00	5,00	0,00	0,00	12,00	12,00	4,00	12,00	12,00	1,42	17,00	9,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	0,00	0,00	
+RefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefinedCompoundTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refinedCompoundTest	0,00	22,00	0,50	5,00	5,00	0,00	0,00	12,00	12,00	4,00	12,00	12,00	1,42	17,00	9,00	0,00	0,00	1,00	0,00	1,00	16,00	9,00	16,00	0,00	16,00	
+ImportChild	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportChild.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importChildTest	0,00	3,50	0,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+ImportChild	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportChild.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importChildTest	0,00	3,50	0,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+ImportChild	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportChild.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importChildTest	0,00	3,50	0,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+ImportChild	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportChild.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importChildTest	0,00	3,50	0,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+ImportChild	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportChild.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importChildTest	0,00	3,50	0,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+ImportChild	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportChild.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importChildTest	0,00	3,50	0,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+ImportChild	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportChild.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importChildTest	0,00	3,50	0,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+ImportChild	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportChild.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importChildTest	0,00	3,50	0,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+ImportChild	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportChild.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importChildTest	0,00	3,50	0,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+ImportChild	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportChild.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importChildTest	0,00	3,50	0,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+TraceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/TraceTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.traceTest	0,00	11,00	1,33	4,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,75	7,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	4,00	0,00	
+TraceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/TraceTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.traceTest	0,00	11,00	1,33	4,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,75	7,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	4,00	0,00	
+TraceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/TraceTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.traceTest	0,00	11,00	1,33	4,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,75	7,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	4,00	0,00	
+TraceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/TraceTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.traceTest	0,00	11,00	1,33	4,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,75	7,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	4,00	0,00	
+TraceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/TraceTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.traceTest	0,00	11,00	1,33	4,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,75	7,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	4,00	0,00	
+TraceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/TraceTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.traceTest	0,00	11,00	1,33	4,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,75	7,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	4,00	0,00	
+TraceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/TraceTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.traceTest	0,00	11,00	1,33	4,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,75	7,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	4,00	0,00	
+TraceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/TraceTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.traceTest	0,00	11,00	1,33	4,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,75	7,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	4,00	0,00	
+TraceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/TraceTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.traceTest	0,00	11,00	1,33	4,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,75	7,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	4,00	0,00	
+TraceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/TraceTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.traceTest	0,00	11,00	1,33	4,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,75	7,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	4,00	0,00	
+VariableAssignmentFailTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/VariableAssignmentFailTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.variableAssignmentFailTest	0,00	8,25	0,53	4,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	3,00	0,00	
+VariableAssignmentFailTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/VariableAssignmentFailTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.variableAssignmentFailTest	0,00	8,25	0,53	4,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	3,00	0,00	
+VariableAssignmentFailTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/VariableAssignmentFailTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.variableAssignmentFailTest	0,00	8,25	0,53	4,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	3,00	0,00	
+VariableAssignmentFailTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/VariableAssignmentFailTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.variableAssignmentFailTest	0,00	8,25	0,53	4,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	3,00	0,00	
+VariableAssignmentFailTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/VariableAssignmentFailTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.variableAssignmentFailTest	0,00	8,25	0,53	4,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	3,00	0,00	
+VariableAssignmentFailTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/VariableAssignmentFailTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.variableAssignmentFailTest	0,00	8,25	0,53	4,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	3,00	0,00	
+VariableAssignmentFailTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/VariableAssignmentFailTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.variableAssignmentFailTest	0,00	8,25	0,53	4,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	3,00	0,00	
+VariableAssignmentFailTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/VariableAssignmentFailTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.variableAssignmentFailTest	0,00	8,25	0,53	4,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	3,00	0,00	
+VariableAssignmentFailTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/VariableAssignmentFailTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.variableAssignmentFailTest	0,00	8,25	0,53	4,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	3,00	0,00	
+VariableAssignmentFailTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/VariableAssignmentFailTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.variableAssignmentFailTest	0,00	8,25	0,53	4,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	3,00	0,00	
+InitialTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InitialTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.initialTest	0,00	6,75	0,46	2,75	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+InitialTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InitialTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.initialTest	0,00	6,75	0,46	2,75	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+InitialTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InitialTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.initialTest	0,00	6,75	0,46	2,75	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+InitialTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InitialTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.initialTest	0,00	6,75	0,46	2,75	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+InitialTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InitialTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.initialTest	0,00	6,75	0,46	2,75	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+InitialTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InitialTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.initialTest	0,00	6,75	0,46	2,75	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+InitialTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InitialTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.initialTest	0,00	6,75	0,46	2,75	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+InitialTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InitialTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.initialTest	0,00	6,75	0,46	2,75	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+InitialTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InitialTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.initialTest	0,00	6,75	0,46	2,75	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+InitialTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InitialTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.initialTest	0,00	6,75	0,46	2,75	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+RefToCompoundInSequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefToCompoundInSequenceTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refToCompoundInSequenceTest	0,00	10,25	0,31	1,25	0,00	0,00	0,00	6,00	6,00	4,00	6,00	6,00	1,50	9,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+RefToCompoundInSequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefToCompoundInSequenceTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refToCompoundInSequenceTest	0,00	10,25	0,31	1,25	0,00	0,00	0,00	6,00	6,00	4,00	6,00	6,00	1,50	9,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+RefToCompoundInSequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefToCompoundInSequenceTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refToCompoundInSequenceTest	0,00	10,25	0,31	1,25	0,00	0,00	0,00	6,00	6,00	4,00	6,00	6,00	1,50	9,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+RefToCompoundInSequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefToCompoundInSequenceTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refToCompoundInSequenceTest	0,00	10,25	0,31	1,25	0,00	0,00	0,00	6,00	6,00	4,00	6,00	6,00	1,50	9,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+RefToCompoundInSequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefToCompoundInSequenceTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refToCompoundInSequenceTest	0,00	10,25	0,31	1,25	0,00	0,00	0,00	6,00	6,00	4,00	6,00	6,00	1,50	9,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+RefToCompoundInSequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefToCompoundInSequenceTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refToCompoundInSequenceTest	0,00	10,25	0,31	1,25	0,00	0,00	0,00	6,00	6,00	4,00	6,00	6,00	1,50	9,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+RefToCompoundInSequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefToCompoundInSequenceTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refToCompoundInSequenceTest	0,00	10,25	0,31	1,25	0,00	0,00	0,00	6,00	6,00	4,00	6,00	6,00	1,50	9,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+RefToCompoundInSequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefToCompoundInSequenceTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refToCompoundInSequenceTest	0,00	10,25	0,31	1,25	0,00	0,00	0,00	6,00	6,00	4,00	6,00	6,00	1,50	9,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+RefToCompoundInSequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefToCompoundInSequenceTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refToCompoundInSequenceTest	0,00	10,25	0,31	1,25	0,00	0,00	0,00	6,00	6,00	4,00	6,00	6,00	1,50	9,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+RefToCompoundInSequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefToCompoundInSequenceTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refToCompoundInSequenceTest	0,00	10,25	0,31	1,25	0,00	0,00	0,00	6,00	6,00	4,00	6,00	6,00	1,50	9,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+IsDefinedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedTest	0,00	22,75	0,25	6,75	0,00	4,00	4,00	12,00	12,00	16,00	16,00	16,00	1,00	16,00	27,00	0,00	0,00	10,00	0,00	10,00	0,00	27,00	0,00	16,00	0,00	
+IsDefinedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedTest	0,00	22,75	0,25	6,75	0,00	4,00	4,00	12,00	12,00	16,00	16,00	16,00	1,00	16,00	27,00	0,00	0,00	10,00	0,00	10,00	0,00	27,00	0,00	16,00	0,00	
+IsDefinedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedTest	0,00	22,75	0,25	6,75	0,00	4,00	4,00	12,00	12,00	16,00	16,00	16,00	1,00	16,00	27,00	0,00	0,00	10,00	0,00	10,00	0,00	27,00	0,00	16,00	0,00	
+IsDefinedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedTest	0,00	22,75	0,25	6,75	0,00	4,00	4,00	12,00	12,00	16,00	16,00	16,00	1,00	16,00	27,00	0,00	0,00	10,00	0,00	10,00	0,00	27,00	0,00	16,00	0,00	
+IsDefinedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedTest	0,00	22,75	0,25	6,75	0,00	4,00	4,00	12,00	12,00	16,00	16,00	16,00	1,00	16,00	27,00	0,00	0,00	10,00	0,00	10,00	0,00	27,00	0,00	16,00	0,00	
+IsDefinedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedTest	0,00	22,75	0,25	6,75	0,00	4,00	4,00	12,00	12,00	16,00	16,00	16,00	1,00	16,00	27,00	0,00	0,00	10,00	0,00	10,00	0,00	27,00	0,00	16,00	0,00	
+IsDefinedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedTest	0,00	22,75	0,25	6,75	0,00	4,00	4,00	12,00	12,00	16,00	16,00	16,00	1,00	16,00	27,00	0,00	0,00	10,00	0,00	10,00	0,00	27,00	0,00	16,00	0,00	
+IsDefinedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedTest	0,00	22,75	0,25	6,75	0,00	4,00	4,00	12,00	12,00	16,00	16,00	16,00	1,00	16,00	27,00	0,00	0,00	10,00	0,00	10,00	0,00	27,00	0,00	16,00	0,00	
+IsDefinedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedTest	0,00	22,75	0,25	6,75	0,00	4,00	4,00	12,00	12,00	16,00	16,00	16,00	1,00	16,00	27,00	0,00	0,00	10,00	0,00	10,00	0,00	27,00	0,00	16,00	0,00	
+IsDefinedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedTest	0,00	22,75	0,25	6,75	0,00	4,00	4,00	12,00	12,00	16,00	16,00	16,00	1,00	16,00	27,00	0,00	0,00	10,00	0,00	10,00	0,00	27,00	0,00	16,00	0,00	
+IsDefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedCompoundTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedCompoundTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+IsDefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedCompoundTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedCompoundTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+IsDefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedCompoundTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedCompoundTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+IsDefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedCompoundTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedCompoundTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+IsDefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedCompoundTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedCompoundTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+IsDefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedCompoundTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedCompoundTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+IsDefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedCompoundTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedCompoundTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+IsDefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedCompoundTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedCompoundTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+IsDefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedCompoundTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedCompoundTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+IsDefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedCompoundTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedCompoundTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+internalConstraintInheritedInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedInCompoundTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedInCompoundTest	0,00	3,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	2,00	0,00	
+internalConstraintInheritedInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedInCompoundTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedInCompoundTest	0,00	3,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	2,00	0,00	
+internalConstraintInheritedInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedInCompoundTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedInCompoundTest	0,00	3,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	2,00	0,00	
+internalConstraintInheritedInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedInCompoundTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedInCompoundTest	0,00	3,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	2,00	0,00	
+internalConstraintInheritedInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedInCompoundTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedInCompoundTest	0,00	3,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	2,00	0,00	
+internalConstraintInheritedInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedInCompoundTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedInCompoundTest	0,00	3,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	2,00	0,00	
+internalConstraintInheritedInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedInCompoundTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedInCompoundTest	0,00	3,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	2,00	0,00	
+internalConstraintInheritedInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedInCompoundTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedInCompoundTest	0,00	3,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	2,00	0,00	
+internalConstraintInheritedInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedInCompoundTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedInCompoundTest	0,00	3,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	2,00	0,00	
+internalConstraintInheritedInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedInCompoundTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedInCompoundTest	0,00	3,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	2,00	0,00	
+internalConstraintStringPaternTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintStringPaternTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintStringPaternTest	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+internalConstraintStringPaternTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintStringPaternTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintStringPaternTest	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+internalConstraintStringPaternTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintStringPaternTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintStringPaternTest	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+internalConstraintStringPaternTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintStringPaternTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintStringPaternTest	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+internalConstraintStringPaternTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintStringPaternTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintStringPaternTest	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+internalConstraintStringPaternTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintStringPaternTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintStringPaternTest	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+internalConstraintStringPaternTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintStringPaternTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintStringPaternTest	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+internalConstraintStringPaternTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintStringPaternTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintStringPaternTest	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+internalConstraintStringPaternTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintStringPaternTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintStringPaternTest	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+internalConstraintStringPaternTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintStringPaternTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintStringPaternTest	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+FreezeImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeImportTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeImportTest	0,00	5,25	0,56	2,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	1,00	0,00	0,00	5,00	0,00	4,00	0,00	
+FreezeImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeImportTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeImportTest	0,00	5,25	0,56	2,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	1,00	0,00	0,00	5,00	0,00	4,00	0,00	
+FreezeImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeImportTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeImportTest	0,00	5,25	0,56	2,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	1,00	0,00	0,00	5,00	0,00	4,00	0,00	
+FreezeImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeImportTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeImportTest	0,00	5,25	0,56	2,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	1,00	0,00	0,00	5,00	0,00	4,00	0,00	
+FreezeImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeImportTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeImportTest	0,00	5,25	0,56	2,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	1,00	0,00	0,00	5,00	0,00	4,00	0,00	
+FreezeImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeImportTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeImportTest	0,00	5,25	0,56	2,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	1,00	0,00	0,00	5,00	0,00	4,00	0,00	
+FreezeImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeImportTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeImportTest	0,00	5,25	0,56	2,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	1,00	0,00	0,00	5,00	0,00	4,00	0,00	
+FreezeImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeImportTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeImportTest	0,00	5,25	0,56	2,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	1,00	0,00	0,00	5,00	0,00	4,00	0,00	
+FreezeImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeImportTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeImportTest	0,00	5,25	0,56	2,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	1,00	0,00	0,00	5,00	0,00	4,00	0,00	
+FreezeImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeImportTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeImportTest	0,00	5,25	0,56	2,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	1,00	0,00	0,00	5,00	0,00	4,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.1.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.1.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.1.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.1.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.1.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.1.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.1.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.1.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.1.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.1.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.2.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.2.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.2.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.2.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.2.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.2.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.2.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.2.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.2.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.2.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+NullSize	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/NullSize.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testNullSize	0,00	3,00	0,50	1,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+NullSize	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/NullSize.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testNullSize	0,00	3,00	0,50	1,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+NullSize	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/NullSize.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testNullSize	0,00	3,00	0,50	1,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+NullSize	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/NullSize.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testNullSize	0,00	3,00	0,50	1,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+NullSize	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/NullSize.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testNullSize	0,00	3,00	0,50	1,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+NullSize	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/NullSize.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testNullSize	0,00	3,00	0,50	1,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+NullSize	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/NullSize.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testNullSize	0,00	3,00	0,50	1,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+NullSize	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/NullSize.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testNullSize	0,00	3,00	0,50	1,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+NullSize	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/NullSize.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testNullSize	0,00	3,00	0,50	1,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+NullSize	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/NullSize.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testNullSize	0,00	3,00	0,50	1,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+PropagationSyntax1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/PropagationSyntax1.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testPropagationSyntax	0,00	5,00	1,00	3,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+PropagationSyntax1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/PropagationSyntax1.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testPropagationSyntax	0,00	5,00	1,00	3,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+PropagationSyntax1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/PropagationSyntax1.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testPropagationSyntax	0,00	5,00	1,00	3,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+PropagationSyntax1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/PropagationSyntax1.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testPropagationSyntax	0,00	5,00	1,00	3,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+PropagationSyntax1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/PropagationSyntax1.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testPropagationSyntax	0,00	5,00	1,00	3,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+PropagationSyntax1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/PropagationSyntax1.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testPropagationSyntax	0,00	5,00	1,00	3,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+PropagationSyntax1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/PropagationSyntax1.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testPropagationSyntax	0,00	5,00	1,00	3,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+PropagationSyntax1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/PropagationSyntax1.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testPropagationSyntax	0,00	5,00	1,00	3,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+PropagationSyntax1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/PropagationSyntax1.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testPropagationSyntax	0,00	5,00	1,00	3,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+PropagationSyntax1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/PropagationSyntax1.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testPropagationSyntax	0,00	5,00	1,00	3,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+UndefinedVariableConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariableConstraints.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariableConstraints	0,00	6,00	0,50	5,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	1,00	0,00	
+UndefinedVariableConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariableConstraints.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariableConstraints	0,00	6,00	0,50	5,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	1,00	0,00	
+UndefinedVariableConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariableConstraints.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariableConstraints	0,00	6,00	0,50	5,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	1,00	0,00	
+UndefinedVariableConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariableConstraints.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariableConstraints	0,00	6,00	0,50	5,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	1,00	0,00	
+UndefinedVariableConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariableConstraints.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariableConstraints	0,00	6,00	0,50	5,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	1,00	0,00	
+UndefinedVariableConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariableConstraints.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariableConstraints	0,00	6,00	0,50	5,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	1,00	0,00	
+UndefinedVariableConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariableConstraints.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariableConstraints	0,00	6,00	0,50	5,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	1,00	0,00	
+UndefinedVariableConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariableConstraints.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariableConstraints	0,00	6,00	0,50	5,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	1,00	0,00	
+UndefinedVariableConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariableConstraints.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariableConstraints	0,00	6,00	0,50	5,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	1,00	0,00	
+UndefinedVariableConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariableConstraints.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariableConstraints	0,00	6,00	0,50	5,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	1,00	0,00	
+ConstraintDefault1Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.1-fail.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault1Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.1-fail.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault1Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.1-fail.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault1Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.1-fail.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault1Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.1-fail.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault1Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.1-fail.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault1Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.1-fail.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault1Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.1-fail.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault1Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.1-fail.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault1Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.1-fail.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault2Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.2-fail.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	1,00	0,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault2Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.2-fail.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	1,00	0,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault2Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.2-fail.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	1,00	0,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault2Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.2-fail.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	1,00	0,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault2Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.2-fail.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	1,00	0,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault2Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.2-fail.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	1,00	0,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault2Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.2-fail.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	1,00	0,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault2Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.2-fail.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	1,00	0,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault2Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.2-fail.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	1,00	0,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault2Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.2-fail.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	1,00	0,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault1		REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault1		REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault1		REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault1		REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault1		REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault1		REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault1		REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault1		REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault1		REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault1		REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault2		REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault2		REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault2		REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault2		REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault2		REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault2		REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault2		REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault2		REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault2		REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault2		REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+UndefinedIf	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedIf.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testIfWithUndefinedValues	0,00	4,50	0,83	2,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+UndefinedIf	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedIf.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testIfWithUndefinedValues	0,00	4,50	0,83	2,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+UndefinedIf	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedIf.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testIfWithUndefinedValues	0,00	4,50	0,83	2,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+UndefinedIf	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedIf.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testIfWithUndefinedValues	0,00	4,50	0,83	2,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+UndefinedIf	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedIf.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testIfWithUndefinedValues	0,00	4,50	0,83	2,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+UndefinedIf	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedIf.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testIfWithUndefinedValues	0,00	4,50	0,83	2,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+UndefinedIf	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedIf.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testIfWithUndefinedValues	0,00	4,50	0,83	2,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+UndefinedIf	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedIf.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testIfWithUndefinedValues	0,00	4,50	0,83	2,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+UndefinedIf	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedIf.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testIfWithUndefinedValues	0,00	4,50	0,83	2,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+UndefinedIf	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedIf.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testIfWithUndefinedValues	0,00	4,50	0,83	2,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+BooleanImplies	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanImplies.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanImplies	0,00	3,25	0,42	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImplies	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanImplies.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanImplies	0,00	3,25	0,42	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImplies	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanImplies.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanImplies	0,00	3,25	0,42	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImplies	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanImplies.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanImplies	0,00	3,25	0,42	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImplies	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanImplies.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanImplies	0,00	3,25	0,42	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImplies	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanImplies.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanImplies	0,00	3,25	0,42	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImplies	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanImplies.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanImplies	0,00	3,25	0,42	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImplies	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanImplies.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanImplies	0,00	3,25	0,42	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImplies	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanImplies.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanImplies	0,00	3,25	0,42	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImplies	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanImplies.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanImplies	0,00	3,25	0,42	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+OutOfBoundsIndex	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/OutOfBoundsIndex.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testOutOfBoundsIndex	0,00	3,25	0,63	1,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+OutOfBoundsIndex	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/OutOfBoundsIndex.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testOutOfBoundsIndex	0,00	3,25	0,63	1,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+OutOfBoundsIndex	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/OutOfBoundsIndex.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testOutOfBoundsIndex	0,00	3,25	0,63	1,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+OutOfBoundsIndex	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/OutOfBoundsIndex.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testOutOfBoundsIndex	0,00	3,25	0,63	1,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+OutOfBoundsIndex	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/OutOfBoundsIndex.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testOutOfBoundsIndex	0,00	3,25	0,63	1,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+OutOfBoundsIndex	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/OutOfBoundsIndex.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testOutOfBoundsIndex	0,00	3,25	0,63	1,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+OutOfBoundsIndex	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/OutOfBoundsIndex.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testOutOfBoundsIndex	0,00	3,25	0,63	1,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	15,00	0,00	0,00	0,00	0,00	15,00	3,00	0,00	1,00	15,00	
+OutOfBoundsIndex	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/OutOfBoundsIndex.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testOutOfBoundsIndex	0,00	3,25	0,63	1,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+OutOfBoundsIndex	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/OutOfBoundsIndex.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testOutOfBoundsIndex	0,00	3,25	0,63	1,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+OutOfBoundsIndex	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/OutOfBoundsIndex.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testOutOfBoundsIndex	0,00	3,25	0,63	1,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+CompoundRefineConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundRefineConstraints.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundRefineConstraints	0,00	5,00	0,50	1,00	1,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundRefineConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundRefineConstraints.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundRefineConstraints	0,00	5,00	0,50	1,00	1,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundRefineConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundRefineConstraints.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundRefineConstraints	0,00	5,00	0,50	1,00	1,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundRefineConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundRefineConstraints.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundRefineConstraints	0,00	5,00	0,50	1,00	1,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundRefineConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundRefineConstraints.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundRefineConstraints	0,00	5,00	0,50	1,00	1,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundRefineConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundRefineConstraints.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundRefineConstraints	0,00	5,00	0,50	1,00	1,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundRefineConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundRefineConstraints.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundRefineConstraints	0,00	5,00	0,50	1,00	1,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundRefineConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundRefineConstraints.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundRefineConstraints	0,00	5,00	0,50	1,00	1,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundRefineConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundRefineConstraints.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundRefineConstraints	0,00	5,00	0,50	1,00	1,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundRefineConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundRefineConstraints.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundRefineConstraints	0,00	5,00	0,50	1,00	1,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+ConstantInCustomOperation	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstantInCustomOperation.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstantInCustomOperation	0,00	0,75	0,38	0,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	15,00	0,00	0,00	0,00	0,00	15,00	1,00	0,00	0,00	15,00	
+ConstantInCustomOperation	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstantInCustomOperation.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstantInCustomOperation	0,00	0,75	0,38	0,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+ConstantInCustomOperation	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstantInCustomOperation.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstantInCustomOperation	0,00	0,75	0,38	0,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+ConstantInCustomOperation	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstantInCustomOperation.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstantInCustomOperation	0,00	0,75	0,38	0,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+ConstantInCustomOperation	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstantInCustomOperation.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstantInCustomOperation	0,00	0,75	0,38	0,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+ConstantInCustomOperation	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstantInCustomOperation.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstantInCustomOperation	0,00	0,75	0,38	0,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+ConstantInCustomOperation	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstantInCustomOperation.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstantInCustomOperation	0,00	0,75	0,38	0,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+ConstantInCustomOperation	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstantInCustomOperation.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstantInCustomOperation	0,00	0,75	0,38	0,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+ConstantInCustomOperation	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstantInCustomOperation.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstantInCustomOperation	0,00	0,75	0,38	0,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+ConstantInCustomOperation	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstantInCustomOperation.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstantInCustomOperation	0,00	0,75	0,38	0,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+ConstraintEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintEval.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintEvaluation	0,00	3,25	0,63	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintEval.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintEvaluation	0,00	3,25	0,63	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintEval.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintEvaluation	0,00	3,25	0,63	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintEval.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintEvaluation	0,00	3,25	0,63	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintEval.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintEvaluation	0,00	3,25	0,63	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintEval.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintEvaluation	0,00	3,25	0,63	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintEval.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintEvaluation	0,00	3,25	0,63	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintEval.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintEvaluation	0,00	3,25	0,63	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintEval.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintEvaluation	0,00	3,25	0,63	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintEval.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintEvaluation	0,00	3,25	0,63	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+SetAndSequenceTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SetAndSequenceTypedef.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	0,00	2,00	0,00	12,00	0,00	4,00	0,00	
+SetAndSequenceTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SetAndSequenceTypedef.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	0,00	2,00	0,00	12,00	0,00	4,00	0,00	
+SetAndSequenceTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SetAndSequenceTypedef.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	0,00	2,00	0,00	12,00	0,00	4,00	0,00	
+SetAndSequenceTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SetAndSequenceTypedef.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	0,00	2,00	0,00	12,00	0,00	4,00	0,00	
+SetAndSequenceTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SetAndSequenceTypedef.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	0,00	2,00	0,00	12,00	0,00	4,00	0,00	
+SetAndSequenceTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SetAndSequenceTypedef.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	0,00	2,00	0,00	12,00	0,00	4,00	0,00	
+SetAndSequenceTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SetAndSequenceTypedef.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	0,00	2,00	0,00	12,00	0,00	4,00	0,00	
+SetAndSequenceTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SetAndSequenceTypedef.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	0,00	2,00	0,00	12,00	0,00	4,00	0,00	
+SetAndSequenceTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SetAndSequenceTypedef.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	0,00	2,00	0,00	12,00	0,00	4,00	0,00	
+SetAndSequenceTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SetAndSequenceTypedef.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	0,00	2,00	0,00	12,00	0,00	4,00	0,00	
+SequenceTypedefWith	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SequenceTypedefWith.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SequenceTypedefWith	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SequenceTypedefWith.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SequenceTypedefWith	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SequenceTypedefWith.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SequenceTypedefWith	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SequenceTypedefWith.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SequenceTypedefWith	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SequenceTypedefWith.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SequenceTypedefWith	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SequenceTypedefWith.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SequenceTypedefWith	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SequenceTypedefWith.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SequenceTypedefWith	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SequenceTypedefWith.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SequenceTypedefWith	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SequenceTypedefWith.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SequenceTypedefWith	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SequenceTypedefWith.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.1.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	5,00	1,50	3,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.1.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	5,00	1,50	3,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.1.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	5,00	1,50	3,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.1.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	5,00	1,50	3,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.1.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	5,00	1,50	3,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.1.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	5,00	1,50	3,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.1.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	5,00	1,50	3,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.1.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	5,00	1,50	3,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.1.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	5,00	1,50	3,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.1.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	5,00	1,50	3,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.2.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	7,00	1,50	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,00	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.2.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	7,00	1,50	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,00	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.2.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	7,00	1,50	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,00	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.2.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	7,00	1,50	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,00	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.2.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	7,00	1,50	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,00	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.2.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	7,00	1,50	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,00	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.2.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	7,00	1,50	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,00	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.2.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	7,00	1,50	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,00	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.2.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	7,00	1,50	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,00	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.2.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	7,00	1,50	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,00	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+TypedefConstraintSequence	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/TypedefConstraintSequence.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testTypedefConstraintsInSequences	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+TypedefConstraintSequence	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/TypedefConstraintSequence.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testTypedefConstraintsInSequences	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+TypedefConstraintSequence	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/TypedefConstraintSequence.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testTypedefConstraintsInSequences	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+TypedefConstraintSequence	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/TypedefConstraintSequence.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testTypedefConstraintsInSequences	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+TypedefConstraintSequence	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/TypedefConstraintSequence.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testTypedefConstraintsInSequences	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+TypedefConstraintSequence	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/TypedefConstraintSequence.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testTypedefConstraintsInSequences	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+TypedefConstraintSequence	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/TypedefConstraintSequence.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testTypedefConstraintsInSequences	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+TypedefConstraintSequence	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/TypedefConstraintSequence.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testTypedefConstraintsInSequences	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+TypedefConstraintSequence	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/TypedefConstraintSequence.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testTypedefConstraintsInSequences	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+TypedefConstraintSequence	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/TypedefConstraintSequence.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testTypedefConstraintsInSequences	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+UndefinedVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariables	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+UndefinedVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariables	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+UndefinedVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariables	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+UndefinedVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariables	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+UndefinedVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariables	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+UndefinedVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariables	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+UndefinedVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariables	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+UndefinedVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariables	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+UndefinedVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariables	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+UndefinedVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariables	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+test		REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+test		REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+test		REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+test		REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+test		REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+test		REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+test		REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+test		REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+test		REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+test		REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+test		REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+test		REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+test		REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+test		REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+test		REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+test		REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+test		REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+test		REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+test		REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+test		REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+BooleanIplicationTest		REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CodedTests.testBooleanIplication	0,00	3,00	1,00	1,00	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+BooleanIplicationTest		REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CodedTests.testBooleanIplication	0,00	3,00	1,00	1,00	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	2,00	0,00	
+BooleanIplicationTest		REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CodedTests.testBooleanIplication	0,00	3,00	1,00	1,00	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	2,00	0,00	
+BooleanIplicationTest		REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CodedTests.testBooleanIplication	0,00	3,00	1,00	1,00	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	2,00	0,00	
+BooleanIplicationTest		REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CodedTests.testBooleanIplication	0,00	3,00	1,00	1,00	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	2,00	0,00	
+BooleanIplicationTest		REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CodedTests.testBooleanIplication	0,00	3,00	1,00	1,00	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	2,00	0,00	
+BooleanIplicationTest		REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CodedTests.testBooleanIplication	0,00	3,00	1,00	1,00	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	2,00	0,00	
+BooleanIplicationTest		REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CodedTests.testBooleanIplication	0,00	3,00	1,00	1,00	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	2,00	0,00	
+BooleanIplicationTest		REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CodedTests.testBooleanIplication	0,00	3,00	1,00	1,00	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	2,00	0,00	
+BooleanIplicationTest		REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CodedTests.testBooleanIplication	0,00	3,00	1,00	1,00	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	2,00	0,00	
+BooleanDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanDefaultsTest	0,00	6,00	0,60	3,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanDefaultsTest	0,00	6,00	0,60	3,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanDefaultsTest	0,00	6,00	0,60	3,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanDefaultsTest	0,00	6,00	0,60	3,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanDefaultsTest	0,00	6,00	0,60	3,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanDefaultsTest	0,00	6,00	0,60	3,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanDefaultsTest	0,00	6,00	0,60	3,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanDefaultsTest	0,00	6,00	0,60	3,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanDefaultsTest	0,00	6,00	0,60	3,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanDefaultsTest	0,00	6,00	0,60	3,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanRefAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+BooleanRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanRefAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+BooleanRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanRefAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+BooleanRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanRefAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+BooleanRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanRefAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+BooleanRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanRefAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+BooleanRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanRefAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+BooleanRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanRefAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+BooleanRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanRefAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+BooleanRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanRefAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAssignTest	0,00	6,50	0,70	3,50	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAssignTest	0,00	6,50	0,70	3,50	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAssignTest	0,00	6,50	0,70	3,50	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAssignTest	0,00	6,50	0,70	3,50	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAssignTest	0,00	6,50	0,70	3,50	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAssignTest	0,00	6,50	0,70	3,50	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAssignTest	0,00	6,50	0,70	3,50	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAssignTest	0,00	6,50	0,70	3,50	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAssignTest	0,00	6,50	0,70	3,50	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAssignTest	0,00	6,50	0,70	3,50	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionAssignTest	0,00	18,75	2,75	13,75	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionAssignTest	0,00	18,75	2,75	13,75	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionAssignTest	0,00	18,75	2,75	13,75	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionAssignTest	0,00	18,75	2,75	13,75	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionAssignTest	0,00	18,75	2,75	13,75	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionAssignTest	0,00	18,75	2,75	13,75	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionAssignTest	0,00	18,75	2,75	13,75	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionAssignTest	0,00	18,75	2,75	13,75	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionAssignTest	0,00	18,75	2,75	13,75	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionAssignTest	0,00	18,75	2,75	13,75	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundDefaultsTest	0,00	5,75	0,25	0,75	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+BooleanInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundDefaultsTest	0,00	5,75	0,25	0,75	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+BooleanInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundDefaultsTest	0,00	5,75	0,25	0,75	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+BooleanInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundDefaultsTest	0,00	5,75	0,25	0,75	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+BooleanInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundDefaultsTest	0,00	5,75	0,25	0,75	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+BooleanInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundDefaultsTest	0,00	5,75	0,25	0,75	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+BooleanInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundDefaultsTest	0,00	5,75	0,25	0,75	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+BooleanInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundDefaultsTest	0,00	5,75	0,25	0,75	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+BooleanInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundDefaultsTest	0,00	5,75	0,25	0,75	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+BooleanInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundDefaultsTest	0,00	5,75	0,25	0,75	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+BooleanInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionDefaultsTest	0,00	18,25	2,65	13,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionDefaultsTest	0,00	18,25	2,65	13,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionDefaultsTest	0,00	18,25	2,65	13,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionDefaultsTest	0,00	18,25	2,65	13,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	16,00	5,00	16,00	4,00	16,00	
+BooleanInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionDefaultsTest	0,00	18,25	2,65	13,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionDefaultsTest	0,00	18,25	2,65	13,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionDefaultsTest	0,00	18,25	2,65	13,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionDefaultsTest	0,00	18,25	2,65	13,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionDefaultsTest	0,00	18,25	2,65	13,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionDefaultsTest	0,00	18,25	2,65	13,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+CarExample	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/CarExample.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.carExampleTest	0,00	7,25	0,54	3,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	2,00	1,00	1,00	0,00	8,00	0,00	3,00	0,00	
+CarExample	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/CarExample.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.carExampleTest	0,00	7,25	0,54	3,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	2,00	1,00	1,00	0,00	8,00	0,00	3,00	0,00	
+CarExample	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/CarExample.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.carExampleTest	0,00	7,25	0,54	3,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	2,00	1,00	1,00	0,00	8,00	0,00	3,00	0,00	
+CarExample	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/CarExample.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.carExampleTest	0,00	7,25	0,54	3,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	2,00	1,00	1,00	0,00	8,00	0,00	3,00	0,00	
+CarExample	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/CarExample.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.carExampleTest	0,00	7,25	0,54	3,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	2,00	1,00	1,00	0,00	8,00	0,00	3,00	0,00	
+CarExample	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/CarExample.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.carExampleTest	0,00	7,25	0,54	3,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	2,00	1,00	1,00	0,00	8,00	0,00	3,00	0,00	
+CarExample	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/CarExample.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.carExampleTest	0,00	7,25	0,54	3,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	2,00	1,00	1,00	0,00	8,00	0,00	3,00	0,00	
+CarExample	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/CarExample.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.carExampleTest	0,00	7,25	0,54	3,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	2,00	1,00	1,00	0,00	8,00	0,00	3,00	0,00	
+CarExample	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/CarExample.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.carExampleTest	0,00	7,25	0,54	3,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	2,00	1,00	1,00	0,00	8,00	0,00	3,00	0,00	
+CarExample	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/CarExample.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.carExampleTest	0,00	7,25	0,54	3,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	2,00	1,00	1,00	0,00	8,00	0,00	3,00	0,00	
+BooleanImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanImpliesTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanImpliesTest	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanImpliesTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanImpliesTest	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanImpliesTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanImpliesTest	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanImpliesTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanImpliesTest	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanImpliesTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanImpliesTest	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanImpliesTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanImpliesTest	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanImpliesTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanImpliesTest	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanImpliesTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanImpliesTest	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanImpliesTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanImpliesTest	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanImpliesTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanImpliesTest	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAnnotationTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+BooleanAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAnnotationTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+BooleanAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAnnotationTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+BooleanAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAnnotationTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	15,00	0,00	10,00	0,00	10,00	15,00	33,00	0,00	19,00	15,00	
+BooleanAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAnnotationTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+BooleanAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAnnotationTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+BooleanAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAnnotationTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+BooleanAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAnnotationTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+BooleanAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAnnotationTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+BooleanAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAnnotationTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+BooleanInCompoundImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundImpliesTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundImpliesTest	0,00	4,75	0,25	0,75	0,00	2,00	2,00	1,00	1,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+BooleanInCompoundImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundImpliesTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundImpliesTest	0,00	4,75	0,25	0,75	0,00	2,00	2,00	1,00	1,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+BooleanInCompoundImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundImpliesTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundImpliesTest	0,00	4,75	0,25	0,75	0,00	2,00	2,00	1,00	1,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+BooleanInCompoundImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundImpliesTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundImpliesTest	0,00	4,75	0,25	0,75	0,00	2,00	2,00	1,00	1,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+BooleanInCompoundImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundImpliesTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundImpliesTest	0,00	4,75	0,25	0,75	0,00	2,00	2,00	1,00	1,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+BooleanInCompoundImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundImpliesTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundImpliesTest	0,00	4,75	0,25	0,75	0,00	2,00	2,00	1,00	1,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+BooleanInCompoundImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundImpliesTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundImpliesTest	0,00	4,75	0,25	0,75	0,00	2,00	2,00	1,00	1,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+BooleanInCompoundImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundImpliesTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundImpliesTest	0,00	4,75	0,25	0,75	0,00	2,00	2,00	1,00	1,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+BooleanInCompoundImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundImpliesTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundImpliesTest	0,00	4,75	0,25	0,75	0,00	2,00	2,00	1,00	1,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+BooleanInCompoundImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundImpliesTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundImpliesTest	0,00	4,75	0,25	0,75	0,00	2,00	2,00	1,00	1,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+RealRefAssignTest		REASONING	1	net.ssehub.easy.reasoning.core.reasoner.RealTests.testConstraintDefaults	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealRefAssignTest		REASONING	2	net.ssehub.easy.reasoning.core.reasoner.RealTests.testConstraintDefaults	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealRefAssignTest		REASONING	3	net.ssehub.easy.reasoning.core.reasoner.RealTests.testConstraintDefaults	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealRefAssignTest		REASONING	4	net.ssehub.easy.reasoning.core.reasoner.RealTests.testConstraintDefaults	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealRefAssignTest		REASONING	5	net.ssehub.easy.reasoning.core.reasoner.RealTests.testConstraintDefaults	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealRefAssignTest		REASONING	6	net.ssehub.easy.reasoning.core.reasoner.RealTests.testConstraintDefaults	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealRefAssignTest		REASONING	7	net.ssehub.easy.reasoning.core.reasoner.RealTests.testConstraintDefaults	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealRefAssignTest		REASONING	8	net.ssehub.easy.reasoning.core.reasoner.RealTests.testConstraintDefaults	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealRefAssignTest		REASONING	9	net.ssehub.easy.reasoning.core.reasoner.RealTests.testConstraintDefaults	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealRefAssignTest		REASONING	10	net.ssehub.easy.reasoning.core.reasoner.RealTests.testConstraintDefaults	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAnnotationTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+RealAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAnnotationTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+RealAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAnnotationTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+RealAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAnnotationTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+RealAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAnnotationTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+RealAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAnnotationTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+RealAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAnnotationTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+RealAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAnnotationTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+RealAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAnnotationTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+RealAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAnnotationTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.RealTests.realDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.RealTests.realDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.RealTests.realDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.RealTests.realDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.RealTests.realDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.RealTests.realDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.RealTests.realDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.RealTests.realDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.RealTests.realDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.RealTests.realDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	16,00	0,00	0,00	0,00	0,00	16,00	6,00	0,00	4,00	16,00	
+RealInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+ReferenceDerivedRealTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/ReferenceDerivedRealTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.RealTests.referenceDerivedRealTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedRealTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/ReferenceDerivedRealTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.RealTests.referenceDerivedRealTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedRealTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/ReferenceDerivedRealTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.RealTests.referenceDerivedRealTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedRealTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/ReferenceDerivedRealTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.RealTests.referenceDerivedRealTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedRealTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/ReferenceDerivedRealTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.RealTests.referenceDerivedRealTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedRealTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/ReferenceDerivedRealTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.RealTests.referenceDerivedRealTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedRealTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/ReferenceDerivedRealTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.RealTests.referenceDerivedRealTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedRealTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/ReferenceDerivedRealTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.RealTests.referenceDerivedRealTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedRealTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/ReferenceDerivedRealTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.RealTests.referenceDerivedRealTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedRealTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/ReferenceDerivedRealTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.RealTests.referenceDerivedRealTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+RealAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealRefAssignTestFail.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.RealTests.realReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	6,00	0,00	2,00	0,00	
+RealRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealRefAssignTestFail.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.RealTests.realReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	6,00	0,00	2,00	0,00	
+RealRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealRefAssignTestFail.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.RealTests.realReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	6,00	0,00	2,00	0,00	
+RealRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealRefAssignTestFail.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.RealTests.realReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	6,00	0,00	2,00	0,00	
+RealRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealRefAssignTestFail.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.RealTests.realReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	6,00	0,00	2,00	0,00	
+RealRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealRefAssignTestFail.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.RealTests.realReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	6,00	0,00	2,00	0,00	
+RealRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealRefAssignTestFail.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.RealTests.realReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	6,00	0,00	2,00	0,00	
+RealRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealRefAssignTestFail.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.RealTests.realReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	6,00	0,00	2,00	0,00	
+RealRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealRefAssignTestFail.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.RealTests.realReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	6,00	0,00	2,00	0,00	
+RealRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealRefAssignTestFail.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.RealTests.realReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	6,00	0,00	2,00	0,00	
+RealInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	16,00	6,00	16,00	4,00	16,00	
+StringInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringRefAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+StringRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringRefAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+StringRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringRefAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+StringRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringRefAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+StringRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringRefAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+StringRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringRefAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+StringRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringRefAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+StringRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringRefAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+StringRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringRefAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+StringRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringRefAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+StringAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAnnotationTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+StringAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAnnotationTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+StringAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAnnotationTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+StringAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAnnotationTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	16,00	33,00	16,00	19,00	16,00	
+StringAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAnnotationTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+StringAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAnnotationTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+StringAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAnnotationTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+StringAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAnnotationTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+StringAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAnnotationTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+StringAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAnnotationTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+StringDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+ReferenceDerivedStringTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/ReferenceDerivedStringTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StringTests.referenceDerivedStringTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedStringTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/ReferenceDerivedStringTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StringTests.referenceDerivedStringTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedStringTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/ReferenceDerivedStringTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StringTests.referenceDerivedStringTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedStringTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/ReferenceDerivedStringTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StringTests.referenceDerivedStringTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedStringTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/ReferenceDerivedStringTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StringTests.referenceDerivedStringTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedStringTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/ReferenceDerivedStringTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StringTests.referenceDerivedStringTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedStringTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/ReferenceDerivedStringTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StringTests.referenceDerivedStringTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedStringTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/ReferenceDerivedStringTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StringTests.referenceDerivedStringTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedStringTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/ReferenceDerivedStringTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StringTests.referenceDerivedStringTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedStringTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/ReferenceDerivedStringTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StringTests.referenceDerivedStringTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedIntegerTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/ReferenceDerivedIntegerTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.referenceDerivedIntegerTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedIntegerTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/ReferenceDerivedIntegerTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.referenceDerivedIntegerTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedIntegerTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/ReferenceDerivedIntegerTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.referenceDerivedIntegerTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedIntegerTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/ReferenceDerivedIntegerTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.referenceDerivedIntegerTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedIntegerTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/ReferenceDerivedIntegerTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.referenceDerivedIntegerTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedIntegerTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/ReferenceDerivedIntegerTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.referenceDerivedIntegerTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedIntegerTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/ReferenceDerivedIntegerTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.referenceDerivedIntegerTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedIntegerTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/ReferenceDerivedIntegerTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.referenceDerivedIntegerTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedIntegerTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/ReferenceDerivedIntegerTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.referenceDerivedIntegerTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedIntegerTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/ReferenceDerivedIntegerTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.referenceDerivedIntegerTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+IntegerDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerRefAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+IntegerRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerRefAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+IntegerRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerRefAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+IntegerRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerRefAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+IntegerRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerRefAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+IntegerRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerRefAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+IntegerRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerRefAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+IntegerRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerRefAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+IntegerRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerRefAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+IntegerRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerRefAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+IntegerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAnnotationTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+IntegerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAnnotationTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+IntegerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAnnotationTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+IntegerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAnnotationTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+IntegerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAnnotationTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+IntegerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAnnotationTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+IntegerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAnnotationTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+IntegerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAnnotationTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+IntegerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAnnotationTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+IntegerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAnnotationTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+VariableFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/VariableFailTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.variableFailTest	0,00	1,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+VariableFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/VariableFailTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.variableFailTest	0,00	1,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+VariableFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/VariableFailTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.variableFailTest	0,00	1,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+VariableFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/VariableFailTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.variableFailTest	0,00	1,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+VariableFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/VariableFailTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.variableFailTest	0,00	1,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+VariableFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/VariableFailTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.variableFailTest	0,00	1,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+VariableFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/VariableFailTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.variableFailTest	0,00	1,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+VariableFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/VariableFailTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.variableFailTest	0,00	1,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+VariableFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/VariableFailTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.variableFailTest	0,00	1,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+VariableFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/VariableFailTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.variableFailTest	0,00	1,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumRefAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+OrderedEnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumRefAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+OrderedEnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumRefAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+OrderedEnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumRefAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+OrderedEnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumRefAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+OrderedEnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumRefAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+OrderedEnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumRefAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+OrderedEnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumRefAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+OrderedEnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumRefAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+OrderedEnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumRefAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAnnotationTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAnnotationTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAnnotationTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAnnotationTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAnnotationTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAnnotationTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAnnotationTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAnnotationTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAnnotationTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAnnotationTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+ReferenceDerivedEnumTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/ReferenceDerivedEnumTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EnumTests.referenceDerivedEnumTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	3,00	0,00	3,00	0,00	6,00	0,00	2,00	0,00	
+ReferenceDerivedEnumTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/ReferenceDerivedEnumTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EnumTests.referenceDerivedEnumTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	3,00	0,00	3,00	0,00	6,00	0,00	2,00	0,00	
+ReferenceDerivedEnumTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/ReferenceDerivedEnumTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EnumTests.referenceDerivedEnumTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	3,00	0,00	3,00	0,00	6,00	0,00	2,00	0,00	
+ReferenceDerivedEnumTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/ReferenceDerivedEnumTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EnumTests.referenceDerivedEnumTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	3,00	0,00	3,00	0,00	6,00	0,00	2,00	0,00	
+ReferenceDerivedEnumTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/ReferenceDerivedEnumTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EnumTests.referenceDerivedEnumTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	3,00	0,00	3,00	0,00	6,00	0,00	2,00	0,00	
+ReferenceDerivedEnumTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/ReferenceDerivedEnumTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EnumTests.referenceDerivedEnumTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	3,00	0,00	3,00	0,00	6,00	0,00	2,00	0,00	
+ReferenceDerivedEnumTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/ReferenceDerivedEnumTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EnumTests.referenceDerivedEnumTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	3,00	0,00	3,00	0,00	6,00	0,00	2,00	0,00	
+ReferenceDerivedEnumTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/ReferenceDerivedEnumTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EnumTests.referenceDerivedEnumTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	3,00	0,00	3,00	0,00	6,00	0,00	2,00	0,00	
+ReferenceDerivedEnumTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/ReferenceDerivedEnumTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EnumTests.referenceDerivedEnumTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	3,00	0,00	3,00	0,00	6,00	0,00	2,00	0,00	
+ReferenceDerivedEnumTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/ReferenceDerivedEnumTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EnumTests.referenceDerivedEnumTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	3,00	0,00	3,00	0,00	6,00	0,00	2,00	0,00	
+EnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	16,00	
+EnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+OrderedEnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+EnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumRefAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+EnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumRefAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+EnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumRefAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+EnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumRefAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+EnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumRefAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+EnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumRefAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+EnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumRefAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+EnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumRefAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+EnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumRefAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+EnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumRefAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+OrderedEnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumDefaultsTest	0,00	5,00	0,50	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumDefaultsTest	0,00	5,00	0,50	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumDefaultsTest	0,00	5,00	0,50	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumDefaultsTest	0,00	5,00	0,50	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumDefaultsTest	0,00	5,00	0,50	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumDefaultsTest	0,00	5,00	0,50	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumDefaultsTest	0,00	5,00	0,50	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumDefaultsTest	0,00	5,00	0,50	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumDefaultsTest	0,00	5,00	0,50	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumDefaultsTest	0,00	5,00	0,50	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+EnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAssignTest	0,00	5,00	0,67	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAssignTest	0,00	5,00	0,67	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAssignTest	0,00	5,00	0,67	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAssignTest	0,00	5,00	0,67	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAssignTest	0,00	5,00	0,67	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAssignTest	0,00	5,00	0,67	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAssignTest	0,00	5,00	0,67	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAssignTest	0,00	5,00	0,67	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAssignTest	0,00	5,00	0,67	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAssignTest	0,00	5,00	0,67	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumDefaultsTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumDefaultsTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumDefaultsTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumDefaultsTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumDefaultsTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumDefaultsTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumDefaultsTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumDefaultsTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumDefaultsTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumDefaultsTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+OrderedEnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	16,00	6,00	16,00	4,00	16,00	
+OrderedEnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAnnotationTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderdEnumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAnnotationTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderdEnumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAnnotationTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderdEnumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAnnotationTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderdEnumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAnnotationTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderdEnumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAnnotationTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderdEnumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAnnotationTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderdEnumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAnnotationTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderdEnumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAnnotationTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderdEnumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAnnotationTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderdEnumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+OrderedEnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumAssignTest	0,00	5,50	0,63	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumAssignTest	0,00	5,50	0,63	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumAssignTest	0,00	5,50	0,63	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumAssignTest	0,00	5,50	0,63	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumAssignTest	0,00	5,50	0,63	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumAssignTest	0,00	5,50	0,63	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumAssignTest	0,00	5,50	0,63	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumAssignTest	0,00	5,50	0,63	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumAssignTest	0,00	5,50	0,63	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumAssignTest	0,00	5,50	0,63	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+CompoundAnnotationTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest2.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest2	4,00	6,25	0,25	0,25	0,00	1,00	1,00	3,00	3,00	1,00	4,00	4,00	1,50	6,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+CompoundAnnotationTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest2.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest2	4,00	6,25	0,25	0,25	0,00	1,00	1,00	3,00	3,00	1,00	4,00	4,00	1,50	6,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+CompoundAnnotationTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest2.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest2	4,00	6,25	0,25	0,25	0,00	1,00	1,00	3,00	3,00	1,00	4,00	4,00	1,50	6,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+CompoundAnnotationTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest2.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest2	4,00	6,25	0,25	0,25	0,00	1,00	1,00	3,00	3,00	1,00	4,00	4,00	1,50	6,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+CompoundAnnotationTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest2.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest2	4,00	6,25	0,25	0,25	0,00	1,00	1,00	3,00	3,00	1,00	4,00	4,00	1,50	6,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+CompoundAnnotationTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest2.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest2	4,00	6,25	0,25	0,25	0,00	1,00	1,00	3,00	3,00	1,00	4,00	4,00	1,50	6,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+CompoundAnnotationTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest2.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest2	4,00	6,25	0,25	0,25	0,00	1,00	1,00	3,00	3,00	1,00	4,00	4,00	1,50	6,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+CompoundAnnotationTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest2.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest2	4,00	6,25	0,25	0,25	0,00	1,00	1,00	3,00	3,00	1,00	4,00	4,00	1,50	6,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+CompoundAnnotationTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest2.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest2	4,00	6,25	0,25	0,25	0,00	1,00	1,00	3,00	3,00	1,00	4,00	4,00	1,50	6,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+CompoundAnnotationTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest2.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest2	4,00	6,25	0,25	0,25	0,00	1,00	1,00	3,00	3,00	1,00	4,00	4,00	1,50	6,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+changingValuesBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/changingValues/changingValuesBase.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	14,00	0,25	2,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	11,00	0,00	0,00	3,00	0,00	3,00	0,00	11,00	0,00	4,00	0,00	
+changingValuesBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/changingValues/changingValuesBase.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	14,00	0,25	2,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	11,00	0,00	0,00	3,00	0,00	3,00	0,00	11,00	0,00	4,00	0,00	
+changingValuesBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/changingValues/changingValuesBase.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	14,00	0,25	2,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	11,00	0,00	0,00	3,00	0,00	3,00	0,00	11,00	0,00	4,00	0,00	
+changingValuesBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/changingValues/changingValuesBase.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	14,00	0,25	2,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	11,00	0,00	0,00	3,00	0,00	3,00	0,00	11,00	0,00	4,00	0,00	
+changingValuesBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/changingValues/changingValuesBase.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	14,00	0,25	2,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	11,00	0,00	0,00	3,00	0,00	3,00	0,00	11,00	0,00	4,00	0,00	
+changingValuesBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/changingValues/changingValuesBase.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	14,00	0,25	2,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	11,00	0,00	0,00	3,00	0,00	3,00	0,00	11,00	0,00	4,00	0,00	
+changingValuesBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/changingValues/changingValuesBase.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	14,00	0,25	2,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	11,00	0,00	0,00	3,00	0,00	3,00	0,00	11,00	0,00	4,00	0,00	
+changingValuesBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/changingValues/changingValuesBase.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	14,00	0,25	2,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	11,00	0,00	0,00	3,00	0,00	3,00	0,00	11,00	0,00	4,00	0,00	
+changingValuesBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/changingValues/changingValuesBase.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	14,00	0,25	2,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	11,00	0,00	0,00	3,00	0,00	3,00	0,00	11,00	0,00	4,00	0,00	
+changingValuesBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/changingValues/changingValuesBase.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	14,00	0,25	2,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	11,00	0,00	0,00	3,00	0,00	3,00	0,00	11,00	0,00	4,00	0,00	
+changingValues		REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	16,00	0,33	4,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	17,00	0,00	8,00	0,00	
+changingValues		REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	16,00	0,33	4,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	17,00	0,00	8,00	0,00	
+changingValues		REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	16,00	0,33	4,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	17,00	0,00	8,00	0,00	
+changingValues		REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	16,00	0,33	4,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	17,00	0,00	8,00	0,00	
+changingValues		REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	16,00	0,33	4,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	17,00	0,00	8,00	0,00	
+changingValues		REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	16,00	0,33	4,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	15,00	0,00	0,00	0,00	0,00	0,00	15,00	17,00	15,00	8,00	15,00	
+changingValues		REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	16,00	0,33	4,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	17,00	0,00	8,00	0,00	
+changingValues		REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	16,00	0,33	4,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	17,00	0,00	8,00	0,00	
+changingValues		REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	16,00	0,33	4,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	17,00	0,00	8,00	0,00	
+changingValues		REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	16,00	0,33	4,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	17,00	0,00	8,00	0,00	
+CompoundCompoundTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest1.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest1	0,00	16,50	1,13	4,50	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	5,00	0,00	
+CompoundCompoundTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest1.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest1	0,00	16,50	1,13	4,50	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	5,00	0,00	
+CompoundCompoundTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest1.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest1	0,00	16,50	1,13	4,50	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	5,00	0,00	
+CompoundCompoundTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest1.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest1	0,00	16,50	1,13	4,50	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	5,00	0,00	
+CompoundCompoundTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest1.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest1	0,00	16,50	1,13	4,50	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	5,00	0,00	
+CompoundCompoundTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest1.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest1	0,00	16,50	1,13	4,50	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	5,00	0,00	
+CompoundCompoundTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest1.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest1	0,00	16,50	1,13	4,50	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	5,00	0,00	
+CompoundCompoundTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest1.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest1	0,00	16,50	1,13	4,50	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	5,00	0,00	
+CompoundCompoundTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest1.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest1	0,00	16,50	1,13	4,50	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	5,00	0,00	
+CompoundCompoundTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest1.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest1	0,00	16,50	1,13	4,50	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	5,00	0,00	
+CompoundCompoundTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest2.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest2	0,00	10,50	1,13	4,50	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,50	6,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	3,00	0,00	
+CompoundCompoundTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest2.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest2	0,00	10,50	1,13	4,50	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,50	6,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	3,00	0,00	
+CompoundCompoundTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest2.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest2	0,00	10,50	1,13	4,50	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,50	6,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	3,00	0,00	
+CompoundCompoundTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest2.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest2	0,00	10,50	1,13	4,50	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,50	6,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	3,00	0,00	
+CompoundCompoundTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest2.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest2	0,00	10,50	1,13	4,50	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,50	6,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	3,00	0,00	
+CompoundCompoundTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest2.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest2	0,00	10,50	1,13	4,50	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,50	6,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	3,00	0,00	
+CompoundCompoundTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest2.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest2	0,00	10,50	1,13	4,50	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,50	6,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	3,00	0,00	
+CompoundCompoundTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest2.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest2	0,00	10,50	1,13	4,50	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,50	6,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	3,00	0,00	
+CompoundCompoundTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest2.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest2	0,00	10,50	1,13	4,50	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,50	6,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	3,00	0,00	
+CompoundCompoundTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest2.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest2	0,00	10,50	1,13	4,50	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,50	6,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	3,00	0,00	
+CompoundRefAssignTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest1.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest1	0,00	12,75	0,96	6,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	7,00	0,00	0,00	2,00	2,00	0,00	0,00	9,00	0,00	3,00	0,00	
+CompoundRefAssignTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest1.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest1	0,00	12,75	0,96	6,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	7,00	0,00	0,00	2,00	2,00	0,00	0,00	9,00	0,00	3,00	0,00	
+CompoundRefAssignTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest1.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest1	0,00	12,75	0,96	6,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	7,00	0,00	0,00	2,00	2,00	0,00	0,00	9,00	0,00	3,00	0,00	
+CompoundRefAssignTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest1.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest1	0,00	12,75	0,96	6,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	7,00	0,00	0,00	2,00	2,00	0,00	0,00	9,00	0,00	3,00	0,00	
+CompoundRefAssignTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest1.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest1	0,00	12,75	0,96	6,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	7,00	0,00	0,00	2,00	2,00	0,00	0,00	9,00	0,00	3,00	0,00	
+CompoundRefAssignTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest1.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest1	0,00	12,75	0,96	6,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	7,00	0,00	0,00	2,00	2,00	0,00	0,00	9,00	0,00	3,00	0,00	
+CompoundRefAssignTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest1.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest1	0,00	12,75	0,96	6,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	7,00	0,00	0,00	2,00	2,00	0,00	0,00	9,00	0,00	3,00	0,00	
+CompoundRefAssignTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest1.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest1	0,00	12,75	0,96	6,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	7,00	0,00	0,00	2,00	2,00	0,00	0,00	9,00	0,00	3,00	0,00	
+CompoundRefAssignTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest1.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest1	0,00	12,75	0,96	6,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	7,00	0,00	0,00	2,00	2,00	0,00	0,00	9,00	0,00	3,00	0,00	
+CompoundRefAssignTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest1.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest1	0,00	12,75	0,96	6,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	7,00	0,00	0,00	2,00	2,00	0,00	0,00	9,00	0,00	3,00	0,00	
+CompoundRefAssignTest3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest3.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest3	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest3.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest3	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest3.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest3	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest3.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest3	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest3.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest3	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest3.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest3	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest3.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest3	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest3.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest3	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest3.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest3	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest3.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest3	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+ReferenceDerivedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceDerivedCompoundTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceDerivedCompoundTest	0,00	9,50	0,79	5,50	0,00	0,00	0,00	4,00	4,00	3,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	5,00	0,00	5,00	0,00	9,00	0,00	4,00	0,00	
+ReferenceDerivedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceDerivedCompoundTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceDerivedCompoundTest	0,00	9,50	0,79	5,50	0,00	0,00	0,00	4,00	4,00	3,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	5,00	0,00	5,00	0,00	9,00	0,00	4,00	0,00	
+ReferenceDerivedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceDerivedCompoundTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceDerivedCompoundTest	0,00	9,50	0,79	5,50	0,00	0,00	0,00	4,00	4,00	3,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	5,00	0,00	5,00	0,00	9,00	0,00	4,00	0,00	
+ReferenceDerivedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceDerivedCompoundTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceDerivedCompoundTest	0,00	9,50	0,79	5,50	0,00	0,00	0,00	4,00	4,00	3,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	5,00	0,00	5,00	0,00	9,00	0,00	4,00	0,00	
+ReferenceDerivedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceDerivedCompoundTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceDerivedCompoundTest	0,00	9,50	0,79	5,50	0,00	0,00	0,00	4,00	4,00	3,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	5,00	0,00	5,00	0,00	9,00	0,00	4,00	0,00	
+ReferenceDerivedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceDerivedCompoundTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceDerivedCompoundTest	0,00	9,50	0,79	5,50	0,00	0,00	0,00	4,00	4,00	3,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	5,00	0,00	5,00	0,00	9,00	0,00	4,00	0,00	
+ReferenceDerivedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceDerivedCompoundTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceDerivedCompoundTest	0,00	9,50	0,79	5,50	0,00	0,00	0,00	4,00	4,00	3,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	5,00	0,00	5,00	0,00	9,00	0,00	4,00	0,00	
+ReferenceDerivedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceDerivedCompoundTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceDerivedCompoundTest	0,00	9,50	0,79	5,50	0,00	0,00	0,00	4,00	4,00	3,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	5,00	0,00	5,00	0,00	9,00	0,00	4,00	0,00	
+ReferenceDerivedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceDerivedCompoundTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceDerivedCompoundTest	0,00	9,50	0,79	5,50	0,00	0,00	0,00	4,00	4,00	3,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	5,00	0,00	5,00	0,00	9,00	0,00	4,00	0,00	
+ReferenceDerivedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceDerivedCompoundTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceDerivedCompoundTest	0,00	9,50	0,79	5,50	0,00	0,00	0,00	4,00	4,00	3,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	5,00	0,00	5,00	0,00	9,00	0,00	4,00	0,00	
+CompoundShadowTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundShadowTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundShadowingTest	0,00	12,75	0,25	1,75	0,00	0,00	0,00	7,00	7,00	2,00	7,00	7,00	1,57	11,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	5,00	0,00	
+CompoundShadowTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundShadowTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundShadowingTest	0,00	12,75	0,25	1,75	0,00	0,00	0,00	7,00	7,00	2,00	7,00	7,00	1,57	11,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	5,00	0,00	
+CompoundShadowTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundShadowTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundShadowingTest	0,00	12,75	0,25	1,75	0,00	0,00	0,00	7,00	7,00	2,00	7,00	7,00	1,57	11,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	5,00	0,00	
+CompoundShadowTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundShadowTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundShadowingTest	0,00	12,75	0,25	1,75	0,00	0,00	0,00	7,00	7,00	2,00	7,00	7,00	1,57	11,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	5,00	0,00	
+CompoundShadowTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundShadowTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundShadowingTest	0,00	12,75	0,25	1,75	0,00	0,00	0,00	7,00	7,00	2,00	7,00	7,00	1,57	11,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	5,00	0,00	
+CompoundShadowTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundShadowTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundShadowingTest	0,00	12,75	0,25	1,75	0,00	0,00	0,00	7,00	7,00	2,00	7,00	7,00	1,57	11,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	5,00	0,00	
+CompoundShadowTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundShadowTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundShadowingTest	0,00	12,75	0,25	1,75	0,00	0,00	0,00	7,00	7,00	2,00	7,00	7,00	1,57	11,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	5,00	0,00	
+CompoundShadowTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundShadowTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundShadowingTest	0,00	12,75	0,25	1,75	0,00	0,00	0,00	7,00	7,00	2,00	7,00	7,00	1,57	11,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	5,00	0,00	
+CompoundShadowTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundShadowTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundShadowingTest	0,00	12,75	0,25	1,75	0,00	0,00	0,00	7,00	7,00	2,00	7,00	7,00	1,57	11,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	5,00	0,00	
+CompoundShadowTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundShadowTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundShadowingTest	0,00	12,75	0,25	1,75	0,00	0,00	0,00	7,00	7,00	2,00	7,00	7,00	1,57	11,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	5,00	0,00	
+CompoundContainerTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest1.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest1	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	6,00	0,00	
+CompoundContainerTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest1.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest1	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	6,00	0,00	
+CompoundContainerTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest1.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest1	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	6,00	0,00	
+CompoundContainerTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest1.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest1	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	6,00	0,00	
+CompoundContainerTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest1.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest1	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	9,00	16,00	0,00	2,00	0,00	2,00	16,00	9,00	0,00	6,00	16,00	
+CompoundContainerTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest1.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest1	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	6,00	0,00	
+CompoundContainerTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest1.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest1	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	6,00	0,00	
+CompoundContainerTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest1.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest1	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	6,00	0,00	
+CompoundContainerTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest1.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest1	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	6,00	0,00	
+CompoundContainerTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest1.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest1	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	6,00	0,00	
+CompoundContainerTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest2.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest2	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	21,00	16,00	0,00	3,00	0,00	3,00	16,00	21,00	0,00	8,00	16,00	
+CompoundContainerTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest2.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest2	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	21,00	0,00	0,00	3,00	0,00	3,00	0,00	21,00	0,00	8,00	0,00	
+CompoundContainerTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest2.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest2	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	21,00	0,00	0,00	3,00	0,00	3,00	0,00	21,00	0,00	8,00	0,00	
+CompoundContainerTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest2.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest2	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	21,00	0,00	0,00	3,00	0,00	3,00	0,00	21,00	0,00	8,00	0,00	
+CompoundContainerTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest2.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest2	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	21,00	0,00	0,00	3,00	0,00	3,00	0,00	21,00	0,00	8,00	0,00	
+CompoundContainerTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest2.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest2	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	21,00	0,00	0,00	3,00	0,00	3,00	0,00	21,00	0,00	8,00	0,00	
+CompoundContainerTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest2.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest2	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	21,00	0,00	0,00	3,00	0,00	3,00	16,00	21,00	16,00	8,00	16,00	
+CompoundContainerTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest2.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest2	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	21,00	0,00	0,00	3,00	0,00	3,00	0,00	21,00	0,00	8,00	0,00	
+CompoundContainerTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest2.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest2	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	21,00	0,00	0,00	3,00	0,00	3,00	0,00	21,00	0,00	8,00	0,00	
+CompoundContainerTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest2.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest2	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	21,00	0,00	0,00	3,00	0,00	3,00	0,00	21,00	0,00	8,00	0,00	
+DerivedCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/DerivedCompoundAnnotationTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.derivedCompoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	55,00	0,00	0,00	10,00	0,00	10,00	0,00	55,00	0,00	21,00	0,00	
+DerivedCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/DerivedCompoundAnnotationTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.derivedCompoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	55,00	0,00	0,00	10,00	0,00	10,00	0,00	55,00	0,00	21,00	0,00	
+DerivedCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/DerivedCompoundAnnotationTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.derivedCompoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	55,00	0,00	0,00	10,00	0,00	10,00	0,00	55,00	0,00	21,00	0,00	
+DerivedCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/DerivedCompoundAnnotationTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.derivedCompoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	55,00	0,00	0,00	10,00	0,00	10,00	0,00	55,00	0,00	21,00	0,00	
+DerivedCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/DerivedCompoundAnnotationTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.derivedCompoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	55,00	0,00	0,00	10,00	0,00	10,00	0,00	55,00	0,00	21,00	0,00	
+DerivedCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/DerivedCompoundAnnotationTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.derivedCompoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	55,00	0,00	0,00	10,00	0,00	10,00	16,00	55,00	16,00	21,00	16,00	
+DerivedCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/DerivedCompoundAnnotationTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.derivedCompoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	55,00	0,00	0,00	10,00	0,00	10,00	0,00	55,00	0,00	21,00	0,00	
+DerivedCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/DerivedCompoundAnnotationTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.derivedCompoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	55,00	0,00	0,00	10,00	0,00	10,00	0,00	55,00	0,00	21,00	0,00	
+DerivedCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/DerivedCompoundAnnotationTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.derivedCompoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	55,00	0,00	0,00	10,00	0,00	10,00	0,00	55,00	0,00	21,00	0,00	
+DerivedCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/DerivedCompoundAnnotationTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.derivedCompoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	55,00	0,00	0,00	10,00	0,00	10,00	16,00	55,00	16,00	21,00	16,00	
+CompoundRefAssignTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest2.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest2Fail	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest2.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest2Fail	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest2.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest2Fail	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest2.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest2Fail	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest2.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest2Fail	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest2.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest2Fail	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest2.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest2Fail	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest2.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest2Fail	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest2.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest2Fail	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest2.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest2Fail	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	44,00	0,00	0,00	10,00	0,00	10,00	0,00	44,00	0,00	20,00	0,00	
+CompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	44,00	0,00	0,00	10,00	0,00	10,00	0,00	44,00	0,00	20,00	0,00	
+CompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	44,00	0,00	0,00	10,00	0,00	10,00	0,00	44,00	0,00	20,00	0,00	
+CompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	44,00	0,00	0,00	10,00	0,00	10,00	0,00	44,00	0,00	20,00	0,00	
+CompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	44,00	0,00	0,00	10,00	0,00	10,00	0,00	44,00	0,00	20,00	0,00	
+CompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	44,00	0,00	0,00	10,00	0,00	10,00	0,00	44,00	0,00	20,00	0,00	
+CompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	44,00	0,00	0,00	10,00	0,00	10,00	0,00	44,00	0,00	20,00	0,00	
+CompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	44,00	0,00	0,00	10,00	0,00	10,00	0,00	44,00	0,00	20,00	0,00	
+CompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	44,00	0,00	0,00	10,00	0,00	10,00	0,00	44,00	0,00	20,00	0,00	
+CompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	44,00	0,00	0,00	10,00	0,00	10,00	0,00	44,00	0,00	20,00	0,00	
+ReferenceCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceCompoundAnnotationTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceCompoundAnnotationTest	13,00	41,75	1,17	25,75	0,00	2,00	2,00	11,00	11,00	10,00	13,00	13,00	1,23	16,00	37,00	0,00	0,00	10,00	0,00	10,00	0,00	37,00	0,00	20,00	0,00	
+ReferenceCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceCompoundAnnotationTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceCompoundAnnotationTest	13,00	41,75	1,17	25,75	0,00	2,00	2,00	11,00	11,00	10,00	13,00	13,00	1,23	16,00	37,00	0,00	0,00	10,00	0,00	10,00	0,00	37,00	0,00	20,00	0,00	
+ReferenceCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceCompoundAnnotationTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceCompoundAnnotationTest	13,00	41,75	1,17	25,75	0,00	2,00	2,00	11,00	11,00	10,00	13,00	13,00	1,23	16,00	37,00	0,00	0,00	10,00	0,00	10,00	0,00	37,00	0,00	20,00	0,00	
+ReferenceCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceCompoundAnnotationTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceCompoundAnnotationTest	13,00	41,75	1,17	25,75	0,00	2,00	2,00	11,00	11,00	10,00	13,00	13,00	1,23	16,00	37,00	0,00	0,00	10,00	0,00	10,00	0,00	37,00	0,00	20,00	0,00	
+ReferenceCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceCompoundAnnotationTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceCompoundAnnotationTest	13,00	41,75	1,17	25,75	0,00	2,00	2,00	11,00	11,00	10,00	13,00	13,00	1,23	16,00	37,00	0,00	0,00	10,00	0,00	10,00	0,00	37,00	0,00	20,00	0,00	
+ReferenceCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceCompoundAnnotationTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceCompoundAnnotationTest	13,00	41,75	1,17	25,75	0,00	2,00	2,00	11,00	11,00	10,00	13,00	13,00	1,23	16,00	37,00	0,00	0,00	10,00	0,00	10,00	0,00	37,00	0,00	20,00	0,00	
+ReferenceCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceCompoundAnnotationTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceCompoundAnnotationTest	13,00	41,75	1,17	25,75	0,00	2,00	2,00	11,00	11,00	10,00	13,00	13,00	1,23	16,00	37,00	0,00	0,00	10,00	0,00	10,00	0,00	37,00	0,00	20,00	0,00	
+ReferenceCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceCompoundAnnotationTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceCompoundAnnotationTest	13,00	41,75	1,17	25,75	0,00	2,00	2,00	11,00	11,00	10,00	13,00	13,00	1,23	16,00	37,00	0,00	0,00	10,00	0,00	10,00	0,00	37,00	0,00	20,00	0,00	
+ReferenceCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceCompoundAnnotationTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceCompoundAnnotationTest	13,00	41,75	1,17	25,75	0,00	2,00	2,00	11,00	11,00	10,00	13,00	13,00	1,23	16,00	37,00	0,00	0,00	10,00	0,00	10,00	0,00	37,00	0,00	20,00	0,00	
+ReferenceCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceCompoundAnnotationTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceCompoundAnnotationTest	13,00	41,75	1,17	25,75	0,00	2,00	2,00	11,00	11,00	10,00	13,00	13,00	1,23	16,00	37,00	0,00	0,00	10,00	0,00	10,00	0,00	37,00	0,00	20,00	0,00	
+Cfg		REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.slotReassignmentTest	5,00	7,25	0,25	1,25	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	5,00	0,00	
+Cfg		REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.slotReassignmentTest	5,00	7,25	0,25	1,25	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	5,00	0,00	
+Cfg		REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.slotReassignmentTest	5,00	7,25	0,25	1,25	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	5,00	0,00	
+Cfg		REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.slotReassignmentTest	5,00	7,25	0,25	1,25	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	5,00	0,00	
+Cfg		REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.slotReassignmentTest	5,00	7,25	0,25	1,25	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	5,00	0,00	
+Cfg		REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.slotReassignmentTest	5,00	7,25	0,25	1,25	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	5,00	0,00	
+Cfg		REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.slotReassignmentTest	5,00	7,25	0,25	1,25	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	5,00	0,00	
+Cfg		REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.slotReassignmentTest	5,00	7,25	0,25	1,25	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	5,00	0,00	
+Cfg		REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.slotReassignmentTest	5,00	7,25	0,25	1,25	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	5,00	0,00	
+Cfg		REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.slotReassignmentTest	5,00	7,25	0,25	1,25	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	5,00	0,00	
+CompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundConstraintTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundConstraintTest	0,00	10,00	0,67	2,00	0,00	0,00	0,00	6,00	6,00	2,00	6,00	6,00	1,33	8,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+CompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundConstraintTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundConstraintTest	0,00	10,00	0,67	2,00	0,00	0,00	0,00	6,00	6,00	2,00	6,00	6,00	1,33	8,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+CompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundConstraintTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundConstraintTest	0,00	10,00	0,67	2,00	0,00	0,00	0,00	6,00	6,00	2,00	6,00	6,00	1,33	8,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+CompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundConstraintTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundConstraintTest	0,00	10,00	0,67	2,00	0,00	0,00	0,00	6,00	6,00	2,00	6,00	6,00	1,33	8,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+CompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundConstraintTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundConstraintTest	0,00	10,00	0,67	2,00	0,00	0,00	0,00	6,00	6,00	2,00	6,00	6,00	1,33	8,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+CompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundConstraintTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundConstraintTest	0,00	10,00	0,67	2,00	0,00	0,00	0,00	6,00	6,00	2,00	6,00	6,00	1,33	8,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+CompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundConstraintTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundConstraintTest	0,00	10,00	0,67	2,00	0,00	0,00	0,00	6,00	6,00	2,00	6,00	6,00	1,33	8,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+CompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundConstraintTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundConstraintTest	0,00	10,00	0,67	2,00	0,00	0,00	0,00	6,00	6,00	2,00	6,00	6,00	1,33	8,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+CompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundConstraintTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundConstraintTest	0,00	10,00	0,67	2,00	0,00	0,00	0,00	6,00	6,00	2,00	6,00	6,00	1,33	8,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+CompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundConstraintTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundConstraintTest	0,00	10,00	0,67	2,00	0,00	0,00	0,00	6,00	6,00	2,00	6,00	6,00	1,33	8,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Unfrozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Unfrozen.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Unfrozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Unfrozen.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Unfrozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Unfrozen.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Unfrozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Unfrozen.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Unfrozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Unfrozen.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Unfrozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Unfrozen.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Unfrozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Unfrozen.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Unfrozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Unfrozen.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Unfrozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Unfrozen.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Unfrozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Unfrozen.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Frozen.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Frozen.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Frozen.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Frozen.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Frozen.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Frozen.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	15,00	0,00	1,00	0,00	1,00	15,00	10,00	0,00	6,00	15,00	
+Frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Frozen.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Frozen.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Frozen.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Frozen.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+PL_SimElevator_frozen_orig	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_orig.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTestFail	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	1,00	1,00	0,00	0,00	37,00	0,00	3,00	0,00	
+PL_SimElevator_frozen_orig	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_orig.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTestFail	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	1,00	1,00	0,00	0,00	37,00	0,00	3,00	0,00	
+PL_SimElevator_frozen_orig	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_orig.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTestFail	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	1,00	1,00	0,00	0,00	37,00	0,00	3,00	0,00	
+PL_SimElevator_frozen_orig	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_orig.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTestFail	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	1,00	1,00	0,00	0,00	37,00	0,00	3,00	0,00	
+PL_SimElevator_frozen_orig	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_orig.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTestFail	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	1,00	1,00	0,00	0,00	37,00	0,00	3,00	0,00	
+PL_SimElevator_frozen_orig	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_orig.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTestFail	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	1,00	1,00	0,00	0,00	37,00	0,00	3,00	0,00	
+PL_SimElevator_frozen_orig	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_orig.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTestFail	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	1,00	1,00	0,00	0,00	37,00	0,00	3,00	0,00	
+PL_SimElevator_frozen_orig	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_orig.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTestFail	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	1,00	1,00	0,00	0,00	37,00	0,00	3,00	0,00	
+PL_SimElevator_frozen_orig	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_orig.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTestFail	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	1,00	1,00	0,00	0,00	37,00	0,00	3,00	0,00	
+PL_SimElevator_frozen_orig	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_orig.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTestFail	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	1,00	1,00	0,00	0,00	37,00	0,00	3,00	0,00	
+PL_SimElevator_frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_0.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTest	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	39,00	0,00	6,00	0,00	
+PL_SimElevator_frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_0.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTest	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	39,00	0,00	6,00	0,00	
+PL_SimElevator_frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_0.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTest	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	39,00	0,00	6,00	0,00	
+PL_SimElevator_frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_0.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTest	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	39,00	0,00	6,00	0,00	
+PL_SimElevator_frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_0.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTest	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	39,00	0,00	6,00	0,00	
+PL_SimElevator_frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_0.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTest	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	39,00	0,00	6,00	0,00	
+PL_SimElevator_frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_0.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTest	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	39,00	0,00	6,00	0,00	
+PL_SimElevator_frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_0.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTest	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	39,00	0,00	6,00	0,00	
+PL_SimElevator_frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_0.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTest	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	39,00	0,00	6,00	0,00	
+PL_SimElevator_frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_0.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTest	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	39,00	0,00	6,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignments.ivml	REASONING	1	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignments	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignments.ivml	REASONING	2	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignments	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignments.ivml	REASONING	3	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignments	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignments.ivml	REASONING	4	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignments	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignments.ivml	REASONING	5	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignments	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignments.ivml	REASONING	6	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignments	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignments.ivml	REASONING	7	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignments	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignments.ivml	REASONING	8	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignments	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignments.ivml	REASONING	9	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignments	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignments.ivml	REASONING	10	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignments	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+TypedefCollections	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollections.ivml	REASONING	1	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollections	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+TypedefCollections	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollections.ivml	REASONING	2	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollections	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+TypedefCollections	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollections.ivml	REASONING	3	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollections	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+TypedefCollections	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollections.ivml	REASONING	4	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollections	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+TypedefCollections	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollections.ivml	REASONING	5	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollections	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+TypedefCollections	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollections.ivml	REASONING	6	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollections	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+TypedefCollections	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollections.ivml	REASONING	7	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollections	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+TypedefCollections	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollections.ivml	REASONING	8	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollections	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+TypedefCollections	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollections.ivml	REASONING	9	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollections	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+TypedefCollections	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollections.ivml	REASONING	10	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollections	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+CompoundConstraintsInCollection	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollection.ivml	REASONING	1	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollection	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+CompoundConstraintsInCollection	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollection.ivml	REASONING	2	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollection	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+CompoundConstraintsInCollection	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollection.ivml	REASONING	3	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollection	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+CompoundConstraintsInCollection	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollection.ivml	REASONING	4	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollection	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+CompoundConstraintsInCollection	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollection.ivml	REASONING	5	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollection	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+CompoundConstraintsInCollection	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollection.ivml	REASONING	6	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollection	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+CompoundConstraintsInCollection	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollection.ivml	REASONING	7	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollection	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+CompoundConstraintsInCollection	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollection.ivml	REASONING	8	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollection	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+CompoundConstraintsInCollection	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollection.ivml	REASONING	9	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollection	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+CompoundConstraintsInCollection	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollection.ivml	REASONING	10	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollection	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignmentsWithConstraintVars.ivml	REASONING	1	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignmentsWithConstraintVar	0,00	8,75	0,58	1,75	0,00	3,00	3,00	3,00	3,00	1,00	6,00	6,00	1,17	7,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	3,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignmentsWithConstraintVars.ivml	REASONING	2	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignmentsWithConstraintVar	0,00	8,75	0,58	1,75	0,00	3,00	3,00	3,00	3,00	1,00	6,00	6,00	1,17	7,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	3,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignmentsWithConstraintVars.ivml	REASONING	3	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignmentsWithConstraintVar	0,00	8,75	0,58	1,75	0,00	3,00	3,00	3,00	3,00	1,00	6,00	6,00	1,17	7,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	3,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignmentsWithConstraintVars.ivml	REASONING	4	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignmentsWithConstraintVar	0,00	8,75	0,58	1,75	0,00	3,00	3,00	3,00	3,00	1,00	6,00	6,00	1,17	7,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	3,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignmentsWithConstraintVars.ivml	REASONING	5	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignmentsWithConstraintVar	0,00	8,75	0,58	1,75	0,00	3,00	3,00	3,00	3,00	1,00	6,00	6,00	1,17	7,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	3,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignmentsWithConstraintVars.ivml	REASONING	6	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignmentsWithConstraintVar	0,00	8,75	0,58	1,75	0,00	3,00	3,00	3,00	3,00	1,00	6,00	6,00	1,17	7,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	3,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignmentsWithConstraintVars.ivml	REASONING	7	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignmentsWithConstraintVar	0,00	8,75	0,58	1,75	0,00	3,00	3,00	3,00	3,00	1,00	6,00	6,00	1,17	7,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	3,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignmentsWithConstraintVars.ivml	REASONING	8	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignmentsWithConstraintVar	0,00	8,75	0,58	1,75	0,00	3,00	3,00	3,00	3,00	1,00	6,00	6,00	1,17	7,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	3,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignmentsWithConstraintVars.ivml	REASONING	9	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignmentsWithConstraintVar	0,00	8,75	0,58	1,75	0,00	3,00	3,00	3,00	3,00	1,00	6,00	6,00	1,17	7,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	3,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignmentsWithConstraintVars.ivml	REASONING	10	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignmentsWithConstraintVar	0,00	8,75	0,58	1,75	0,00	3,00	3,00	3,00	3,00	1,00	6,00	6,00	1,17	7,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	3,00	0,00	
+TypedefCollectionsInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollectionsInCompound.ivml	REASONING	1	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollectionsInCompound	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+TypedefCollectionsInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollectionsInCompound.ivml	REASONING	2	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollectionsInCompound	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+TypedefCollectionsInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollectionsInCompound.ivml	REASONING	3	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollectionsInCompound	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+TypedefCollectionsInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollectionsInCompound.ivml	REASONING	4	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollectionsInCompound	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+TypedefCollectionsInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollectionsInCompound.ivml	REASONING	5	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollectionsInCompound	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+TypedefCollectionsInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollectionsInCompound.ivml	REASONING	6	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollectionsInCompound	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+TypedefCollectionsInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollectionsInCompound.ivml	REASONING	7	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollectionsInCompound	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+TypedefCollectionsInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollectionsInCompound.ivml	REASONING	8	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollectionsInCompound	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+TypedefCollectionsInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollectionsInCompound.ivml	REASONING	9	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollectionsInCompound	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+TypedefCollectionsInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollectionsInCompound.ivml	REASONING	10	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollectionsInCompound	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignments.ivml	REASONING	1	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignments	0,00	3,75	0,58	1,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignments.ivml	REASONING	2	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignments	0,00	3,75	0,58	1,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignments.ivml	REASONING	3	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignments	0,00	3,75	0,58	1,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignments.ivml	REASONING	4	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignments	0,00	3,75	0,58	1,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignments.ivml	REASONING	5	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignments	0,00	3,75	0,58	1,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignments.ivml	REASONING	6	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignments	0,00	3,75	0,58	1,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignments.ivml	REASONING	7	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignments	0,00	3,75	0,58	1,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	15,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignments.ivml	REASONING	8	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignments	0,00	3,75	0,58	1,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignments.ivml	REASONING	9	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignments	0,00	3,75	0,58	1,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignments.ivml	REASONING	10	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignments	0,00	3,75	0,58	1,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignmentsWithConstraintVars.ivml	REASONING	1	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignmentsWithConstraintVar	0,00	6,75	0,58	1,75	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	2,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignmentsWithConstraintVars.ivml	REASONING	2	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignmentsWithConstraintVar	0,00	6,75	0,58	1,75	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	2,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignmentsWithConstraintVars.ivml	REASONING	3	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignmentsWithConstraintVar	0,00	6,75	0,58	1,75	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	2,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignmentsWithConstraintVars.ivml	REASONING	4	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignmentsWithConstraintVar	0,00	6,75	0,58	1,75	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	2,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignmentsWithConstraintVars.ivml	REASONING	5	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignmentsWithConstraintVar	0,00	6,75	0,58	1,75	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	2,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignmentsWithConstraintVars.ivml	REASONING	6	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignmentsWithConstraintVar	0,00	6,75	0,58	1,75	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	2,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignmentsWithConstraintVars.ivml	REASONING	7	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignmentsWithConstraintVar	0,00	6,75	0,58	1,75	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	2,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignmentsWithConstraintVars.ivml	REASONING	8	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignmentsWithConstraintVar	0,00	6,75	0,58	1,75	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	2,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignmentsWithConstraintVars.ivml	REASONING	9	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignmentsWithConstraintVar	0,00	6,75	0,58	1,75	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	2,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignmentsWithConstraintVars.ivml	REASONING	10	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignmentsWithConstraintVar	0,00	6,75	0,58	1,75	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	2,00	0,00	
+CompoundConstraintsInCollectionWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollectionWithConstraintVars.ivml	REASONING	1	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollectionWithConstraintVars	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	15,00	0,00	2,00	0,00	
+CompoundConstraintsInCollectionWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollectionWithConstraintVars.ivml	REASONING	2	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollectionWithConstraintVars	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	15,00	0,00	2,00	0,00	
+CompoundConstraintsInCollectionWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollectionWithConstraintVars.ivml	REASONING	3	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollectionWithConstraintVars	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	15,00	0,00	2,00	0,00	
+CompoundConstraintsInCollectionWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollectionWithConstraintVars.ivml	REASONING	4	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollectionWithConstraintVars	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	16,00	0,00	2,00	0,00	2,00	16,00	15,00	0,00	2,00	16,00	
+CompoundConstraintsInCollectionWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollectionWithConstraintVars.ivml	REASONING	5	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollectionWithConstraintVars	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	15,00	0,00	2,00	0,00	
+CompoundConstraintsInCollectionWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollectionWithConstraintVars.ivml	REASONING	6	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollectionWithConstraintVars	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	15,00	0,00	2,00	0,00	
+CompoundConstraintsInCollectionWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollectionWithConstraintVars.ivml	REASONING	7	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollectionWithConstraintVars	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	15,00	0,00	2,00	0,00	
+CompoundConstraintsInCollectionWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollectionWithConstraintVars.ivml	REASONING	8	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollectionWithConstraintVars	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	15,00	0,00	2,00	0,00	
+CompoundConstraintsInCollectionWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollectionWithConstraintVars.ivml	REASONING	9	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollectionWithConstraintVars	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	15,00	0,00	2,00	0,00	
+CompoundConstraintsInCollectionWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollectionWithConstraintVars.ivml	REASONING	10	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollectionWithConstraintVars	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	15,00	0,00	2,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	1	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	0,00	400,00	0,00	100,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	2	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	0,00	400,00	0,00	100,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	3	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	0,00	400,00	0,00	100,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	4	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	0,00	400,00	0,00	100,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	5	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	0,00	400,00	0,00	100,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	6	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	0,00	400,00	0,00	100,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	7	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	0,00	400,00	0,00	100,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	8	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	0,00	400,00	0,00	100,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	9	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	0,00	400,00	0,00	100,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	10	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	0,00	400,00	0,00	100,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	1	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	16,00	0,00	150,00	0,00	150,00	16,00	400,00	0,00	100,00	16,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	2	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	0,00	400,00	0,00	100,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	3	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	0,00	400,00	0,00	100,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	4	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	0,00	400,00	0,00	100,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	5	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	0,00	400,00	0,00	100,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	6	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	0,00	400,00	0,00	100,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	7	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	15,00	0,00	150,00	0,00	150,00	15,00	400,00	0,00	100,00	15,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	8	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	0,00	400,00	0,00	100,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	9	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	0,00	400,00	0,00	100,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	10	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	0,00	400,00	0,00	100,00	0,00	
+gr1_1_v300_c900_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v300_c900_b_l2_0.ivml	REASONING	1	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1050,00	0,63	750,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	1200,00	0,00	0,00	438,00	0,00	438,00	0,00	1200,00	0,00	300,00	0,00	
+gr1_1_v300_c900_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v300_c900_b_l2_0.ivml	REASONING	2	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1050,00	0,63	750,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	1200,00	0,00	0,00	438,00	0,00	438,00	0,00	1200,00	0,00	300,00	0,00	
+gr1_1_v300_c900_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v300_c900_b_l2_0.ivml	REASONING	3	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1050,00	0,63	750,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	1200,00	16,00	0,00	438,00	0,00	438,00	16,00	1200,00	0,00	300,00	16,00	
+gr1_1_v300_c900_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v300_c900_b_l2_0.ivml	REASONING	4	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1050,00	0,63	750,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	1200,00	0,00	0,00	438,00	0,00	438,00	0,00	1200,00	0,00	300,00	0,00	
+gr1_1_v300_c900_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v300_c900_b_l2_0.ivml	REASONING	5	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1050,00	0,63	750,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	1200,00	0,00	0,00	438,00	0,00	438,00	15,00	1200,00	15,00	300,00	15,00	
+gr1_1_v300_c900_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v300_c900_b_l2_0.ivml	REASONING	6	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1050,00	0,63	750,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	1200,00	16,00	0,00	438,00	0,00	438,00	16,00	1200,00	0,00	300,00	16,00	
+gr1_1_v300_c900_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v300_c900_b_l2_0.ivml	REASONING	7	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1050,00	0,63	750,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	1200,00	0,00	0,00	438,00	0,00	438,00	0,00	1200,00	0,00	300,00	0,00	
+gr1_1_v300_c900_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v300_c900_b_l2_0.ivml	REASONING	8	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1050,00	0,63	750,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	1200,00	0,00	0,00	438,00	0,00	438,00	15,00	1200,00	15,00	300,00	15,00	
+gr1_1_v300_c900_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v300_c900_b_l2_0.ivml	REASONING	9	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1050,00	0,63	750,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	1200,00	0,00	0,00	438,00	0,00	438,00	0,00	1200,00	0,00	300,00	0,00	
+gr1_1_v300_c900_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v300_c900_b_l2_0.ivml	REASONING	10	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1050,00	0,63	750,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	1200,00	0,00	0,00	438,00	0,00	438,00	0,00	1200,00	0,00	300,00	0,00	
+gr1_1_v500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v500_c1500_b_l2_0.ivml	REASONING	1	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1750,00	0,63	1250,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	2000,00	15,00	0,00	726,00	0,00	726,00	15,00	2000,00	0,00	500,00	15,00	
+gr1_1_v500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v500_c1500_b_l2_0.ivml	REASONING	2	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1750,00	0,63	1250,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	2000,00	16,00	0,00	726,00	0,00	726,00	16,00	2000,00	0,00	500,00	16,00	
+gr1_1_v500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v500_c1500_b_l2_0.ivml	REASONING	3	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1750,00	0,63	1250,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	2000,00	15,00	0,00	726,00	0,00	726,00	15,00	2000,00	0,00	500,00	15,00	
+gr1_1_v500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v500_c1500_b_l2_0.ivml	REASONING	4	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1750,00	0,63	1250,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	2000,00	16,00	0,00	726,00	0,00	726,00	16,00	2000,00	0,00	500,00	16,00	
+gr1_1_v500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v500_c1500_b_l2_0.ivml	REASONING	5	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1750,00	0,63	1250,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	2000,00	16,00	0,00	726,00	0,00	726,00	16,00	2000,00	0,00	500,00	16,00	
+gr1_1_v500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v500_c1500_b_l2_0.ivml	REASONING	6	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1750,00	0,63	1250,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	2000,00	15,00	0,00	726,00	0,00	726,00	15,00	2000,00	0,00	500,00	15,00	
+gr1_1_v500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v500_c1500_b_l2_0.ivml	REASONING	7	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1750,00	0,63	1250,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	2000,00	0,00	0,00	726,00	0,00	726,00	0,00	2000,00	0,00	500,00	0,00	
+gr1_1_v500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v500_c1500_b_l2_0.ivml	REASONING	8	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1750,00	0,63	1250,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	2000,00	0,00	0,00	726,00	0,00	726,00	0,00	2000,00	0,00	500,00	0,00	
+gr1_1_v500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v500_c1500_b_l2_0.ivml	REASONING	9	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1750,00	0,63	1250,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	2000,00	0,00	0,00	726,00	0,00	726,00	0,00	2000,00	0,00	500,00	0,00	
+gr1_1_v500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v500_c1500_b_l2_0.ivml	REASONING	10	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1750,00	0,63	1250,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	2000,00	0,00	0,00	726,00	0,00	726,00	0,00	2000,00	0,00	500,00	0,00	
+gr1_1_v1000_c3000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1000_c3000_b_l2_0.ivml	REASONING	1	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	3500,00	0,63	2500,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	4000,00	15,00	0,00	1518,00	0,00	1518,00	31,00	4000,00	0,00	999,00	31,00	
+gr1_1_v1000_c3000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1000_c3000_b_l2_0.ivml	REASONING	2	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	3500,00	0,63	2500,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	4000,00	16,00	0,00	1518,00	0,00	1518,00	16,00	4000,00	0,00	999,00	16,00	
+gr1_1_v1000_c3000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1000_c3000_b_l2_0.ivml	REASONING	3	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	3500,00	0,63	2500,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	4000,00	16,00	0,00	1518,00	0,00	1518,00	16,00	4000,00	0,00	999,00	16,00	
+gr1_1_v1000_c3000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1000_c3000_b_l2_0.ivml	REASONING	4	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	3500,00	0,63	2500,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	4000,00	16,00	0,00	1518,00	0,00	1518,00	16,00	4000,00	0,00	999,00	31,00	
+gr1_1_v1000_c3000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1000_c3000_b_l2_0.ivml	REASONING	5	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	3500,00	0,63	2500,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	4000,00	15,00	0,00	1518,00	0,00	1518,00	31,00	4000,00	16,00	999,00	31,00	
+gr1_1_v1000_c3000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1000_c3000_b_l2_0.ivml	REASONING	6	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	3500,00	0,63	2500,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	4000,00	16,00	0,00	1518,00	0,00	1518,00	32,00	4000,00	16,00	999,00	32,00	
+gr1_1_v1000_c3000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1000_c3000_b_l2_0.ivml	REASONING	7	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	3500,00	0,63	2500,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	4000,00	15,00	0,00	1518,00	0,00	1518,00	15,00	4000,00	0,00	999,00	15,00	
+gr1_1_v1000_c3000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1000_c3000_b_l2_0.ivml	REASONING	8	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	3500,00	0,63	2500,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	4000,00	15,00	0,00	1518,00	0,00	1518,00	15,00	4000,00	0,00	999,00	15,00	
+gr1_1_v1000_c3000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1000_c3000_b_l2_0.ivml	REASONING	9	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	3500,00	0,63	2500,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	4000,00	16,00	0,00	1518,00	0,00	1518,00	32,00	4000,00	16,00	999,00	32,00	
+gr1_1_v1000_c3000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1000_c3000_b_l2_0.ivml	REASONING	10	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	3500,00	0,63	2500,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	4000,00	16,00	0,00	1518,00	0,00	1518,00	31,00	4000,00	15,00	999,00	31,00	
+gr1_1_v1500_c4500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1500_c4500_b_l2_0.ivml	REASONING	1	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	5250,00	0,63	3750,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	6000,00	16,00	0,00	2236,00	0,00	2236,00	47,00	6000,00	15,00	1500,00	47,00	
+gr1_1_v1500_c4500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1500_c4500_b_l2_0.ivml	REASONING	2	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	5250,00	0,63	3750,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	6000,00	16,00	0,00	2236,00	0,00	2236,00	31,00	6000,00	15,00	1500,00	31,00	
+gr1_1_v1500_c4500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1500_c4500_b_l2_0.ivml	REASONING	3	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	5250,00	0,63	3750,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	6000,00	32,00	0,00	2236,00	0,00	2236,00	32,00	6000,00	0,00	1500,00	32,00	
+gr1_1_v1500_c4500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1500_c4500_b_l2_0.ivml	REASONING	4	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	5250,00	0,63	3750,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	6000,00	16,00	0,00	2236,00	0,00	2236,00	47,00	6000,00	15,00	1500,00	47,00	
+gr1_1_v1500_c4500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1500_c4500_b_l2_0.ivml	REASONING	5	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	5250,00	0,63	3750,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	6000,00	16,00	0,00	2236,00	0,00	2236,00	31,00	6000,00	15,00	1500,00	31,00	
+gr1_1_v1500_c4500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1500_c4500_b_l2_0.ivml	REASONING	6	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	5250,00	0,63	3750,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	6000,00	32,00	0,00	2236,00	0,00	2236,00	32,00	6000,00	0,00	1500,00	32,00	
+gr1_1_v1500_c4500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1500_c4500_b_l2_0.ivml	REASONING	7	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	5250,00	0,63	3750,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	6000,00	16,00	0,00	2236,00	0,00	2236,00	31,00	6000,00	15,00	1500,00	31,00	
+gr1_1_v1500_c4500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1500_c4500_b_l2_0.ivml	REASONING	8	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	5250,00	0,63	3750,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	6000,00	31,00	0,00	2236,00	0,00	2236,00	31,00	6000,00	0,00	1500,00	31,00	
+gr1_1_v1500_c4500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1500_c4500_b_l2_0.ivml	REASONING	9	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	5250,00	0,63	3750,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	6000,00	16,00	0,00	2236,00	0,00	2236,00	47,00	6000,00	15,00	1500,00	47,00	
+gr1_1_v1500_c4500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1500_c4500_b_l2_0.ivml	REASONING	10	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	5250,00	0,63	3750,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	6000,00	16,00	0,00	2236,00	0,00	2236,00	31,00	6000,00	15,00	1500,00	31,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	1	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	0,00	200,00	0,00	98,00	0,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	2	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	0,00	200,00	0,00	98,00	0,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	3	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	0,00	200,00	0,00	98,00	0,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	4	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	0,00	200,00	0,00	98,00	0,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	5	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	0,00	200,00	0,00	98,00	0,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	6	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	0,00	200,00	0,00	98,00	0,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	7	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	0,00	200,00	0,00	98,00	0,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	8	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	0,00	200,00	0,00	98,00	0,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	9	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	0,00	200,00	0,00	98,00	0,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	10	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	15,00	0,00	46,00	0,00	46,00	15,00	200,00	0,00	98,00	15,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	1	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	0,00	200,00	0,00	98,00	0,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	2	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	0,00	200,00	0,00	98,00	0,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	3	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	0,00	200,00	0,00	98,00	0,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	4	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	0,00	200,00	0,00	98,00	0,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	5	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	0,00	200,00	0,00	98,00	0,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	6	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	15,00	0,00	46,00	0,00	46,00	15,00	200,00	0,00	98,00	15,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	7	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	0,00	200,00	0,00	98,00	0,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	8	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	0,00	200,00	0,00	98,00	0,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	9	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	0,00	200,00	0,00	98,00	0,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	10	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	0,00	200,00	0,00	98,00	0,00	
+gr1_2_v300_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v300_c300_b_l2_0.ivml	REASONING	1	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	600,00	0,50	300,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	600,00	0,00	0,00	124,00	0,00	124,00	0,00	600,00	0,00	289,00	0,00	
+gr1_2_v300_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v300_c300_b_l2_0.ivml	REASONING	2	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	600,00	0,50	300,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	600,00	0,00	0,00	124,00	0,00	124,00	0,00	600,00	0,00	289,00	0,00	
+gr1_2_v300_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v300_c300_b_l2_0.ivml	REASONING	3	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	600,00	0,50	300,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	600,00	0,00	0,00	124,00	0,00	124,00	16,00	600,00	16,00	289,00	16,00	
+gr1_2_v300_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v300_c300_b_l2_0.ivml	REASONING	4	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	600,00	0,50	300,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	600,00	0,00	0,00	124,00	0,00	124,00	0,00	600,00	0,00	289,00	0,00	
+gr1_2_v300_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v300_c300_b_l2_0.ivml	REASONING	5	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	600,00	0,50	300,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	600,00	0,00	0,00	124,00	0,00	124,00	0,00	600,00	0,00	289,00	0,00	
+gr1_2_v300_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v300_c300_b_l2_0.ivml	REASONING	6	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	600,00	0,50	300,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	600,00	0,00	0,00	124,00	0,00	124,00	0,00	600,00	0,00	289,00	0,00	
+gr1_2_v300_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v300_c300_b_l2_0.ivml	REASONING	7	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	600,00	0,50	300,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	600,00	0,00	0,00	124,00	0,00	124,00	0,00	600,00	0,00	289,00	0,00	
+gr1_2_v300_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v300_c300_b_l2_0.ivml	REASONING	8	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	600,00	0,50	300,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	600,00	15,00	0,00	124,00	0,00	124,00	15,00	600,00	0,00	289,00	15,00	
+gr1_2_v300_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v300_c300_b_l2_0.ivml	REASONING	9	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	600,00	0,50	300,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	600,00	0,00	0,00	124,00	0,00	124,00	0,00	600,00	0,00	289,00	0,00	
+gr1_2_v300_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v300_c300_b_l2_0.ivml	REASONING	10	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	600,00	0,50	300,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	600,00	0,00	0,00	124,00	0,00	124,00	0,00	600,00	0,00	289,00	0,00	
+gr1_2_v500_c500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v500_c500_b_l2_0.ivml	REASONING	1	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	1000,00	0,50	500,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	1000,00	0,00	0,00	266,00	0,00	266,00	0,00	1000,00	0,00	481,00	0,00	
+gr1_2_v500_c500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v500_c500_b_l2_0.ivml	REASONING	2	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	1000,00	0,50	500,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	1000,00	0,00	0,00	266,00	0,00	266,00	16,00	1000,00	16,00	481,00	16,00	
+gr1_2_v500_c500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v500_c500_b_l2_0.ivml	REASONING	3	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	1000,00	0,50	500,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	1000,00	0,00	0,00	266,00	0,00	266,00	0,00	1000,00	0,00	481,00	0,00	
+gr1_2_v500_c500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v500_c500_b_l2_0.ivml	REASONING	4	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	1000,00	0,50	500,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	1000,00	15,00	0,00	266,00	0,00	266,00	15,00	1000,00	0,00	481,00	15,00	
+gr1_2_v500_c500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v500_c500_b_l2_0.ivml	REASONING	5	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	1000,00	0,50	500,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	1000,00	0,00	0,00	266,00	0,00	266,00	0,00	1000,00	0,00	481,00	0,00	
+gr1_2_v500_c500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v500_c500_b_l2_0.ivml	REASONING	6	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	1000,00	0,50	500,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	1000,00	16,00	0,00	266,00	0,00	266,00	16,00	1000,00	0,00	481,00	16,00	
+gr1_2_v500_c500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v500_c500_b_l2_0.ivml	REASONING	7	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	1000,00	0,50	500,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	1000,00	0,00	0,00	266,00	0,00	266,00	0,00	1000,00	0,00	481,00	0,00	
+gr1_2_v500_c500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v500_c500_b_l2_0.ivml	REASONING	8	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	1000,00	0,50	500,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	1000,00	0,00	0,00	266,00	0,00	266,00	0,00	1000,00	0,00	481,00	0,00	
+gr1_2_v500_c500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v500_c500_b_l2_0.ivml	REASONING	9	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	1000,00	0,50	500,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	1000,00	0,00	0,00	266,00	0,00	266,00	0,00	1000,00	0,00	481,00	0,00	
+gr1_2_v500_c500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v500_c500_b_l2_0.ivml	REASONING	10	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	1000,00	0,50	500,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	1000,00	0,00	0,00	266,00	0,00	266,00	0,00	1000,00	0,00	481,00	0,00	
+gr1_2_v1000_c1000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1000_c1000_b_l2_0.ivml	REASONING	1	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	2000,00	0,50	1000,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	2000,00	15,00	0,00	504,00	0,00	504,00	15,00	2000,00	0,00	951,00	15,00	
+gr1_2_v1000_c1000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1000_c1000_b_l2_0.ivml	REASONING	2	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	2000,00	0,50	1000,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	2000,00	16,00	0,00	504,00	0,00	504,00	16,00	2000,00	0,00	951,00	16,00	
+gr1_2_v1000_c1000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1000_c1000_b_l2_0.ivml	REASONING	3	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	2000,00	0,50	1000,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	2000,00	0,00	0,00	504,00	0,00	504,00	0,00	2000,00	0,00	951,00	0,00	
+gr1_2_v1000_c1000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1000_c1000_b_l2_0.ivml	REASONING	4	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	2000,00	0,50	1000,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	2000,00	0,00	0,00	504,00	0,00	504,00	0,00	2000,00	0,00	951,00	0,00	
+gr1_2_v1000_c1000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1000_c1000_b_l2_0.ivml	REASONING	5	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	2000,00	0,50	1000,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	2000,00	0,00	0,00	504,00	0,00	504,00	15,00	2000,00	15,00	951,00	15,00	
+gr1_2_v1000_c1000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1000_c1000_b_l2_0.ivml	REASONING	6	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	2000,00	0,50	1000,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	2000,00	0,00	0,00	504,00	0,00	504,00	16,00	2000,00	16,00	951,00	16,00	
+gr1_2_v1000_c1000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1000_c1000_b_l2_0.ivml	REASONING	7	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	2000,00	0,50	1000,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	2000,00	0,00	0,00	504,00	0,00	504,00	16,00	2000,00	16,00	951,00	16,00	
+gr1_2_v1000_c1000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1000_c1000_b_l2_0.ivml	REASONING	8	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	2000,00	0,50	1000,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	2000,00	0,00	0,00	504,00	0,00	504,00	15,00	2000,00	15,00	951,00	15,00	
+gr1_2_v1000_c1000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1000_c1000_b_l2_0.ivml	REASONING	9	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	2000,00	0,50	1000,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	2000,00	16,00	0,00	504,00	0,00	504,00	16,00	2000,00	0,00	951,00	16,00	
+gr1_2_v1000_c1000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1000_c1000_b_l2_0.ivml	REASONING	10	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	2000,00	0,50	1000,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	2000,00	15,00	0,00	504,00	0,00	504,00	15,00	2000,00	0,00	951,00	15,00	
+gr1_2_v1500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1500_c1500_b_l2_0.ivml	REASONING	1	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	3000,00	0,50	1500,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	3000,00	16,00	0,00	739,00	0,00	739,00	16,00	3000,00	0,00	1419,00	16,00	
+gr1_2_v1500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1500_c1500_b_l2_0.ivml	REASONING	2	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	3000,00	0,50	1500,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	3000,00	16,00	0,00	739,00	0,00	739,00	16,00	3000,00	0,00	1419,00	16,00	
+gr1_2_v1500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1500_c1500_b_l2_0.ivml	REASONING	3	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	3000,00	0,50	1500,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	3000,00	0,00	0,00	739,00	0,00	739,00	15,00	3000,00	15,00	1419,00	15,00	
+gr1_2_v1500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1500_c1500_b_l2_0.ivml	REASONING	4	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	3000,00	0,50	1500,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	3000,00	16,00	0,00	739,00	0,00	739,00	16,00	3000,00	0,00	1419,00	16,00	
+gr1_2_v1500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1500_c1500_b_l2_0.ivml	REASONING	5	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	3000,00	0,50	1500,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	3000,00	15,00	0,00	739,00	0,00	739,00	15,00	3000,00	0,00	1419,00	15,00	
+gr1_2_v1500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1500_c1500_b_l2_0.ivml	REASONING	6	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	3000,00	0,50	1500,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	3000,00	0,00	0,00	739,00	0,00	739,00	16,00	3000,00	16,00	1419,00	16,00	
+gr1_2_v1500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1500_c1500_b_l2_0.ivml	REASONING	7	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	3000,00	0,50	1500,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	3000,00	0,00	0,00	739,00	0,00	739,00	15,00	3000,00	15,00	1419,00	15,00	
+gr1_2_v1500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1500_c1500_b_l2_0.ivml	REASONING	8	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	3000,00	0,50	1500,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	3000,00	16,00	0,00	739,00	0,00	739,00	16,00	3000,00	0,00	1419,00	16,00	
+gr1_2_v1500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1500_c1500_b_l2_0.ivml	REASONING	9	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	3000,00	0,50	1500,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	3000,00	15,00	0,00	739,00	0,00	739,00	15,00	3000,00	0,00	1419,00	15,00	
+gr1_2_v1500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1500_c1500_b_l2_0.ivml	REASONING	10	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	3000,00	0,50	1500,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	3000,00	16,00	0,00	739,00	0,00	739,00	16,00	3000,00	0,00	1419,00	16,00	
+Project_gen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/historyPerformance/d2d_v10_c1_bir_l1_0.ivml	REASONING	1	test.net.ssehub.easy.reasoning.sseReasoner.performance.HistoryStats.historyStatsTest	0,00	13,00	0,27	3,00	0,00	4,00	4,00	6,00	6,00	10,00	10,00	10,00	1,00	10,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	2,00	0,00	
+Project_gen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/historyPerformance/d2d_v10_c1_bir_l1_0.ivml	REASONING	2	test.net.ssehub.easy.reasoning.sseReasoner.performance.HistoryStats.historyStatsTest	0,00	13,00	0,27	3,00	0,00	4,00	4,00	6,00	6,00	10,00	10,00	10,00	1,00	10,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	2,00	0,00	
+Project_gen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/historyPerformance/d2d_v10_c1_bir_l1_0.ivml	REASONING	3	test.net.ssehub.easy.reasoning.sseReasoner.performance.HistoryStats.historyStatsTest	0,00	13,00	0,27	3,00	0,00	4,00	4,00	6,00	6,00	10,00	10,00	10,00	1,00	10,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	2,00	0,00	
+Project_gen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/historyPerformance/d2d_v10_c1_bir_l1_0.ivml	REASONING	4	test.net.ssehub.easy.reasoning.sseReasoner.performance.HistoryStats.historyStatsTest	0,00	13,00	0,27	3,00	0,00	4,00	4,00	6,00	6,00	10,00	10,00	10,00	1,00	10,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	2,00	0,00	
+Project_gen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/historyPerformance/d2d_v10_c1_bir_l1_0.ivml	REASONING	5	test.net.ssehub.easy.reasoning.sseReasoner.performance.HistoryStats.historyStatsTest	0,00	13,00	0,27	3,00	0,00	4,00	4,00	6,00	6,00	10,00	10,00	10,00	1,00	10,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	2,00	0,00	
+Project_gen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/historyPerformance/d2d_v10_c1_bir_l1_0.ivml	REASONING	6	test.net.ssehub.easy.reasoning.sseReasoner.performance.HistoryStats.historyStatsTest	0,00	13,00	0,27	3,00	0,00	4,00	4,00	6,00	6,00	10,00	10,00	10,00	1,00	10,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	2,00	0,00	
+Project_gen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/historyPerformance/d2d_v10_c1_bir_l1_0.ivml	REASONING	7	test.net.ssehub.easy.reasoning.sseReasoner.performance.HistoryStats.historyStatsTest	0,00	13,00	0,27	3,00	0,00	4,00	4,00	6,00	6,00	10,00	10,00	10,00	1,00	10,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	2,00	0,00	
+Project_gen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/historyPerformance/d2d_v10_c1_bir_l1_0.ivml	REASONING	8	test.net.ssehub.easy.reasoning.sseReasoner.performance.HistoryStats.historyStatsTest	0,00	13,00	0,27	3,00	0,00	4,00	4,00	6,00	6,00	10,00	10,00	10,00	1,00	10,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	2,00	0,00	
+Project_gen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/historyPerformance/d2d_v10_c1_bir_l1_0.ivml	REASONING	9	test.net.ssehub.easy.reasoning.sseReasoner.performance.HistoryStats.historyStatsTest	0,00	13,00	0,27	3,00	0,00	4,00	4,00	6,00	6,00	10,00	10,00	10,00	1,00	10,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	2,00	0,00	
+Project_gen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/historyPerformance/d2d_v10_c1_bir_l1_0.ivml	REASONING	10	test.net.ssehub.easy.reasoning.sseReasoner.performance.HistoryStats.historyStatsTest	0,00	13,00	0,27	3,00	0,00	4,00	4,00	6,00	6,00	10,00	10,00	10,00	1,00	10,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	2,00	0,00	
Index: /reasoner/measures/benchmark-results-new-1.3-ojdk10-typeCache/measurements-rtvil.tsv
===================================================================
--- /reasoner/measures/benchmark-results-new-1.3-ojdk10-typeCache/measurements-rtvil.tsv	(revision 278)
+++ /reasoner/measures/benchmark-results-new-1.3-ojdk10-typeCache/measurements-rtvil.tsv	(revision 278)
@@ -0,0 +1,17 @@
+model name	URI	tag	runCount	caller	MODEL_ANNOTATIONS	MODEL_COMPLEXITY	MODEL_CONSTRAINT_AVG_COMPLEXITY	MODEL_CONSTRAINT_COMPLEXITY	MODEL_CONSTRAINT_INSTANCES	MODEL_CONSTRAINT_VARIABLES	MODEL_CONSTRAINT_VARIABLES_NO_CONTAINER	MODEL_NORMAL_VARIABLES	MODEL_NORMAL_VARIABLES_NO_CONTAINER	MODEL_TOPLEVEL_VARIABLES	MODEL_VARIABLES	MODEL_VARIABLES_WITHOUT_CONTAINER	MODEL_VARIABLE_AVG_COMPLEXITY	MODEL_VARIABLE_COMPLEXITY	REASONER_CONSTRAINT_COUNT	REASONER_EVALUATION_TIME	REASONER_INSTANCE_CREATION_TIME	REASONER_PROBLEMS	REASONER_PROBLEM_ASSIGNMENTS	REASONER_PROBLEM_CONSTRAINTS	REASONER_REASONING_TIME	REASONER_REEVALUATION_COUNT	REASONER_TRANSLATION_TIME	REASONER_VARIABLES_IN_CONSTRAINTS	RESPONSETIME_AUTO	
+QM2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Instantiation/de.uni_hildesheim.sse.vil.rt.tests/testdata/ivml/QM2.ivml	RT-VIL	1	de.uni_hildesheim.sse.vil.rt.tests.ExecutionRtTests.testParameter	7,00	9,50	0,25	0,50	0,00	0,00	0,00	7,00	7,00	2,00	7,00	7,00	1,29	9,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+Add	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Instantiation/de.uni_hildesheim.sse.vil.rt.tests/testdata/ivml/Add.ivml	RT-VIL	1	de.uni_hildesheim.sse.vil.rt.tests.ExecutionRtTests.testAdd	4,00	5,75	0,25	0,75	0,00	2,00	2,00	2,00	2,00	3,00	4,00	4,00	1,25	5,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+Clear	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Instantiation/de.uni_hildesheim.sse.vil.rt.tests/testdata/ivml/Clear.ivml	RT-VIL	1	de.uni_hildesheim.sse.vil.rt.tests.ExecutionRtTests.testClear	3,00	4,50	0,25	0,50	0,00	1,00	1,00	2,00	2,00	2,00	3,00	3,00	1,33	4,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+QM5	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Instantiation/de.uni_hildesheim.sse.vil.rt.tests/testdata/ivml/QM5.ivml	RT-VIL	1	de.uni_hildesheim.sse.vil.rt.tests.ExecutionRtTests.testReferences2	16,00	23,00	0,25	1,00	0,00	0,00	0,00	16,00	12,00	4,00	16,00	12,00	1,38	22,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+QM8	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Instantiation/de.uni_hildesheim.sse.vil.rt.tests/testdata/ivml/QM8.ivml	RT-VIL	1	de.uni_hildesheim.sse.vil.rt.tests.ExecutionRtTests.testReferences3	8,00	11,75	0,25	0,75	0,00	0,00	0,00	8,00	7,00	3,00	8,00	7,00	1,38	11,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+tactics2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Instantiation/de.uni_hildesheim.sse.vil.rt.tests/testdata/ivml/tactics2.ivml	RT-VIL	1	de.uni_hildesheim.sse.vil.rt.tests.ExecutionRtTests.testTactics2	4,00	6,50	0,25	0,50	0,00	1,00	1,00	3,00	3,00	1,00	4,00	4,00	1,50	6,00	0,00	0,00	0,00	0,00	0,00	0,00	16,00	0,00	0,00	0,00	16,00	
+QM6	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Instantiation/de.uni_hildesheim.sse.vil.rt.tests/testdata/ivml/QM6.ivml	RT-VIL	1	de.uni_hildesheim.sse.vil.rt.tests.ExecutionRtTests.testInstances2	9,00	12,25	0,25	0,25	0,00	0,00	0,00	9,00	9,00	1,00	9,00	9,00	1,33	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	4,00	0,00	
+QM7	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Instantiation/de.uni_hildesheim.sse.vil.rt.tests/testdata/ivml/QM7.ivml	RT-VIL	1	de.uni_hildesheim.sse.vil.rt.tests.ExecutionRtTests.testInstances3	9,00	12,25	0,25	0,25	0,00	0,00	0,00	9,00	9,00	1,00	9,00	9,00	1,33	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	4,00	0,00	
+QM3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Instantiation/de.uni_hildesheim.sse.vil.rt.tests/testdata/ivml/QM3.ivml	RT-VIL	1	de.uni_hildesheim.sse.vil.rt.tests.ExecutionRtTests.testMapping	11,00	15,50	0,50	1,50	0,00	0,00	0,00	11,00	9,00	3,00	11,00	9,00	1,27	14,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+QM4	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Instantiation/de.uni_hildesheim.sse.vil.rt.tests/testdata/ivml/QM4.ivml	RT-VIL	1	de.uni_hildesheim.sse.vil.rt.tests.ExecutionRtTests.testReferences	8,00	11,75	0,25	0,75	0,00	0,00	0,00	8,00	7,00	3,00	8,00	7,00	1,38	11,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+QM6	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Instantiation/de.uni_hildesheim.sse.vil.rt.tests/testdata/ivml/QM6.ivml	RT-VIL	1	de.uni_hildesheim.sse.vil.rt.tests.ExecutionRtTests.testInstances	9,00	12,25	0,25	0,25	0,00	0,00	0,00	9,00	9,00	1,00	9,00	9,00	1,33	12,00	1,00	0,00	0,00	0,00	0,00	0,00	16,00	1,00	0,00	4,00	16,00	
+dispatch2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Instantiation/de.uni_hildesheim.sse.vil.rt.tests/testdata/ivml/dispatch2.ivml	RT-VIL	1	de.uni_hildesheim.sse.vil.rt.tests.ExecutionRtTests.testDispatch2	10,00	15,50	0,25	0,50	0,00	0,00	0,00	11,00	10,00	3,00	11,00	10,00	1,36	15,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+ALtest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Instantiation/de.uni_hildesheim.sse.vil.rt.tests/testdata/ivml/ALtest.ivml	RT-VIL	1	de.uni_hildesheim.sse.vil.rt.tests.ExecutionRtTests.testALTest	41,00	56,75	0,31	2,75	0,00	0,00	0,00	41,00	33,00	9,00	41,00	33,00	1,32	54,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+QM1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Instantiation/de.uni_hildesheim.sse.vil.rt.tests/testdata/ivml/QM1.ivml	RT-VIL	1	de.uni_hildesheim.sse.vil.rt.tests.ExecutionRtTests.testStartup3	29,00	43,75	0,39	2,75	0,00	1,00	0,00	28,00	23,00	7,00	29,00	23,00	1,41	41,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	2,00	0,00	
+QM1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Instantiation/de.uni_hildesheim.sse.vil.rt.tests/testdata/ivml/QM1.ivml	RT-VIL	1	de.uni_hildesheim.sse.vil.rt.tests.ExecutionRtTests.testStartup4	29,00	43,75	0,39	2,75	0,00	1,00	0,00	28,00	23,00	7,00	29,00	23,00	1,41	41,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	2,00	0,00	
+QM1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Instantiation/de.uni_hildesheim.sse.vil.rt.tests/testdata/ivml/QM1.ivml	RT-VIL	1	de.uni_hildesheim.sse.vil.rt.tests.ExecutionRtTests.testStartup5	29,00	43,75	0,39	2,75	0,00	1,00	0,00	28,00	23,00	7,00	29,00	23,00	1,41	41,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	2,00	15,00	
Index: /reasoner/measures/benchmark-results-new-1.3-ojdk10-typeCache/measurements-scaleLog.tsv
===================================================================
--- /reasoner/measures/benchmark-results-new-1.3-ojdk10-typeCache/measurements-scaleLog.tsv	(revision 278)
+++ /reasoner/measures/benchmark-results-new-1.3-ojdk10-typeCache/measurements-scaleLog.tsv	(revision 278)
@@ -0,0 +1,61 @@
+model name	URI	tag	runCount	caller	MODEL_ANNOTATIONS	MODEL_COMPLEXITY	MODEL_CONSTRAINT_AVG_COMPLEXITY	MODEL_CONSTRAINT_COMPLEXITY	MODEL_CONSTRAINT_INSTANCES	MODEL_CONSTRAINT_VARIABLES	MODEL_CONSTRAINT_VARIABLES_NO_CONTAINER	MODEL_NORMAL_VARIABLES	MODEL_NORMAL_VARIABLES_NO_CONTAINER	MODEL_TOPLEVEL_VARIABLES	MODEL_VARIABLES	MODEL_VARIABLES_WITHOUT_CONTAINER	MODEL_VARIABLE_AVG_COMPLEXITY	MODEL_VARIABLE_COMPLEXITY	REASONER_CONSTRAINT_COUNT	REASONER_EVALUATION_TIME	REASONER_INSTANCE_CREATION_TIME	REASONER_PROBLEMS	REASONER_PROBLEM_ASSIGNMENTS	REASONER_PROBLEM_CONSTRAINTS	REASONER_REASONING_TIME	REASONER_REEVALUATION_COUNT	REASONER_TRANSLATION_TIME	REASONER_VARIABLES_IN_CONSTRAINTS	RESPONSETIME_AUTO	
+cp	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/cp/EASy/cp_0.ivml	SCENARIO	1	net.ssehub.easy.scaleLog.RealTests.classpathTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+cp	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/cp/EASy/cp_0.ivml	SCENARIO	2	net.ssehub.easy.scaleLog.RealTests.classpathTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+cp	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/cp/EASy/cp_0.ivml	SCENARIO	3	net.ssehub.easy.scaleLog.RealTests.classpathTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+cp	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/cp/EASy/cp_0.ivml	SCENARIO	4	net.ssehub.easy.scaleLog.RealTests.classpathTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+cp	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/cp/EASy/cp_0.ivml	SCENARIO	5	net.ssehub.easy.scaleLog.RealTests.classpathTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+cp	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/cp/EASy/cp_0.ivml	SCENARIO	6	net.ssehub.easy.scaleLog.RealTests.classpathTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+cp	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/cp/EASy/cp_0.ivml	SCENARIO	7	net.ssehub.easy.scaleLog.RealTests.classpathTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+cp	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/cp/EASy/cp_0.ivml	SCENARIO	8	net.ssehub.easy.scaleLog.RealTests.classpathTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+cp	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/cp/EASy/cp_0.ivml	SCENARIO	9	net.ssehub.easy.scaleLog.RealTests.classpathTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+cp	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/cp/EASy/cp_0.ivml	SCENARIO	10	net.ssehub.easy.scaleLog.RealTests.classpathTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	1	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13ConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	15,00	0,00	0,00	0,00	0,00	15,00	54,00	0,00	12,00	15,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	2	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13ConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	3	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13ConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	4	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13ConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	16,00	0,00	0,00	0,00	0,00	16,00	54,00	0,00	12,00	16,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	5	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13ConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	15,00	54,00	0,00	12,00	15,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	6	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13ConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	16,00	0,00	0,00	0,00	0,00	16,00	54,00	0,00	12,00	16,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	7	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13ConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	8	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13ConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	15,00	0,00	0,00	0,00	0,00	15,00	54,00	0,00	12,00	15,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	9	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13ConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	16,00	0,00	0,00	0,00	0,00	16,00	54,00	0,00	12,00	16,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	10	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13ConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	16,00	0,00	0,00	0,00	0,00	16,00	54,00	0,00	12,00	16,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/00_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	1	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnum	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/00_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	2	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnum	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	16,00	54,00	16,00	12,00	16,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/00_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	3	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnum	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	15,00	0,00	0,00	0,00	0,00	15,00	54,00	0,00	12,00	15,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/00_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	4	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnum	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/00_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	5	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnum	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/00_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	6	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnum	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	16,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/00_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	7	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnum	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	15,00	0,00	0,00	0,00	0,00	15,00	54,00	0,00	12,00	15,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/00_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	8	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnum	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/00_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	9	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnum	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/00_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	10	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnum	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	15,00	0,00	0,00	0,00	0,00	15,00	54,00	0,00	12,00	15,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/01_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	1	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13NoConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/01_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	2	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13NoConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/01_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	3	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13NoConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/01_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	4	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13NoConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/01_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	5	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13NoConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/01_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	6	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13NoConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/01_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	7	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13NoConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/01_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	8	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13NoConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	16,00	54,00	0,00	12,00	16,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/01_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	9	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13NoConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/01_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	10	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13NoConditionalCopy	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	15,00	54,00	15,00	12,00	15,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/02_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	1	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnumJPath	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/02_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	2	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnumJPath	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/02_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	3	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnumJPath	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/02_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	4	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnumJPath	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	16,00	0,00	0,00	0,00	0,00	16,00	54,00	0,00	12,00	16,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/02_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	5	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnumJPath	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/02_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	6	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnumJPath	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	15,00	0,00	0,00	0,00	0,00	15,00	54,00	0,00	12,00	15,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/02_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	7	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnumJPath	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/02_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	8	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnumJPath	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/02_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	9	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnumJPath	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/02_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	10	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByNameJavaEnumJPath	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	16,00	54,00	0,00	12,00	16,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/03_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	1	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByName	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/03_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	2	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByName	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/03_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	3	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByName	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	16,00	54,00	16,00	12,00	16,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/03_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	4	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByName	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/03_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	5	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByName	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/03_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	6	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByName	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/03_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	7	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByName	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/03_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	8	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByName	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	15,00	0,00	0,00	0,00	0,00	15,00	54,00	0,00	12,00	15,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/03_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	9	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByName	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
+scalelog_customer_test	file:/W:/IndenicaWorkspace/ScenarioTests.ScaleLog/testdata/temp/03_sc_scalelog_customer_test/src/main/easy/scalelog_customer_test_0.ivml	SCENARIO	10	net.ssehub.easy.scaleLog.RealTests.testScaleLogDec13VtlByName	31,00	39,00	0,50	5,00	0,00	22,00	11,00	9,00	4,00	15,00	31,00	15,00	1,10	34,00	54,00	0,00	0,00	0,00	0,00	0,00	0,00	54,00	0,00	12,00	0,00	
Index: /reasoner/measures/benchmark-results-new-1.3-ojdk10-typeCache/measurements-scenarioVariants.tsv
===================================================================
--- /reasoner/measures/benchmark-results-new-1.3-ojdk10-typeCache/measurements-scenarioVariants.tsv	(revision 278)
+++ /reasoner/measures/benchmark-results-new-1.3-ojdk10-typeCache/measurements-scenarioVariants.tsv	(revision 278)
@@ -0,0 +1,301 @@
+model name	URI	tag	runCount	caller	MODEL_ANNOTATIONS	MODEL_COMPLEXITY	MODEL_CONSTRAINT_AVG_COMPLEXITY	MODEL_CONSTRAINT_COMPLEXITY	MODEL_CONSTRAINT_INSTANCES	MODEL_CONSTRAINT_VARIABLES	MODEL_CONSTRAINT_VARIABLES_NO_CONTAINER	MODEL_NORMAL_VARIABLES	MODEL_NORMAL_VARIABLES_NO_CONTAINER	MODEL_TOPLEVEL_VARIABLES	MODEL_VARIABLES	MODEL_VARIABLES_WITHOUT_CONTAINER	MODEL_VARIABLE_AVG_COMPLEXITY	MODEL_VARIABLE_COMPLEXITY	REASONER_CONSTRAINT_COUNT	REASONER_EVALUATION_TIME	REASONER_INSTANCE_CREATION_TIME	REASONER_PROBLEMS	REASONER_PROBLEM_ASSIGNMENTS	REASONER_PROBLEM_CONSTRAINTS	REASONER_REASONING_TIME	REASONER_REEVALUATION_COUNT	REASONER_TRANSLATION_TIME	REASONER_VARIABLES_IN_CONSTRAINTS	RESPONSETIME_AUTO	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11623,00	13980,00	0,66	2299,00	164,00	2590,00	2582,00	7663,00	6799,00	275,00	10253,00	9381,00	1,14	11681,00	14553,00	189,00	0,00	0,00	0,00	0,00	407,00	17095,00	203,00	5021,00	407,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11623,00	13980,00	0,66	2299,00	164,00	2590,00	2582,00	7663,00	6799,00	275,00	10253,00	9381,00	1,14	11681,00	14553,00	187,00	0,00	0,00	0,00	0,00	409,00	17095,00	188,00	5021,00	409,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11623,00	13980,00	0,66	2299,00	164,00	2590,00	2582,00	7663,00	6799,00	275,00	10253,00	9381,00	1,14	11681,00	14553,00	157,00	0,00	0,00	0,00	0,00	375,00	17096,00	156,00	5021,00	391,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11623,00	13980,00	0,66	2299,00	164,00	2590,00	2582,00	7663,00	6799,00	275,00	10253,00	9381,00	1,14	11681,00	14553,00	142,00	0,00	0,00	0,00	0,00	391,00	17096,00	217,00	5021,00	406,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11623,00	13980,00	0,66	2299,00	164,00	2590,00	2582,00	7663,00	6799,00	275,00	10253,00	9381,00	1,14	11681,00	14553,00	111,00	0,00	0,00	0,00	0,00	266,00	17095,00	124,00	5021,00	281,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11623,00	13980,00	0,66	2299,00	164,00	2590,00	2582,00	7663,00	6799,00	275,00	10253,00	9381,00	1,14	11681,00	14553,00	93,00	0,00	0,00	0,00	0,00	297,00	17096,00	140,00	5021,00	297,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11623,00	13980,00	0,66	2299,00	164,00	2590,00	2582,00	7663,00	6799,00	275,00	10253,00	9381,00	1,14	11681,00	14553,00	77,00	0,00	0,00	0,00	0,00	266,00	17096,00	157,00	5021,00	297,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11623,00	13980,00	0,66	2299,00	164,00	2590,00	2582,00	7663,00	6799,00	275,00	10253,00	9381,00	1,14	11681,00	14553,00	111,00	0,00	0,00	0,00	0,00	297,00	17096,00	139,00	5021,00	313,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11623,00	13980,00	0,66	2299,00	164,00	2590,00	2582,00	7663,00	6799,00	275,00	10253,00	9381,00	1,14	11681,00	14553,00	94,00	0,00	0,00	0,00	0,00	281,00	17096,00	139,00	5021,00	281,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11623,00	13980,00	0,66	2299,00	164,00	2590,00	2582,00	7663,00	6799,00	275,00	10253,00	9381,00	1,14	11681,00	14553,00	124,00	0,00	0,00	0,00	0,00	281,00	17095,00	125,00	5021,00	297,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	157,00	0,00	0,00	1,00	0,00	1,00	47,00	157,00	0,00	965,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	157,00	0,00	0,00	1,00	0,00	1,00	46,00	157,00	31,00	965,00	46,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	157,00	0,00	0,00	1,00	0,00	1,00	47,00	157,00	32,00	965,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	157,00	0,00	0,00	1,00	0,00	1,00	46,00	157,00	0,00	965,00	46,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	157,00	0,00	0,00	1,00	0,00	1,00	47,00	157,00	31,00	965,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	157,00	0,00	0,00	1,00	0,00	1,00	62,00	157,00	0,00	965,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	157,00	0,00	0,00	1,00	0,00	1,00	47,00	157,00	16,00	965,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	157,00	0,00	0,00	1,00	0,00	1,00	110,00	157,00	31,00	965,00	110,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	157,00	0,00	0,00	1,00	0,00	1,00	47,00	157,00	15,00	965,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	157,00	0,00	0,00	1,00	0,00	1,00	47,00	157,00	31,00	965,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	157,00	0,00	0,00	1,00	0,00	1,00	62,00	157,00	0,00	965,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	157,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	157,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	157,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	157,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	157,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	157,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	0,00	0,00	0,00	1,00	0,00	1,00	32,00	157,00	0,00	0,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	157,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12263,00	14771,00	0,64	2363,00	164,00	2805,00	2797,00	8047,00	7183,00	275,00	10852,00	9980,00	1,14	12408,00	0,00	0,00	0,00	1,00	0,00	1,00	32,00	157,00	0,00	0,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	9037,00	9553,50	0,69	1613,50	121,00	1672,00	1665,00	5333,00	4535,00	244,00	7005,00	6200,00	1,13	7940,00	12559,00	63,00	0,00	0,00	0,00	0,00	296,00	14133,00	218,00	4386,00	296,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	9037,00	9553,50	0,69	1613,50	121,00	1672,00	1665,00	5333,00	4535,00	244,00	7005,00	6200,00	1,13	7940,00	12559,00	93,00	0,00	0,00	0,00	0,00	250,00	14133,00	142,00	4386,00	250,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	9037,00	9553,50	0,69	1613,50	121,00	1672,00	1665,00	5333,00	4535,00	244,00	7005,00	6200,00	1,13	7940,00	12559,00	79,00	0,00	0,00	0,00	0,00	235,00	14133,00	156,00	4386,00	235,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	9037,00	9553,50	0,69	1613,50	121,00	1672,00	1665,00	5333,00	4535,00	244,00	7005,00	6200,00	1,13	7940,00	12559,00	94,00	0,00	0,00	0,00	0,00	234,00	14134,00	93,00	4386,00	234,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	9037,00	9553,50	0,69	1613,50	121,00	1672,00	1665,00	5333,00	4535,00	244,00	7005,00	6200,00	1,13	7940,00	12559,00	62,00	0,00	0,00	0,00	0,00	235,00	14133,00	157,00	4386,00	235,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	9037,00	9553,50	0,69	1613,50	121,00	1672,00	1665,00	5333,00	4535,00	244,00	7005,00	6200,00	1,13	7940,00	12559,00	62,00	0,00	0,00	0,00	0,00	219,00	14133,00	157,00	4386,00	219,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	9037,00	9553,50	0,69	1613,50	121,00	1672,00	1665,00	5333,00	4535,00	244,00	7005,00	6200,00	1,13	7940,00	12559,00	108,00	0,00	0,00	0,00	0,00	218,00	14134,00	94,00	4386,00	234,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	9037,00	9553,50	0,69	1613,50	121,00	1672,00	1665,00	5333,00	4535,00	244,00	7005,00	6200,00	1,13	7940,00	12559,00	93,00	0,00	0,00	0,00	0,00	235,00	14134,00	95,00	4386,00	235,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	9037,00	9553,50	0,69	1613,50	121,00	1672,00	1665,00	5333,00	4535,00	244,00	7005,00	6200,00	1,13	7940,00	12559,00	46,00	0,00	0,00	0,00	0,00	234,00	14134,00	172,00	4386,00	234,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	9037,00	9553,50	0,69	1613,50	121,00	1672,00	1665,00	5333,00	4535,00	244,00	7005,00	6200,00	1,13	7940,00	12559,00	110,00	0,00	0,00	0,00	0,00	219,00	14134,00	109,00	4386,00	219,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	215,00	0,00	0,00	1,00	0,00	1,00	47,00	215,00	31,00	1207,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	215,00	16,00	0,00	1,00	0,00	1,00	46,00	215,00	30,00	1207,00	46,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	215,00	0,00	0,00	1,00	0,00	1,00	47,00	215,00	16,00	1207,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	215,00	16,00	0,00	1,00	0,00	1,00	47,00	215,00	0,00	1207,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	215,00	0,00	0,00	1,00	0,00	1,00	31,00	215,00	15,00	1207,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	215,00	0,00	0,00	1,00	0,00	1,00	31,00	215,00	0,00	1207,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	215,00	0,00	0,00	1,00	0,00	1,00	31,00	215,00	0,00	1207,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	215,00	0,00	0,00	1,00	0,00	1,00	31,00	215,00	0,00	1207,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	215,00	0,00	0,00	1,00	0,00	1,00	31,00	215,00	15,00	1207,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	215,00	0,00	0,00	1,00	0,00	1,00	47,00	215,00	16,00	1207,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	215,00	0,00	0,00	1,00	0,00	1,00	47,00	215,00	47,00	1207,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	215,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	215,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	215,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	0,00	0,00	0,00	1,00	0,00	1,00	32,00	215,00	0,00	0,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	215,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	215,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	215,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	0,00	0,00	0,00	1,00	0,00	1,00	32,00	215,00	0,00	0,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/04_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10072,00	10828,00	0,64	1717,00	121,00	2015,00	2008,00	5954,00	5156,00	244,00	7969,00	7164,00	1,14	9111,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	215,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10093,00	10369,75	0,68	1755,75	139,00	1817,00	1810,00	5786,00	4972,00	260,00	7603,00	6782,00	1,13	8614,00	14196,00	96,00	0,00	0,00	0,00	0,00	266,00	16013,00	123,00	4827,00	266,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10093,00	10369,75	0,68	1755,75	139,00	1817,00	1810,00	5786,00	4972,00	260,00	7603,00	6782,00	1,13	8614,00	14196,00	77,00	0,00	0,00	0,00	0,00	266,00	16013,00	141,00	4827,00	266,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10093,00	10369,75	0,68	1755,75	139,00	1817,00	1810,00	5786,00	4972,00	260,00	7603,00	6782,00	1,13	8614,00	14196,00	62,00	0,00	0,00	0,00	0,00	313,00	16013,00	203,00	4827,00	313,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10093,00	10369,75	0,68	1755,75	139,00	1817,00	1810,00	5786,00	4972,00	260,00	7603,00	6782,00	1,13	8614,00	14196,00	92,00	0,00	0,00	0,00	0,00	250,00	16014,00	158,00	4827,00	250,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10093,00	10369,75	0,68	1755,75	139,00	1817,00	1810,00	5786,00	4972,00	260,00	7603,00	6782,00	1,13	8614,00	14196,00	111,00	0,00	0,00	0,00	0,00	250,00	16014,00	123,00	4827,00	266,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10093,00	10369,75	0,68	1755,75	139,00	1817,00	1810,00	5786,00	4972,00	260,00	7603,00	6782,00	1,13	8614,00	14196,00	95,00	0,00	0,00	0,00	0,00	266,00	16014,00	123,00	4827,00	266,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10093,00	10369,75	0,68	1755,75	139,00	1817,00	1810,00	5786,00	4972,00	260,00	7603,00	6782,00	1,13	8614,00	14196,00	91,00	0,00	0,00	0,00	0,00	266,00	16013,00	143,00	4827,00	266,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10093,00	10369,75	0,68	1755,75	139,00	1817,00	1810,00	5786,00	4972,00	260,00	7603,00	6782,00	1,13	8614,00	14196,00	94,00	0,00	0,00	0,00	0,00	251,00	16013,00	126,00	4827,00	267,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10093,00	10369,75	0,68	1755,75	139,00	1817,00	1810,00	5786,00	4972,00	260,00	7603,00	6782,00	1,13	8614,00	14196,00	95,00	0,00	0,00	0,00	0,00	250,00	16014,00	140,00	4827,00	250,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10093,00	10369,75	0,68	1755,75	139,00	1817,00	1810,00	5786,00	4972,00	260,00	7603,00	6782,00	1,13	8614,00	14196,00	111,00	0,00	0,00	0,00	0,00	250,00	16013,00	139,00	4827,00	266,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	253,00	0,00	0,00	1,00	0,00	1,00	47,00	253,00	0,00	1421,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	253,00	0,00	0,00	1,00	0,00	1,00	47,00	253,00	32,00	1421,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	253,00	0,00	0,00	1,00	0,00	1,00	47,00	253,00	15,00	1421,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	253,00	0,00	0,00	1,00	0,00	1,00	31,00	253,00	15,00	1421,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	253,00	0,00	0,00	1,00	0,00	1,00	32,00	253,00	0,00	1421,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	253,00	0,00	0,00	1,00	0,00	1,00	32,00	253,00	0,00	1421,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	253,00	0,00	0,00	1,00	0,00	1,00	47,00	253,00	15,00	1421,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	253,00	0,00	0,00	1,00	0,00	1,00	47,00	253,00	15,00	1421,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	253,00	16,00	0,00	1,00	0,00	1,00	31,00	253,00	15,00	1421,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	253,00	0,00	0,00	1,00	0,00	1,00	78,00	253,00	15,00	1421,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	253,00	0,00	0,00	1,00	0,00	1,00	47,00	253,00	31,00	1421,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	0,00	0,00	0,00	1,00	0,00	1,00	32,00	253,00	0,00	0,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	0,00	0,00	0,00	1,00	0,00	1,00	16,00	253,00	0,00	0,00	16,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	0,00	16,00	0,00	1,00	0,00	1,00	32,00	253,00	0,00	0,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	253,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	253,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	0,00	31,00	0,00	1,00	0,00	1,00	31,00	253,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	253,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	0,00	0,00	0,00	1,00	0,00	1,00	15,00	253,00	0,00	0,00	15,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/05_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	11338,00	11902,25	0,63	1880,25	139,00	2229,00	2222,00	6533,00	5719,00	260,00	8762,00	7941,00	1,14	10022,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	253,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10825,00	10868,00	0,67	1835,00	154,00	1906,00	1899,00	6069,00	5246,00	271,00	7975,00	7145,00	1,13	9033,00	15260,00	93,00	0,00	0,00	0,00	0,00	282,00	17225,00	173,00	5212,00	282,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10825,00	10868,00	0,67	1835,00	154,00	1906,00	1899,00	6069,00	5246,00	271,00	7975,00	7145,00	1,13	9033,00	15260,00	63,00	0,00	0,00	0,00	0,00	281,00	17226,00	171,00	5212,00	297,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10825,00	10868,00	0,67	1835,00	154,00	1906,00	1899,00	6069,00	5246,00	271,00	7975,00	7145,00	1,13	9033,00	15260,00	95,00	0,00	0,00	0,00	0,00	281,00	17226,00	171,00	5212,00	296,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10825,00	10868,00	0,67	1835,00	154,00	1906,00	1899,00	6069,00	5246,00	271,00	7975,00	7145,00	1,13	9033,00	15260,00	78,00	0,00	0,00	0,00	0,00	296,00	17225,00	171,00	5212,00	312,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10825,00	10868,00	0,67	1835,00	154,00	1906,00	1899,00	6069,00	5246,00	271,00	7975,00	7145,00	1,13	9033,00	15260,00	124,00	0,00	0,00	0,00	0,00	265,00	17225,00	141,00	5212,00	281,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10825,00	10868,00	0,67	1835,00	154,00	1906,00	1899,00	6069,00	5246,00	271,00	7975,00	7145,00	1,13	9033,00	15260,00	78,00	0,00	0,00	0,00	0,00	282,00	17225,00	157,00	5212,00	282,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10825,00	10868,00	0,67	1835,00	154,00	1906,00	1899,00	6069,00	5246,00	271,00	7975,00	7145,00	1,13	9033,00	15260,00	94,00	0,00	0,00	0,00	0,00	281,00	17225,00	157,00	5212,00	281,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10825,00	10868,00	0,67	1835,00	154,00	1906,00	1899,00	6069,00	5246,00	271,00	7975,00	7145,00	1,13	9033,00	15260,00	109,00	0,00	0,00	0,00	0,00	297,00	17226,00	173,00	5212,00	297,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10825,00	10868,00	0,67	1835,00	154,00	1906,00	1899,00	6069,00	5246,00	271,00	7975,00	7145,00	1,13	9033,00	15260,00	94,00	0,00	0,00	0,00	0,00	281,00	17225,00	139,00	5212,00	281,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	10825,00	10868,00	0,67	1835,00	154,00	1906,00	1899,00	6069,00	5246,00	271,00	7975,00	7145,00	1,13	9033,00	15260,00	111,00	0,00	0,00	0,00	0,00	267,00	17226,00	141,00	5212,00	282,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	285,00	16,00	0,00	1,00	0,00	1,00	46,00	285,00	15,00	1623,00	46,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	285,00	0,00	0,00	1,00	0,00	1,00	47,00	285,00	16,00	1623,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	285,00	0,00	0,00	1,00	0,00	1,00	47,00	285,00	0,00	1623,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	285,00	0,00	0,00	1,00	0,00	1,00	47,00	285,00	15,00	1623,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	285,00	0,00	0,00	1,00	0,00	1,00	31,00	285,00	16,00	1623,00	46,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	285,00	0,00	0,00	1,00	0,00	1,00	47,00	285,00	31,00	1623,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	285,00	0,00	0,00	1,00	0,00	1,00	47,00	285,00	32,00	1623,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	285,00	0,00	0,00	1,00	0,00	1,00	47,00	285,00	0,00	1623,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	285,00	0,00	0,00	1,00	0,00	1,00	78,00	285,00	0,00	1623,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	285,00	0,00	0,00	1,00	0,00	1,00	47,00	285,00	16,00	1623,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	285,00	15,00	0,00	1,00	0,00	1,00	47,00	285,00	32,00	1623,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	0,00	0,00	0,00	1,00	0,00	1,00	32,00	285,00	0,00	0,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	285,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	285,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	285,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	285,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	285,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	285,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	0,00	0,00	0,00	1,00	0,00	1,00	32,00	285,00	0,00	0,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/06_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	12405,00	12819,00	0,61	1993,00	154,00	2435,00	2428,00	7017,00	6194,00	271,00	9452,00	8622,00	1,15	10826,00	0,00	0,00	0,00	1,00	0,00	1,00	16,00	285,00	0,00	0,00	16,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	13094,00	12858,50	0,65	2158,50	185,00	2304,00	2297,00	7128,00	6270,00	304,00	9432,00	8567,00	1,13	10700,00	18378,00	140,00	0,00	0,00	0,00	0,00	328,00	20784,00	140,00	5887,00	344,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	13094,00	12858,50	0,65	2158,50	185,00	2304,00	2297,00	7128,00	6270,00	304,00	9432,00	8567,00	1,13	10700,00	18378,00	187,00	0,00	0,00	0,00	0,00	359,00	20785,00	141,00	5887,00	375,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	13094,00	12858,50	0,65	2158,50	185,00	2304,00	2297,00	7128,00	6270,00	304,00	9432,00	8567,00	1,13	10700,00	18378,00	174,00	0,00	0,00	0,00	0,00	328,00	20784,00	139,00	5887,00	344,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	13094,00	12858,50	0,65	2158,50	185,00	2304,00	2297,00	7128,00	6270,00	304,00	9432,00	8567,00	1,13	10700,00	18378,00	124,00	0,00	0,00	0,00	0,00	344,00	20784,00	204,00	5887,00	344,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	13094,00	12858,50	0,65	2158,50	185,00	2304,00	2297,00	7128,00	6270,00	304,00	9432,00	8567,00	1,13	10700,00	18378,00	170,00	0,00	0,00	0,00	0,00	329,00	20784,00	143,00	5887,00	344,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	13094,00	12858,50	0,65	2158,50	185,00	2304,00	2297,00	7128,00	6270,00	304,00	9432,00	8567,00	1,13	10700,00	18378,00	155,00	0,00	0,00	0,00	0,00	328,00	20784,00	141,00	5887,00	328,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	13094,00	12858,50	0,65	2158,50	185,00	2304,00	2297,00	7128,00	6270,00	304,00	9432,00	8567,00	1,13	10700,00	18378,00	139,00	0,00	0,00	0,00	0,00	343,00	20785,00	142,00	5887,00	343,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	13094,00	12858,50	0,65	2158,50	185,00	2304,00	2297,00	7128,00	6270,00	304,00	9432,00	8567,00	1,13	10700,00	18378,00	127,00	0,00	0,00	0,00	0,00	344,00	20785,00	187,00	5887,00	360,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	13094,00	12858,50	0,65	2158,50	185,00	2304,00	2297,00	7128,00	6270,00	304,00	9432,00	8567,00	1,13	10700,00	18378,00	94,00	0,00	0,00	0,00	0,00	375,00	20784,00	218,00	5887,00	391,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	13094,00	12858,50	0,65	2158,50	185,00	2304,00	2297,00	7128,00	6270,00	304,00	9432,00	8567,00	1,13	10700,00	18378,00	173,00	0,00	0,00	0,00	0,00	328,00	20784,00	140,00	5887,00	344,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	351,00	16,00	0,00	1,00	0,00	1,00	47,00	351,00	15,00	1953,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	351,00	0,00	0,00	1,00	0,00	1,00	62,00	351,00	16,00	1953,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	351,00	0,00	0,00	1,00	0,00	1,00	47,00	351,00	47,00	1953,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	351,00	0,00	0,00	1,00	0,00	1,00	47,00	351,00	0,00	1953,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	351,00	0,00	0,00	1,00	0,00	1,00	47,00	351,00	0,00	1953,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	351,00	0,00	0,00	1,00	0,00	1,00	47,00	351,00	16,00	1953,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	351,00	0,00	0,00	1,00	0,00	1,00	47,00	351,00	0,00	1953,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	351,00	0,00	0,00	1,00	0,00	1,00	47,00	351,00	16,00	1953,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	351,00	0,00	0,00	1,00	0,00	1,00	47,00	351,00	15,00	1953,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	351,00	0,00	0,00	1,00	0,00	1,00	47,00	351,00	16,00	1953,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	351,00	0,00	0,00	1,00	0,00	1,00	47,00	351,00	15,00	1953,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	0,00	15,00	0,00	1,00	0,00	1,00	31,00	351,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	0,00	15,00	0,00	1,00	0,00	1,00	78,00	351,00	0,00	0,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	0,00	0,00	0,00	1,00	0,00	1,00	46,00	351,00	0,00	0,00	46,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	351,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	0,00	0,00	0,00	1,00	0,00	1,00	32,00	351,00	0,00	0,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	351,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	351,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	351,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/07_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15159,00	15406,00	0,59	2365,00	185,00	2993,00	2986,00	8367,00	7509,00	304,00	11360,00	10495,00	1,15	13041,00	0,00	16,00	0,00	1,00	0,00	1,00	47,00	351,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14095,00	13697,25	0,64	2289,25	203,00	2464,00	2457,00	7588,00	6714,00	318,00	10052,00	9171,00	1,13	11408,00	19720,00	140,00	0,00	0,00	0,00	0,00	375,00	22354,00	187,00	6373,00	375,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14095,00	13697,25	0,64	2289,25	203,00	2464,00	2457,00	7588,00	6714,00	318,00	10052,00	9171,00	1,13	11408,00	19720,00	203,00	0,00	0,00	0,00	0,00	375,00	22353,00	140,00	6373,00	391,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14095,00	13697,25	0,64	2289,25	203,00	2464,00	2457,00	7588,00	6714,00	318,00	10052,00	9171,00	1,13	11408,00	19720,00	142,00	0,00	0,00	0,00	0,00	359,00	22353,00	171,00	6373,00	359,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14095,00	13697,25	0,64	2289,25	203,00	2464,00	2457,00	7588,00	6714,00	318,00	10052,00	9171,00	1,13	11408,00	19720,00	154,00	0,00	0,00	0,00	0,00	375,00	22353,00	143,00	6373,00	375,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14095,00	13697,25	0,64	2289,25	203,00	2464,00	2457,00	7588,00	6714,00	318,00	10052,00	9171,00	1,13	11408,00	19720,00	203,00	0,00	0,00	0,00	0,00	375,00	22353,00	141,00	6373,00	390,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14095,00	13697,25	0,64	2289,25	203,00	2464,00	2457,00	7588,00	6714,00	318,00	10052,00	9171,00	1,13	11408,00	19720,00	123,00	0,00	0,00	0,00	0,00	375,00	22354,00	221,00	6373,00	375,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14095,00	13697,25	0,64	2289,25	203,00	2464,00	2457,00	7588,00	6714,00	318,00	10052,00	9171,00	1,13	11408,00	19720,00	156,00	0,00	0,00	0,00	0,00	375,00	22353,00	173,00	6373,00	375,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14095,00	13697,25	0,64	2289,25	203,00	2464,00	2457,00	7588,00	6714,00	318,00	10052,00	9171,00	1,13	11408,00	19720,00	141,00	0,00	0,00	0,00	0,00	406,00	22354,00	219,00	6373,00	406,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14095,00	13697,25	0,64	2289,25	203,00	2464,00	2457,00	7588,00	6714,00	318,00	10052,00	9171,00	1,13	11408,00	19720,00	157,00	0,00	0,00	0,00	0,00	359,00	22353,00	202,00	6373,00	359,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14095,00	13697,25	0,64	2289,25	203,00	2464,00	2457,00	7588,00	6714,00	318,00	10052,00	9171,00	1,13	11408,00	19720,00	139,00	0,00	0,00	0,00	0,00	360,00	22353,00	189,00	6373,00	360,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	383,00	0,00	0,00	1,00	0,00	1,00	62,00	383,00	0,00	2190,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	383,00	0,00	0,00	1,00	0,00	1,00	63,00	383,00	32,00	2190,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	383,00	15,00	0,00	1,00	0,00	1,00	62,00	383,00	0,00	2190,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	383,00	0,00	0,00	1,00	0,00	1,00	109,00	383,00	16,00	2190,00	109,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	383,00	0,00	0,00	1,00	0,00	1,00	63,00	383,00	32,00	2190,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	383,00	0,00	0,00	1,00	0,00	1,00	62,00	383,00	15,00	2190,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	383,00	0,00	0,00	1,00	0,00	1,00	47,00	383,00	31,00	2190,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	383,00	15,00	0,00	1,00	0,00	1,00	47,00	383,00	16,00	2190,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	383,00	15,00	0,00	1,00	0,00	1,00	62,00	383,00	32,00	2190,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	383,00	0,00	0,00	1,00	0,00	1,00	63,00	383,00	32,00	2190,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	383,00	0,00	0,00	1,00	0,00	1,00	47,00	383,00	0,00	2190,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	383,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	383,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	0,00	0,00	0,00	1,00	0,00	1,00	32,00	383,00	0,00	0,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	0,00	0,00	0,00	1,00	0,00	1,00	32,00	383,00	0,00	0,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	383,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	383,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	383,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	0,00	16,00	0,00	1,00	0,00	1,00	47,00	383,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/08_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16395,00	16537,25	0,58	2519,25	203,00	3234,00	3227,00	8968,00	8094,00	318,00	12202,00	11321,00	1,15	14018,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	383,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14516,00	13983,75	0,64	2335,75	212,00	2515,00	2508,00	7751,00	6868,00	324,00	10266,00	9376,00	1,13	11648,00	20361,00	110,00	0,00	0,00	0,00	0,00	391,00	23131,00	218,00	6771,00	406,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14516,00	13983,75	0,64	2335,75	212,00	2515,00	2508,00	7751,00	6868,00	324,00	10266,00	9376,00	1,13	11648,00	20361,00	173,00	0,00	0,00	0,00	0,00	375,00	23131,00	171,00	6771,00	375,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14516,00	13983,75	0,64	2335,75	212,00	2515,00	2508,00	7751,00	6868,00	324,00	10266,00	9376,00	1,13	11648,00	20361,00	144,00	0,00	0,00	0,00	0,00	375,00	23132,00	216,00	6771,00	375,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14516,00	13983,75	0,64	2335,75	212,00	2515,00	2508,00	7751,00	6868,00	324,00	10266,00	9376,00	1,13	11648,00	20361,00	219,00	0,00	0,00	0,00	0,00	422,00	23131,00	203,00	6771,00	422,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14516,00	13983,75	0,64	2335,75	212,00	2515,00	2508,00	7751,00	6868,00	324,00	10266,00	9376,00	1,13	11648,00	20361,00	144,00	0,00	0,00	0,00	0,00	377,00	23132,00	202,00	6771,00	377,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14516,00	13983,75	0,64	2335,75	212,00	2515,00	2508,00	7751,00	6868,00	324,00	10266,00	9376,00	1,13	11648,00	20361,00	158,00	0,00	0,00	0,00	0,00	375,00	23131,00	171,00	6771,00	390,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14516,00	13983,75	0,64	2335,75	212,00	2515,00	2508,00	7751,00	6868,00	324,00	10266,00	9376,00	1,13	11648,00	20361,00	155,00	0,00	0,00	0,00	0,00	406,00	23131,00	235,00	6771,00	422,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14516,00	13983,75	0,64	2335,75	212,00	2515,00	2508,00	7751,00	6868,00	324,00	10266,00	9376,00	1,13	11648,00	20361,00	127,00	0,00	0,00	0,00	0,00	375,00	23131,00	201,00	6771,00	391,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14516,00	13983,75	0,64	2335,75	212,00	2515,00	2508,00	7751,00	6868,00	324,00	10266,00	9376,00	1,13	11648,00	20361,00	95,00	0,00	0,00	0,00	0,00	375,00	23132,00	233,00	6771,00	391,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	14516,00	13983,75	0,64	2335,75	212,00	2515,00	2508,00	7751,00	6868,00	324,00	10266,00	9376,00	1,13	11648,00	20361,00	95,00	0,00	0,00	0,00	0,00	375,00	23131,00	218,00	6771,00	375,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	401,00	0,00	0,00	1,00	0,00	1,00	63,00	401,00	16,00	2393,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	401,00	0,00	0,00	1,00	0,00	1,00	47,00	401,00	0,00	2393,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	401,00	0,00	0,00	1,00	0,00	1,00	62,00	401,00	47,00	2393,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	401,00	0,00	0,00	1,00	0,00	1,00	47,00	401,00	16,00	2393,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	401,00	0,00	0,00	1,00	0,00	1,00	63,00	401,00	0,00	2393,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	401,00	0,00	0,00	1,00	0,00	1,00	62,00	401,00	15,00	2393,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	401,00	0,00	0,00	1,00	0,00	1,00	47,00	401,00	0,00	2393,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	401,00	0,00	0,00	1,00	0,00	1,00	63,00	401,00	15,00	2393,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	401,00	0,00	0,00	1,00	0,00	1,00	62,00	401,00	30,00	2393,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	401,00	0,00	0,00	1,00	0,00	1,00	47,00	401,00	16,00	2393,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	401,00	0,00	0,00	1,00	0,00	1,00	63,00	401,00	15,00	2393,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	401,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	401,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	401,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	401,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	401,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	401,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	401,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	0,00	0,00	0,00	1,00	0,00	1,00	93,00	401,00	0,00	0,00	93,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/09_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16906,00	16934,75	0,58	2574,75	212,00	3315,00	3308,00	9185,00	8302,00	324,00	12500,00	11610,00	1,15	14360,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	401,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15116,00	14393,00	0,64	2402,00	223,00	2589,00	2582,00	7982,00	7090,00	333,00	10571,00	9672,00	1,13	11991,00	21294,00	155,00	0,00	0,00	0,00	0,00	391,00	24235,00	204,00	7202,00	391,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15116,00	14393,00	0,64	2402,00	223,00	2589,00	2582,00	7982,00	7090,00	333,00	10571,00	9672,00	1,13	11991,00	21294,00	203,00	0,00	0,00	0,00	0,00	408,00	24234,00	189,00	7202,00	408,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15116,00	14393,00	0,64	2402,00	223,00	2589,00	2582,00	7982,00	7090,00	333,00	10571,00	9672,00	1,13	11991,00	21294,00	187,00	0,00	0,00	0,00	0,00	391,00	24235,00	204,00	7202,00	391,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15116,00	14393,00	0,64	2402,00	223,00	2589,00	2582,00	7982,00	7090,00	333,00	10571,00	9672,00	1,13	11991,00	21294,00	171,00	0,00	0,00	0,00	0,00	390,00	24234,00	203,00	7202,00	390,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15116,00	14393,00	0,64	2402,00	223,00	2589,00	2582,00	7982,00	7090,00	333,00	10571,00	9672,00	1,13	11991,00	21294,00	111,00	0,00	0,00	0,00	0,00	422,00	24234,00	264,00	7202,00	422,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15116,00	14393,00	0,64	2402,00	223,00	2589,00	2582,00	7982,00	7090,00	333,00	10571,00	9672,00	1,13	11991,00	21294,00	170,00	0,00	0,00	0,00	0,00	390,00	24234,00	173,00	7202,00	390,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15116,00	14393,00	0,64	2402,00	223,00	2589,00	2582,00	7982,00	7090,00	333,00	10571,00	9672,00	1,13	11991,00	21294,00	156,00	0,00	0,00	0,00	0,00	406,00	24234,00	156,00	7202,00	406,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15116,00	14393,00	0,64	2402,00	223,00	2589,00	2582,00	7982,00	7090,00	333,00	10571,00	9672,00	1,13	11991,00	21294,00	172,00	0,00	0,00	0,00	0,00	391,00	24234,00	172,00	7202,00	391,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15116,00	14393,00	0,64	2402,00	223,00	2589,00	2582,00	7982,00	7090,00	333,00	10571,00	9672,00	1,13	11991,00	21294,00	157,00	0,00	0,00	0,00	0,00	390,00	24234,00	171,00	7202,00	406,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15116,00	14393,00	0,64	2402,00	223,00	2589,00	2582,00	7982,00	7090,00	333,00	10571,00	9672,00	1,13	11991,00	21294,00	218,00	0,00	0,00	0,00	0,00	454,00	24234,00	220,00	7202,00	454,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	427,00	0,00	0,00	1,00	0,00	1,00	63,00	427,00	48,00	2629,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	427,00	0,00	0,00	1,00	0,00	1,00	47,00	427,00	0,00	2629,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	427,00	0,00	0,00	1,00	0,00	1,00	62,00	427,00	31,00	2629,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	427,00	0,00	0,00	1,00	0,00	1,00	47,00	427,00	0,00	2629,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	427,00	0,00	0,00	1,00	0,00	1,00	62,00	427,00	16,00	2629,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	427,00	0,00	0,00	1,00	0,00	1,00	63,00	427,00	16,00	2629,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	427,00	0,00	0,00	1,00	0,00	1,00	63,00	427,00	16,00	2629,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	427,00	0,00	0,00	1,00	0,00	1,00	62,00	427,00	15,00	2629,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	427,00	0,00	0,00	1,00	0,00	1,00	62,00	427,00	16,00	2629,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	427,00	0,00	0,00	1,00	0,00	1,00	63,00	427,00	47,00	2629,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	427,00	0,00	0,00	1,00	0,00	1,00	63,00	427,00	31,00	2629,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	427,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	0,00	0,00	0,00	1,00	0,00	1,00	32,00	427,00	0,00	0,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	427,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	427,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	427,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	0,00	0,00	0,00	1,00	0,00	1,00	32,00	427,00	0,00	0,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	427,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	427,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/10_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	17741,00	17636,50	0,57	2664,50	223,00	3470,00	3463,00	9557,00	8665,00	333,00	13027,00	12128,00	1,15	14972,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	427,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15786,00	14862,00	0,63	2478,00	234,00	2676,00	2669,00	8244,00	7343,00	343,00	10920,00	10012,00	1,13	12384,00	22335,00	171,00	0,00	0,00	0,00	0,00	421,00	25459,00	204,00	7663,00	421,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15786,00	14862,00	0,63	2478,00	234,00	2676,00	2669,00	8244,00	7343,00	343,00	10920,00	10012,00	1,13	12384,00	22335,00	233,00	0,00	0,00	0,00	0,00	438,00	25459,00	173,00	7663,00	438,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15786,00	14862,00	0,63	2478,00	234,00	2676,00	2669,00	8244,00	7343,00	343,00	10920,00	10012,00	1,13	12384,00	22335,00	156,00	0,00	0,00	0,00	0,00	422,00	25459,00	220,00	7663,00	438,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15786,00	14862,00	0,63	2478,00	234,00	2676,00	2669,00	8244,00	7343,00	343,00	10920,00	10012,00	1,13	12384,00	22335,00	155,00	0,00	0,00	0,00	0,00	422,00	25459,00	235,00	7663,00	422,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15786,00	14862,00	0,63	2478,00	234,00	2676,00	2669,00	8244,00	7343,00	343,00	10920,00	10012,00	1,13	12384,00	22335,00	202,00	0,00	0,00	0,00	0,00	437,00	25460,00	156,00	7663,00	437,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15786,00	14862,00	0,63	2478,00	234,00	2676,00	2669,00	8244,00	7343,00	343,00	10920,00	10012,00	1,13	12384,00	22335,00	180,00	0,00	0,00	0,00	0,00	419,00	25459,00	204,00	7663,00	435,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15786,00	14862,00	0,63	2478,00	234,00	2676,00	2669,00	8244,00	7343,00	343,00	10920,00	10012,00	1,13	12384,00	22335,00	157,00	0,00	0,00	0,00	0,00	421,00	25459,00	188,00	7663,00	421,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15786,00	14862,00	0,63	2478,00	234,00	2676,00	2669,00	8244,00	7343,00	343,00	10920,00	10012,00	1,13	12384,00	22335,00	203,00	0,00	0,00	0,00	0,00	407,00	25459,00	172,00	7663,00	407,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15786,00	14862,00	0,63	2478,00	234,00	2676,00	2669,00	8244,00	7343,00	343,00	10920,00	10012,00	1,13	12384,00	22335,00	158,00	0,00	0,00	0,00	0,00	422,00	25459,00	203,00	7663,00	438,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	15786,00	14862,00	0,63	2478,00	234,00	2676,00	2669,00	8244,00	7343,00	343,00	10920,00	10012,00	1,13	12384,00	22335,00	93,00	0,00	0,00	0,00	0,00	469,00	25459,00	360,00	7663,00	484,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	453,00	16,00	0,00	1,00	0,00	1,00	62,00	453,00	15,00	2874,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	453,00	0,00	0,00	1,00	0,00	1,00	63,00	453,00	32,00	2874,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	453,00	0,00	0,00	1,00	0,00	1,00	63,00	453,00	16,00	2874,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	453,00	0,00	0,00	1,00	0,00	1,00	63,00	453,00	0,00	2874,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	453,00	0,00	0,00	1,00	0,00	1,00	62,00	453,00	16,00	2874,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	453,00	0,00	0,00	1,00	0,00	1,00	63,00	453,00	15,00	2874,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	453,00	0,00	0,00	1,00	0,00	1,00	63,00	453,00	16,00	2874,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	453,00	0,00	0,00	1,00	0,00	1,00	63,00	453,00	0,00	2874,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	453,00	0,00	0,00	1,00	0,00	1,00	62,00	453,00	15,00	2874,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	453,00	0,00	0,00	1,00	0,00	1,00	62,00	453,00	15,00	2874,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	453,00	0,00	0,00	1,00	0,00	1,00	62,00	453,00	0,00	2874,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	453,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	453,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	453,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	453,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	453,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	453,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	453,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	453,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/11_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	18646,00	18398,00	0,57	2764,00	234,00	3638,00	3631,00	9960,00	9059,00	343,00	13598,00	12690,00	1,15	15634,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	453,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16872,00	15609,50	0,63	2596,50	250,00	2815,00	2808,00	8662,00	7744,00	361,00	11477,00	10552,00	1,13	13013,00	24043,00	205,00	0,00	0,00	0,00	0,00	437,00	27427,00	202,00	8207,00	453,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16872,00	15609,50	0,63	2596,50	250,00	2815,00	2808,00	8662,00	7744,00	361,00	11477,00	10552,00	1,13	13013,00	24043,00	139,00	0,00	0,00	0,00	0,00	438,00	27427,00	237,00	8207,00	453,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16872,00	15609,50	0,63	2596,50	250,00	2815,00	2808,00	8662,00	7744,00	361,00	11477,00	10552,00	1,13	13013,00	24043,00	202,00	0,00	0,00	0,00	0,00	453,00	27426,00	235,00	8207,00	469,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16872,00	15609,50	0,63	2596,50	250,00	2815,00	2808,00	8662,00	7744,00	361,00	11477,00	10552,00	1,13	13013,00	24043,00	141,00	0,00	0,00	0,00	0,00	468,00	27427,00	280,00	8207,00	484,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16872,00	15609,50	0,63	2596,50	250,00	2815,00	2808,00	8662,00	7744,00	361,00	11477,00	10552,00	1,13	13013,00	24043,00	173,00	0,00	0,00	0,00	0,00	453,00	27426,00	233,00	8207,00	469,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16872,00	15609,50	0,63	2596,50	250,00	2815,00	2808,00	8662,00	7744,00	361,00	11477,00	10552,00	1,13	13013,00	24043,00	170,00	0,00	0,00	0,00	0,00	453,00	27426,00	267,00	8207,00	453,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16872,00	15609,50	0,63	2596,50	250,00	2815,00	2808,00	8662,00	7744,00	361,00	11477,00	10552,00	1,13	13013,00	24043,00	157,00	0,00	0,00	0,00	0,00	437,00	27426,00	249,00	8207,00	453,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16872,00	15609,50	0,63	2596,50	250,00	2815,00	2808,00	8662,00	7744,00	361,00	11477,00	10552,00	1,13	13013,00	24043,00	155,00	0,00	0,00	0,00	0,00	453,00	27426,00	205,00	8207,00	453,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16872,00	15609,50	0,63	2596,50	250,00	2815,00	2808,00	8662,00	7744,00	361,00	11477,00	10552,00	1,13	13013,00	24043,00	110,00	0,00	0,00	0,00	0,00	485,00	27426,00	299,00	8207,00	501,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	16872,00	15609,50	0,63	2596,50	250,00	2815,00	2808,00	8662,00	7744,00	361,00	11477,00	10552,00	1,13	13013,00	24043,00	216,00	0,00	0,00	0,00	0,00	453,00	27426,00	221,00	8207,00	453,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	499,00	0,00	0,00	1,00	0,00	1,00	63,00	499,00	16,00	3200,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	499,00	0,00	0,00	1,00	0,00	1,00	63,00	499,00	32,00	3200,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	499,00	0,00	0,00	1,00	0,00	1,00	63,00	499,00	16,00	3200,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	499,00	0,00	0,00	1,00	0,00	1,00	63,00	499,00	15,00	3200,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	499,00	0,00	0,00	1,00	0,00	1,00	62,00	499,00	16,00	3200,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	499,00	0,00	0,00	1,00	0,00	1,00	125,00	499,00	0,00	3200,00	125,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	499,00	0,00	0,00	1,00	0,00	1,00	63,00	499,00	31,00	3200,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	499,00	15,00	0,00	1,00	0,00	1,00	63,00	499,00	0,00	3200,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	499,00	0,00	0,00	1,00	0,00	1,00	63,00	499,00	16,00	3200,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INC	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	499,00	0,00	0,00	1,00	0,00	1,00	62,00	499,00	47,00	3200,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	1	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	499,00	0,00	0,00	1,00	0,00	1,00	62,00	499,00	15,00	3200,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	2	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	0,00	0,00	0,00	1,00	0,00	1,00	31,00	499,00	0,00	0,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	3	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	499,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	4	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	499,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	5	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	499,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	6	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	499,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	7	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	499,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	8	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	499,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	9	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	499,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/12_sv_sep17/EASy/QM_0.ivml	SCENARIO-INST 	10	net.ssehub.easy.producer.scenario_tests.RealMeasurementsTests.testQualiMasterSep17Variants	20067,00	19556,00	0,56	2916,00	250,00	3886,00	3879,00	10579,00	9661,00	361,00	14465,00	13540,00	1,15	16640,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	499,00	0,00	0,00	47,00	
Index: /reasoner/measures/benchmark-results-new-1.3-ojdk10-typeCache/measurements-scenarios.tsv
===================================================================
--- /reasoner/measures/benchmark-results-new-1.3-ojdk10-typeCache/measurements-scenarios.tsv	(revision 278)
+++ /reasoner/measures/benchmark-results-new-1.3-ojdk10-typeCache/measurements-scenarios.tsv	(revision 278)
@@ -0,0 +1,211 @@
+model name	URI	tag	runCount	caller	MODEL_ANNOTATIONS	MODEL_COMPLEXITY	MODEL_CONSTRAINT_AVG_COMPLEXITY	MODEL_CONSTRAINT_COMPLEXITY	MODEL_CONSTRAINT_INSTANCES	MODEL_CONSTRAINT_VARIABLES	MODEL_CONSTRAINT_VARIABLES_NO_CONTAINER	MODEL_NORMAL_VARIABLES	MODEL_NORMAL_VARIABLES_NO_CONTAINER	MODEL_TOPLEVEL_VARIABLES	MODEL_VARIABLES	MODEL_VARIABLES_WITHOUT_CONTAINER	MODEL_VARIABLE_AVG_COMPLEXITY	MODEL_VARIABLE_COMPLEXITY	REASONER_CONSTRAINT_COUNT	REASONER_EVALUATION_TIME	REASONER_INSTANCE_CREATION_TIME	REASONER_PROBLEMS	REASONER_PROBLEM_ASSIGNMENTS	REASONER_PROBLEM_CONSTRAINTS	REASONER_REASONING_TIME	REASONER_REEVALUATION_COUNT	REASONER_TRANSLATION_TIME	REASONER_VARIABLES_IN_CONSTRAINTS	RESPONSETIME_AUTO	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	28645,00	377,00	0,00	0,00	0,00	0,00	875,00	33428,00	406,00	10508,00	906,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	28645,00	249,00	0,00	0,00	0,00	0,00	703,00	33428,00	359,00	10508,00	719,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	28645,00	279,00	0,00	0,00	0,00	0,00	610,00	33428,00	267,00	10508,00	641,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	28645,00	249,00	0,00	0,00	0,00	0,00	578,00	33428,00	267,00	10508,00	593,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	28645,00	218,00	0,00	0,00	0,00	0,00	563,00	33428,00	298,00	10508,00	563,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	28645,00	253,00	0,00	0,00	0,00	0,00	563,00	33428,00	279,00	10508,00	578,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	28645,00	266,00	0,00	0,00	0,00	0,00	548,00	33428,00	251,00	10508,00	564,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	28645,00	232,00	0,00	0,00	0,00	0,00	563,00	33428,00	299,00	10508,00	578,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	28645,00	220,00	0,00	0,00	0,00	0,00	531,00	33429,00	248,00	10508,00	547,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	28645,00	237,00	0,00	0,00	0,00	0,00	547,00	33429,00	265,00	10508,00	562,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INC	1	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	551,00	0,00	0,00	1,00	0,00	1,00	78,00	551,00	0,00	3849,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INC	2	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	551,00	0,00	0,00	1,00	0,00	1,00	94,00	551,00	16,00	3849,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INC	3	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	551,00	0,00	0,00	1,00	0,00	1,00	78,00	551,00	0,00	3849,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INC	4	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	551,00	0,00	0,00	1,00	0,00	1,00	78,00	551,00	16,00	3849,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INC	5	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	551,00	0,00	0,00	1,00	0,00	1,00	94,00	551,00	32,00	3849,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INC	6	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	551,00	0,00	0,00	1,00	0,00	1,00	78,00	551,00	31,00	3849,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INC	7	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	551,00	0,00	0,00	1,00	0,00	1,00	94,00	551,00	32,00	3849,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INC	8	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	551,00	16,00	0,00	1,00	0,00	1,00	79,00	551,00	31,00	3849,00	79,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INC	9	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	551,00	0,00	0,00	1,00	0,00	1,00	94,00	551,00	63,00	3849,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INC	10	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	551,00	0,00	0,00	1,00	0,00	1,00	78,00	551,00	16,00	3849,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INST 	1	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	551,00	0,00	0,00	1,00	0,00	1,00	78,00	551,00	47,00	3849,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INST 	2	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	0,00	0,00	1,00	0,00	1,00	62,00	551,00	0,00	0,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INST 	3	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	0,00	0,00	1,00	0,00	1,00	63,00	551,00	0,00	0,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INST 	4	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	0,00	0,00	1,00	0,00	1,00	63,00	551,00	16,00	0,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INST 	5	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	0,00	0,00	1,00	0,00	1,00	62,00	551,00	0,00	0,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INST 	6	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	0,00	0,00	1,00	0,00	1,00	62,00	551,00	0,00	0,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INST 	7	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	0,00	0,00	1,00	0,00	1,00	62,00	551,00	0,00	0,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INST 	8	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	0,00	0,00	1,00	0,00	1,00	78,00	551,00	0,00	0,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INST 	9	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	0,00	0,00	1,00	0,00	1,00	78,00	551,00	0,00	0,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb17/EASy/QM_0.ivml	SCENARIO-INST 	10	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterFeb17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	0,00	0,00	1,00	0,00	1,00	78,00	551,00	0,00	0,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	28645,00	250,00	0,00	0,00	0,00	0,00	609,00	33428,00	312,00	10508,00	625,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	28645,00	186,00	0,00	0,00	0,00	0,00	546,00	33429,00	298,00	10508,00	562,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	28645,00	232,00	0,00	0,00	0,00	0,00	593,00	33429,00	298,00	10508,00	609,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	28645,00	252,00	0,00	0,00	0,00	0,00	578,00	33429,00	280,00	10508,00	593,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	28645,00	252,00	0,00	0,00	0,00	0,00	565,00	33429,00	280,00	10508,00	581,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	28645,00	249,00	0,00	0,00	0,00	0,00	531,00	33428,00	235,00	10508,00	547,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	28645,00	249,00	0,00	0,00	0,00	0,00	547,00	33428,00	250,00	10508,00	562,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	28645,00	221,00	0,00	0,00	0,00	0,00	609,00	33428,00	233,00	10508,00	625,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	28645,00	203,00	0,00	0,00	0,00	0,00	547,00	33428,00	296,00	10508,00	562,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	20717,00	20185,75	0,61	3303,75	324,00	3713,00	3705,00	11161,00	10169,00	412,00	14874,00	13874,00	1,14	16882,00	28645,00	312,00	0,00	0,00	0,00	0,00	625,00	33429,00	266,00	10508,00	640,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INC	1	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	551,00	0,00	0,00	1,00	0,00	1,00	79,00	551,00	15,00	3849,00	79,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INC	2	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	551,00	15,00	0,00	1,00	0,00	1,00	78,00	551,00	16,00	3849,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INC	3	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	551,00	0,00	0,00	1,00	0,00	1,00	94,00	551,00	31,00	3849,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INC	4	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	551,00	0,00	0,00	1,00	0,00	1,00	94,00	551,00	16,00	3849,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INC	5	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	551,00	0,00	0,00	1,00	0,00	1,00	78,00	551,00	31,00	3849,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INC	6	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	551,00	0,00	0,00	1,00	0,00	1,00	94,00	551,00	48,00	3849,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INC	7	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	551,00	0,00	0,00	1,00	0,00	1,00	78,00	551,00	16,00	3849,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INC	8	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	551,00	0,00	0,00	1,00	0,00	1,00	78,00	551,00	32,00	3849,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INC	9	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	551,00	0,00	0,00	1,00	0,00	1,00	94,00	551,00	48,00	3849,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INC	10	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	551,00	0,00	0,00	1,00	0,00	1,00	94,00	551,00	31,00	3849,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INST 	1	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	551,00	0,00	0,00	1,00	0,00	1,00	94,00	551,00	32,00	3849,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INST 	2	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	0,00	0,00	1,00	0,00	1,00	62,00	551,00	0,00	0,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INST 	3	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	0,00	0,00	1,00	0,00	1,00	63,00	551,00	0,00	0,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INST 	4	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	16,00	0,00	1,00	0,00	1,00	63,00	551,00	0,00	0,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INST 	5	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	0,00	0,00	1,00	0,00	1,00	63,00	551,00	0,00	0,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INST 	6	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	0,00	0,00	1,00	0,00	1,00	47,00	551,00	0,00	0,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INST 	7	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	0,00	0,00	1,00	0,00	1,00	62,00	551,00	0,00	0,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INST 	8	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	0,00	0,00	1,00	0,00	1,00	172,00	551,00	0,00	0,00	172,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INST 	9	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	0,00	0,00	1,00	0,00	1,00	63,00	551,00	0,00	0,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/sep17/EASy/QM_0.ivml	SCENARIO-INST 	10	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterSep17	24107,00	24372,75	0,56	3642,75	324,00	4849,00	4841,00	13195,00	12203,00	412,00	18044,00	17044,00	1,15	20730,00	0,00	15,00	0,00	1,00	0,00	1,00	78,00	551,00	0,00	0,00	78,00	
+april14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/april14/EASy/april14_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterApril14	0,00	106,00	0,75	15,00	0,00	0,00	0,00	67,00	48,00	17,00	67,00	48,00	1,36	91,00	24,00	0,00	0,00	0,00	0,00	0,00	16,00	24,00	16,00	6,00	16,00	
+april14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/april14/EASy/april14_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterApril14	0,00	106,00	0,75	15,00	0,00	0,00	0,00	67,00	48,00	17,00	67,00	48,00	1,36	91,00	24,00	0,00	0,00	0,00	0,00	0,00	0,00	24,00	0,00	6,00	0,00	
+april14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/april14/EASy/april14_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterApril14	0,00	106,00	0,75	15,00	0,00	0,00	0,00	67,00	48,00	17,00	67,00	48,00	1,36	91,00	24,00	0,00	0,00	0,00	0,00	0,00	0,00	24,00	0,00	6,00	0,00	
+april14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/april14/EASy/april14_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterApril14	0,00	106,00	0,75	15,00	0,00	0,00	0,00	67,00	48,00	17,00	67,00	48,00	1,36	91,00	24,00	0,00	0,00	0,00	0,00	0,00	0,00	24,00	0,00	6,00	0,00	
+april14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/april14/EASy/april14_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterApril14	0,00	106,00	0,75	15,00	0,00	0,00	0,00	67,00	48,00	17,00	67,00	48,00	1,36	91,00	24,00	0,00	0,00	0,00	0,00	0,00	0,00	24,00	0,00	6,00	0,00	
+april14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/april14/EASy/april14_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterApril14	0,00	106,00	0,75	15,00	0,00	0,00	0,00	67,00	48,00	17,00	67,00	48,00	1,36	91,00	24,00	0,00	0,00	0,00	0,00	0,00	0,00	24,00	0,00	6,00	0,00	
+april14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/april14/EASy/april14_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterApril14	0,00	106,00	0,75	15,00	0,00	0,00	0,00	67,00	48,00	17,00	67,00	48,00	1,36	91,00	24,00	0,00	0,00	0,00	0,00	0,00	0,00	24,00	0,00	6,00	0,00	
+april14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/april14/EASy/april14_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterApril14	0,00	106,00	0,75	15,00	0,00	0,00	0,00	67,00	48,00	17,00	67,00	48,00	1,36	91,00	24,00	0,00	0,00	0,00	0,00	0,00	0,00	24,00	0,00	6,00	0,00	
+april14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/april14/EASy/april14_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterApril14	0,00	106,00	0,75	15,00	0,00	0,00	0,00	67,00	48,00	17,00	67,00	48,00	1,36	91,00	24,00	0,00	0,00	0,00	0,00	0,00	0,00	24,00	0,00	6,00	0,00	
+april14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/april14/EASy/april14_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.LocalRealTests.testQualiMasterApril14	0,00	106,00	0,75	15,00	0,00	0,00	0,00	67,00	48,00	17,00	67,00	48,00	1,36	91,00	24,00	0,00	0,00	0,00	0,00	0,00	0,00	24,00	0,00	6,00	0,00	
+PL_YMS_Platform	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_YMS_Platform/EASy/PL_YMS_Platform_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlYmsPlatform	0,00	16,00	0,50	1,00	0,00	8,00	8,00	5,00	5,00	2,00	13,00	13,00	1,15	15,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+PL_YMS_Platform	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_YMS_Platform/EASy/PL_YMS_Platform_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlYmsPlatform	0,00	16,00	0,50	1,00	0,00	8,00	8,00	5,00	5,00	2,00	13,00	13,00	1,15	15,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+PL_YMS_Platform	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_YMS_Platform/EASy/PL_YMS_Platform_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlYmsPlatform	0,00	16,00	0,50	1,00	0,00	8,00	8,00	5,00	5,00	2,00	13,00	13,00	1,15	15,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+PL_YMS_Platform	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_YMS_Platform/EASy/PL_YMS_Platform_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlYmsPlatform	0,00	16,00	0,50	1,00	0,00	8,00	8,00	5,00	5,00	2,00	13,00	13,00	1,15	15,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+PL_YMS_Platform	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_YMS_Platform/EASy/PL_YMS_Platform_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlYmsPlatform	0,00	16,00	0,50	1,00	0,00	8,00	8,00	5,00	5,00	2,00	13,00	13,00	1,15	15,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+PL_YMS_Platform	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_YMS_Platform/EASy/PL_YMS_Platform_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlYmsPlatform	0,00	16,00	0,50	1,00	0,00	8,00	8,00	5,00	5,00	2,00	13,00	13,00	1,15	15,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+PL_YMS_Platform	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_YMS_Platform/EASy/PL_YMS_Platform_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlYmsPlatform	0,00	16,00	0,50	1,00	0,00	8,00	8,00	5,00	5,00	2,00	13,00	13,00	1,15	15,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+PL_YMS_Platform	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_YMS_Platform/EASy/PL_YMS_Platform_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlYmsPlatform	0,00	16,00	0,50	1,00	0,00	8,00	8,00	5,00	5,00	2,00	13,00	13,00	1,15	15,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+PL_YMS_Platform	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_YMS_Platform/EASy/PL_YMS_Platform_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlYmsPlatform	0,00	16,00	0,50	1,00	0,00	8,00	8,00	5,00	5,00	2,00	13,00	13,00	1,15	15,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+PL_YMS_Platform	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_YMS_Platform/EASy/PL_YMS_Platform_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlYmsPlatform	0,00	16,00	0,50	1,00	0,00	8,00	8,00	5,00	5,00	2,00	13,00	13,00	1,15	15,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/svncontrol/EASy/svncontrol_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/svncontrol/EASy/svncontrol_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/svncontrol/EASy/svncontrol_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/svncontrol/EASy/svncontrol_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/svncontrol/EASy/svncontrol_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/svncontrol/EASy/svncontrol_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/svncontrol/EASy/svncontrol_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/svncontrol/EASy/svncontrol_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/svncontrol/EASy/svncontrol_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/svncontrol/EASy/svncontrol_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_svncontrol/EASy/svncontrol_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_svncontrol/EASy/svncontrol_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_svncontrol/EASy/svncontrol_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_svncontrol/EASy/svncontrol_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_svncontrol/EASy/svncontrol_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_svncontrol/EASy/svncontrol_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_svncontrol/EASy/svncontrol_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_svncontrol/EASy/svncontrol_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_svncontrol/EASy/svncontrol_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+svncontrol	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_svncontrol/EASy/svncontrol_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealTests.testSvncontrol	3,00	9,00	1,00	6,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+PL_RMS_Platform2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/00_sc_PL_RMS_Platform2/EASy/PL_RMS_Platform2_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealTests.testIndenicaPlRmsPlatform2	0,00	12,50	0,50	0,50	0,00	10,00	10,00	1,00	1,00	1,00	11,00	11,00	1,09	12,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+New_Product	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/New_Product/EASy/New_Product_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealTests.testElevator	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	36,00	0,00	6,00	0,00	
+New_Product	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/New_Product/EASy/New_Product_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealTests.testElevator	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	36,00	0,00	6,00	0,00	
+New_Product	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/New_Product/EASy/New_Product_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealTests.testElevator	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	36,00	0,00	6,00	0,00	
+New_Product	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/New_Product/EASy/New_Product_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealTests.testElevator	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	36,00	0,00	6,00	0,00	
+New_Product	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/New_Product/EASy/New_Product_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealTests.testElevator	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	36,00	0,00	6,00	0,00	
+New_Product	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/New_Product/EASy/New_Product_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealTests.testElevator	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	36,00	0,00	6,00	0,00	
+New_Product	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/New_Product/EASy/New_Product_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealTests.testElevator	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	36,00	0,00	6,00	0,00	
+New_Product	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/New_Product/EASy/New_Product_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealTests.testElevator	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	36,00	0,00	6,00	0,00	
+New_Product	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/New_Product/EASy/New_Product_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealTests.testElevator	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	36,00	0,00	6,00	0,00	
+New_Product	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/New_Product/EASy/New_Product_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealTests.testElevator	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	36,00	0,00	6,00	0,00	
+NumericCSVInstantiationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/NumericCSVInstantiationTest/EASy/NumericCSVInstantiationTest_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealTests.testInstantiateNumericCSVInstantiation	0,00	7,50	0,50	2,50	0,00	2,00	2,00	3,00	3,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	1,00	0,00	
+NumericCSVInstantiationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/NumericCSVInstantiationTest/EASy/NumericCSVInstantiationTest_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealTests.testInstantiateNumericCSVInstantiation	0,00	7,50	0,50	2,50	0,00	2,00	2,00	3,00	3,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	1,00	0,00	
+NumericCSVInstantiationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/NumericCSVInstantiationTest/EASy/NumericCSVInstantiationTest_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealTests.testInstantiateNumericCSVInstantiation	0,00	7,50	0,50	2,50	0,00	2,00	2,00	3,00	3,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	1,00	0,00	
+NumericCSVInstantiationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/NumericCSVInstantiationTest/EASy/NumericCSVInstantiationTest_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealTests.testInstantiateNumericCSVInstantiation	0,00	7,50	0,50	2,50	0,00	2,00	2,00	3,00	3,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	1,00	0,00	
+NumericCSVInstantiationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/NumericCSVInstantiationTest/EASy/NumericCSVInstantiationTest_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealTests.testInstantiateNumericCSVInstantiation	0,00	7,50	0,50	2,50	0,00	2,00	2,00	3,00	3,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	1,00	0,00	
+NumericCSVInstantiationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/NumericCSVInstantiationTest/EASy/NumericCSVInstantiationTest_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealTests.testInstantiateNumericCSVInstantiation	0,00	7,50	0,50	2,50	0,00	2,00	2,00	3,00	3,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	1,00	0,00	
+NumericCSVInstantiationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/NumericCSVInstantiationTest/EASy/NumericCSVInstantiationTest_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealTests.testInstantiateNumericCSVInstantiation	0,00	7,50	0,50	2,50	0,00	2,00	2,00	3,00	3,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	1,00	0,00	
+NumericCSVInstantiationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/NumericCSVInstantiationTest/EASy/NumericCSVInstantiationTest_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealTests.testInstantiateNumericCSVInstantiation	0,00	7,50	0,50	2,50	0,00	2,00	2,00	3,00	3,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	1,00	0,00	
+NumericCSVInstantiationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/NumericCSVInstantiationTest/EASy/NumericCSVInstantiationTest_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealTests.testInstantiateNumericCSVInstantiation	0,00	7,50	0,50	2,50	0,00	2,00	2,00	3,00	3,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	1,00	0,00	
+NumericCSVInstantiationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/NumericCSVInstantiationTest/EASy/NumericCSVInstantiationTest_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealTests.testInstantiateNumericCSVInstantiation	0,00	7,50	0,50	2,50	0,00	2,00	2,00	3,00	3,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	1,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb15/EASy/QM_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb15	1271,00	1809,25	1,48	399,25	5,00	159,00	143,00	1005,00	810,00	64,00	1164,00	953,00	1,21	1410,00	1691,00	0,00	0,00	0,00	0,00	0,00	31,00	1794,00	31,00	1283,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb15/EASy/QM_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb15	1271,00	1809,25	1,48	399,25	5,00	159,00	143,00	1005,00	810,00	64,00	1164,00	953,00	1,21	1410,00	1691,00	0,00	0,00	0,00	0,00	0,00	46,00	1794,00	31,00	1283,00	46,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb15/EASy/QM_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb15	1271,00	1809,25	1,48	399,25	5,00	159,00	143,00	1005,00	810,00	64,00	1164,00	953,00	1,21	1410,00	1691,00	47,00	0,00	0,00	0,00	0,00	47,00	1794,00	0,00	1283,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb15/EASy/QM_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb15	1271,00	1809,25	1,48	399,25	5,00	159,00	143,00	1005,00	810,00	64,00	1164,00	953,00	1,21	1410,00	1691,00	16,00	0,00	0,00	0,00	0,00	31,00	1794,00	15,00	1283,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb15/EASy/QM_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb15	1271,00	1809,25	1,48	399,25	5,00	159,00	143,00	1005,00	810,00	64,00	1164,00	953,00	1,21	1410,00	1691,00	31,00	0,00	0,00	0,00	0,00	47,00	1794,00	16,00	1283,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb15/EASy/QM_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb15	1271,00	1809,25	1,48	399,25	5,00	159,00	143,00	1005,00	810,00	64,00	1164,00	953,00	1,21	1410,00	1691,00	31,00	0,00	0,00	0,00	0,00	31,00	1794,00	0,00	1283,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb15/EASy/QM_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb15	1271,00	1809,25	1,48	399,25	5,00	159,00	143,00	1005,00	810,00	64,00	1164,00	953,00	1,21	1410,00	1691,00	16,00	0,00	0,00	0,00	0,00	16,00	1794,00	0,00	1283,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb15/EASy/QM_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb15	1271,00	1809,25	1,48	399,25	5,00	159,00	143,00	1005,00	810,00	64,00	1164,00	953,00	1,21	1410,00	1691,00	31,00	0,00	0,00	0,00	0,00	31,00	1794,00	0,00	1283,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb15/EASy/QM_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb15	1271,00	1809,25	1,48	399,25	5,00	159,00	143,00	1005,00	810,00	64,00	1164,00	953,00	1,21	1410,00	1691,00	16,00	0,00	0,00	0,00	0,00	31,00	1794,00	15,00	1283,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb15/EASy/QM_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb15	1271,00	1809,25	1,48	399,25	5,00	159,00	143,00	1005,00	810,00	64,00	1164,00	953,00	1,21	1410,00	1691,00	15,00	0,00	0,00	0,00	0,00	31,00	1794,00	16,00	1283,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	8213,00	9869,25	0,88	2209,25	495,00	1585,00	1583,00	5031,00	4704,00	241,00	6616,00	6287,00	1,16	7660,00	11061,00	79,00	0,00	0,00	0,00	0,00	219,00	11834,00	109,00	4691,00	219,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	8213,00	9869,25	0,88	2209,25	495,00	1585,00	1583,00	5031,00	4704,00	241,00	6616,00	6287,00	1,16	7660,00	11061,00	63,00	0,00	0,00	0,00	0,00	203,00	11835,00	125,00	4691,00	203,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	8213,00	9869,25	0,88	2209,25	495,00	1585,00	1583,00	5031,00	4704,00	241,00	6616,00	6287,00	1,16	7660,00	11061,00	111,00	0,00	0,00	0,00	0,00	194,00	11837,00	82,00	4691,00	209,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	8213,00	9869,25	0,88	2209,25	495,00	1585,00	1583,00	5031,00	4704,00	241,00	6616,00	6287,00	1,16	7660,00	11061,00	95,00	0,00	0,00	0,00	0,00	203,00	11835,00	77,00	4691,00	203,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	8213,00	9869,25	0,88	2209,25	495,00	1585,00	1583,00	5031,00	4704,00	241,00	6616,00	6287,00	1,16	7660,00	11061,00	62,00	0,00	0,00	0,00	0,00	250,00	11835,00	172,00	4691,00	250,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	8213,00	9869,25	0,88	2209,25	495,00	1585,00	1583,00	5031,00	4704,00	241,00	6616,00	6287,00	1,16	7660,00	11061,00	62,00	0,00	0,00	0,00	0,00	203,00	11837,00	93,00	4691,00	203,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	8213,00	9869,25	0,88	2209,25	495,00	1585,00	1583,00	5031,00	4704,00	241,00	6616,00	6287,00	1,16	7660,00	11061,00	64,00	0,00	0,00	0,00	0,00	203,00	11834,00	93,00	4691,00	203,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	8213,00	9869,25	0,88	2209,25	495,00	1585,00	1583,00	5031,00	4704,00	241,00	6616,00	6287,00	1,16	7660,00	11061,00	125,00	0,00	0,00	0,00	0,00	219,00	11835,00	63,00	4691,00	219,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	8213,00	9869,25	0,88	2209,25	495,00	1585,00	1583,00	5031,00	4704,00	241,00	6616,00	6287,00	1,16	7660,00	11061,00	62,00	0,00	0,00	0,00	0,00	203,00	11837,00	126,00	4691,00	203,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	8213,00	9869,25	0,88	2209,25	495,00	1585,00	1583,00	5031,00	4704,00	241,00	6616,00	6287,00	1,16	7660,00	11061,00	46,00	0,00	0,00	0,00	0,00	188,00	11834,00	111,00	4691,00	203,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INC	1	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	110,00	0,00	0,00	1,00	0,00	1,00	47,00	110,00	0,00	555,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INC	2	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	110,00	0,00	0,00	1,00	0,00	1,00	31,00	110,00	0,00	555,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INC	3	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	110,00	0,00	0,00	1,00	0,00	1,00	32,00	110,00	16,00	555,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INC	4	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	110,00	0,00	0,00	1,00	0,00	1,00	47,00	110,00	0,00	555,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INC	5	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	110,00	0,00	0,00	1,00	0,00	1,00	31,00	110,00	0,00	555,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INC	6	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	110,00	0,00	0,00	1,00	0,00	1,00	32,00	110,00	0,00	555,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INC	7	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	110,00	0,00	0,00	1,00	0,00	1,00	47,00	110,00	15,00	555,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INC	8	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	110,00	0,00	0,00	1,00	0,00	1,00	31,00	110,00	0,00	555,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INC	9	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	110,00	0,00	0,00	1,00	0,00	1,00	32,00	110,00	0,00	555,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INC	10	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	110,00	0,00	0,00	1,00	0,00	1,00	46,00	110,00	31,00	555,00	46,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INST 	1	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	110,00	0,00	0,00	1,00	0,00	1,00	32,00	110,00	16,00	555,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INST 	2	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	0,00	0,00	0,00	1,00	0,00	1,00	16,00	110,00	0,00	0,00	16,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INST 	3	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	0,00	0,00	0,00	1,00	0,00	1,00	15,00	110,00	0,00	0,00	15,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INST 	4	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	0,00	0,00	0,00	1,00	0,00	1,00	15,00	110,00	0,00	0,00	15,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INST 	5	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	0,00	0,00	0,00	1,00	0,00	1,00	16,00	110,00	0,00	0,00	16,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INST 	6	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	0,00	0,00	0,00	1,00	0,00	1,00	16,00	110,00	0,00	0,00	16,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INST 	7	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	0,00	0,00	0,00	1,00	0,00	1,00	15,00	110,00	0,00	0,00	15,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INST 	8	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	0,00	0,00	0,00	1,00	0,00	1,00	15,00	110,00	0,00	0,00	15,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INST 	9	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	0,00	0,00	0,00	1,00	0,00	1,00	16,00	110,00	0,00	0,00	16,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/feb16/EASy/QM_0.ivml	SCENARIO-INST 	10	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterFeb16	9583,00	11540,25	0,80	2346,25	495,00	2023,00	2021,00	5853,00	5526,00	241,00	7876,00	7547,00	1,17	9194,00	0,00	0,00	0,00	1,00	0,00	1,00	16,00	110,00	0,00	0,00	16,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/jun15/EASy/QM_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterJun15	2331,00	2996,00	1,32	752,00	136,00	234,00	234,00	1657,00	1492,00	119,00	1891,00	1726,00	1,19	2244,00	3505,00	0,00	0,00	0,00	0,00	0,00	47,00	4082,00	31,00	2567,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/jun15/EASy/QM_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterJun15	2331,00	2996,00	1,32	752,00	136,00	234,00	234,00	1657,00	1492,00	119,00	1891,00	1726,00	1,19	2244,00	3505,00	16,00	0,00	0,00	0,00	0,00	47,00	4083,00	31,00	2567,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/jun15/EASy/QM_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterJun15	2331,00	2996,00	1,32	752,00	136,00	234,00	234,00	1657,00	1492,00	119,00	1891,00	1726,00	1,19	2244,00	3505,00	16,00	0,00	0,00	0,00	0,00	47,00	4082,00	15,00	2567,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/jun15/EASy/QM_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterJun15	2331,00	2996,00	1,32	752,00	136,00	234,00	234,00	1657,00	1492,00	119,00	1891,00	1726,00	1,19	2244,00	3505,00	15,00	0,00	0,00	0,00	0,00	47,00	4082,00	32,00	2567,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/jun15/EASy/QM_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterJun15	2331,00	2996,00	1,32	752,00	136,00	234,00	234,00	1657,00	1492,00	119,00	1891,00	1726,00	1,19	2244,00	3505,00	15,00	0,00	0,00	0,00	0,00	47,00	4082,00	32,00	2567,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/jun15/EASy/QM_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterJun15	2331,00	2996,00	1,32	752,00	136,00	234,00	234,00	1657,00	1492,00	119,00	1891,00	1726,00	1,19	2244,00	3505,00	16,00	0,00	0,00	0,00	0,00	47,00	4081,00	31,00	2567,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/jun15/EASy/QM_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterJun15	2331,00	2996,00	1,32	752,00	136,00	234,00	234,00	1657,00	1492,00	119,00	1891,00	1726,00	1,19	2244,00	3505,00	15,00	0,00	0,00	0,00	0,00	46,00	4081,00	31,00	2567,00	46,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/jun15/EASy/QM_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterJun15	2331,00	2996,00	1,32	752,00	136,00	234,00	234,00	1657,00	1492,00	119,00	1891,00	1726,00	1,19	2244,00	3505,00	16,00	0,00	0,00	0,00	0,00	47,00	4082,00	16,00	2567,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/jun15/EASy/QM_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterJun15	2331,00	2996,00	1,32	752,00	136,00	234,00	234,00	1657,00	1492,00	119,00	1891,00	1726,00	1,19	2244,00	3505,00	47,00	0,00	0,00	0,00	0,00	47,00	4081,00	0,00	2567,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/jun15/EASy/QM_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterJun15	2331,00	2996,00	1,32	752,00	136,00	234,00	234,00	1657,00	1492,00	119,00	1891,00	1726,00	1,19	2244,00	3505,00	0,00	0,00	0,00	0,00	0,00	63,00	4081,00	48,00	2567,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/mar15/EASy/QM_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMar15	1327,00	1863,75	1,48	399,75	5,00	159,00	143,00	1059,00	864,00	65,00	1218,00	1007,00	1,20	1464,00	1712,00	15,00	0,00	0,00	0,00	0,00	31,00	1815,00	16,00	1302,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/mar15/EASy/QM_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMar15	1327,00	1863,75	1,48	399,75	5,00	159,00	143,00	1059,00	864,00	65,00	1218,00	1007,00	1,20	1464,00	1712,00	0,00	0,00	0,00	0,00	0,00	15,00	1815,00	15,00	1302,00	15,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/mar15/EASy/QM_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMar15	1327,00	1863,75	1,48	399,75	5,00	159,00	143,00	1059,00	864,00	65,00	1218,00	1007,00	1,20	1464,00	1712,00	0,00	0,00	0,00	0,00	0,00	16,00	1815,00	16,00	1302,00	16,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/mar15/EASy/QM_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMar15	1327,00	1863,75	1,48	399,75	5,00	159,00	143,00	1059,00	864,00	65,00	1218,00	1007,00	1,20	1464,00	1712,00	16,00	0,00	0,00	0,00	0,00	16,00	1815,00	0,00	1302,00	16,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/mar15/EASy/QM_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMar15	1327,00	1863,75	1,48	399,75	5,00	159,00	143,00	1059,00	864,00	65,00	1218,00	1007,00	1,20	1464,00	1712,00	16,00	0,00	0,00	0,00	0,00	32,00	1815,00	16,00	1302,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/mar15/EASy/QM_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMar15	1327,00	1863,75	1,48	399,75	5,00	159,00	143,00	1059,00	864,00	65,00	1218,00	1007,00	1,20	1464,00	1712,00	15,00	0,00	0,00	0,00	0,00	31,00	1815,00	16,00	1302,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/mar15/EASy/QM_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMar15	1327,00	1863,75	1,48	399,75	5,00	159,00	143,00	1059,00	864,00	65,00	1218,00	1007,00	1,20	1464,00	1712,00	31,00	0,00	0,00	0,00	0,00	31,00	1815,00	0,00	1302,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/mar15/EASy/QM_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMar15	1327,00	1863,75	1,48	399,75	5,00	159,00	143,00	1059,00	864,00	65,00	1218,00	1007,00	1,20	1464,00	1712,00	0,00	0,00	0,00	0,00	0,00	31,00	1815,00	31,00	1302,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/mar15/EASy/QM_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMar15	1327,00	1863,75	1,48	399,75	5,00	159,00	143,00	1059,00	864,00	65,00	1218,00	1007,00	1,20	1464,00	1712,00	15,00	0,00	0,00	0,00	0,00	31,00	1815,00	16,00	1302,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/mar15/EASy/QM_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMar15	1327,00	1863,75	1,48	399,75	5,00	159,00	143,00	1059,00	864,00	65,00	1218,00	1007,00	1,20	1464,00	1712,00	16,00	0,00	0,00	0,00	0,00	16,00	1815,00	0,00	1302,00	16,00	
+may14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/may14/EASy/may14_0.ivml	SCENARIO	1	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMay14	0,00	117,25	0,73	15,25	0,00	0,00	0,00	74,00	54,00	19,00	74,00	54,00	1,38	102,00	25,00	0,00	0,00	0,00	0,00	0,00	0,00	25,00	0,00	30,00	0,00	
+may14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/may14/EASy/may14_0.ivml	SCENARIO	2	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMay14	0,00	117,25	0,73	15,25	0,00	0,00	0,00	74,00	54,00	19,00	74,00	54,00	1,38	102,00	25,00	0,00	0,00	0,00	0,00	0,00	0,00	25,00	0,00	30,00	0,00	
+may14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/may14/EASy/may14_0.ivml	SCENARIO	3	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMay14	0,00	117,25	0,73	15,25	0,00	0,00	0,00	74,00	54,00	19,00	74,00	54,00	1,38	102,00	25,00	0,00	0,00	0,00	0,00	0,00	0,00	25,00	0,00	30,00	0,00	
+may14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/may14/EASy/may14_0.ivml	SCENARIO	4	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMay14	0,00	117,25	0,73	15,25	0,00	0,00	0,00	74,00	54,00	19,00	74,00	54,00	1,38	102,00	25,00	0,00	0,00	0,00	0,00	0,00	0,00	25,00	0,00	30,00	0,00	
+may14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/may14/EASy/may14_0.ivml	SCENARIO	5	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMay14	0,00	117,25	0,73	15,25	0,00	0,00	0,00	74,00	54,00	19,00	74,00	54,00	1,38	102,00	25,00	0,00	0,00	0,00	0,00	0,00	0,00	25,00	0,00	30,00	0,00	
+may14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/may14/EASy/may14_0.ivml	SCENARIO	6	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMay14	0,00	117,25	0,73	15,25	0,00	0,00	0,00	74,00	54,00	19,00	74,00	54,00	1,38	102,00	25,00	0,00	0,00	0,00	0,00	0,00	0,00	25,00	0,00	30,00	0,00	
+may14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/may14/EASy/may14_0.ivml	SCENARIO	7	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMay14	0,00	117,25	0,73	15,25	0,00	0,00	0,00	74,00	54,00	19,00	74,00	54,00	1,38	102,00	25,00	0,00	0,00	0,00	0,00	0,00	0,00	25,00	0,00	30,00	0,00	
+may14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/may14/EASy/may14_0.ivml	SCENARIO	8	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMay14	0,00	117,25	0,73	15,25	0,00	0,00	0,00	74,00	54,00	19,00	74,00	54,00	1,38	102,00	25,00	0,00	0,00	0,00	0,00	0,00	0,00	25,00	0,00	30,00	0,00	
+may14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/may14/EASy/may14_0.ivml	SCENARIO	9	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMay14	0,00	117,25	0,73	15,25	0,00	0,00	0,00	74,00	54,00	19,00	74,00	54,00	1,38	102,00	25,00	0,00	0,00	0,00	0,00	0,00	0,00	25,00	0,00	30,00	0,00	
+may14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/EASy-Producer/ScenariosTest/testdata/temp/may14/EASy/may14_0.ivml	SCENARIO	10	net.ssehub.easy.producer.scenario_tests.RealTests.testQualiMasterMay14	0,00	117,25	0,73	15,25	0,00	0,00	0,00	74,00	54,00	19,00	74,00	54,00	1,38	102,00	25,00	0,00	0,00	0,00	0,00	0,00	0,00	25,00	0,00	30,00	0,00	
Index: /reasoner/measures/benchmark-results-new-1.3-ojdk10-typeCache/measurements-sse.tsv
===================================================================
--- /reasoner/measures/benchmark-results-new-1.3-ojdk10-typeCache/measurements-sse.tsv	(revision 278)
+++ /reasoner/measures/benchmark-results-new-1.3-ojdk10-typeCache/measurements-sse.tsv	(revision 278)
@@ -0,0 +1,3761 @@
+model name	URI	tag	runCount	caller	MODEL_ANNOTATIONS	MODEL_COMPLEXITY	MODEL_CONSTRAINT_AVG_COMPLEXITY	MODEL_CONSTRAINT_COMPLEXITY	MODEL_CONSTRAINT_INSTANCES	MODEL_CONSTRAINT_VARIABLES	MODEL_CONSTRAINT_VARIABLES_NO_CONTAINER	MODEL_NORMAL_VARIABLES	MODEL_NORMAL_VARIABLES_NO_CONTAINER	MODEL_TOPLEVEL_VARIABLES	MODEL_VARIABLES	MODEL_VARIABLES_WITHOUT_CONTAINER	MODEL_VARIABLE_AVG_COMPLEXITY	MODEL_VARIABLE_COMPLEXITY	REASONER_CONSTRAINT_COUNT	REASONER_EVALUATION_TIME	REASONER_INSTANCE_CREATION_TIME	REASONER_PROBLEMS	REASONER_PROBLEM_ASSIGNMENTS	REASONER_PROBLEM_CONSTRAINTS	REASONER_REASONING_TIME	REASONER_REEVALUATION_COUNT	REASONER_TRANSLATION_TIME	REASONER_VARIABLES_IN_CONSTRAINTS	RESPONSETIME_AUTO	
+CompoundTestProject		CompoundInit	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	16,00	5,00	16,00	4,00	16,00	
+CompoundTestProject		CompoundInit	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		CompoundInit	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		CompoundInit	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		CompoundInit	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	16,00	5,00	0,00	4,00	16,00	
+CompoundTestProject		CompoundInit	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		CompoundInit	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		CompoundInit	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		CompoundInit	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		CompoundInit	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		REASONING	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+CompoundTestProject		REASONING	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		REASONING	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		REASONING	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		REASONING	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	16,00	5,00	16,00	4,00	16,00	
+CompoundTestProject		REASONING	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		REASONING	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		REASONING	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		REASONING	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	15,00	0,00	1,00	0,00	1,00	15,00	5,00	0,00	4,00	15,00	
+CompoundTestProject		REASONING	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoningForAdaptation	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+SimpleTestProject		REASONING	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoning	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoning	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoning	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoning	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoning	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoning	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoning	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoning	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoning	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	16,00	5,00	0,00	3,00	16,00	
+SimpleTestProject		REASONING	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoning	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	15,00	0,00	1,00	0,00	1,00	15,00	5,00	0,00	3,00	15,00	
+SimpleTestProject		REASONING	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	16,00	0,00	1,00	0,00	1,00	16,00	5,00	0,00	3,00	16,00	
+SimpleTestProject		REASONING	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+SimpleTestProject		REASONING	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testSimpleResultAfterReasoningForAdaptation	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+CompoundTestProject		CompoundInit	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoning	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		CompoundInit	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoning	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		CompoundInit	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoning	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		CompoundInit	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoning	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		CompoundInit	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoning	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		CompoundInit	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoning	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		CompoundInit	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoning	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		CompoundInit	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoning	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		CompoundInit	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoning	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+CompoundTestProject		CompoundInit	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationIntegrityTests.testCompoundResultAfterReasoning	0,00	5,25	0,25	0,25	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	1,00	1,00	3,00	1,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	16,00	1,00	16,00	0,00	16,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	1,00	1,00	3,00	1,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfIntegers	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfIntegers.ivml	REASONING	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfIntegersTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	16,00	0,00	0,00	0,00	0,00	16,00	1,00	0,00	0,00	16,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+compoundVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundVariable.ivml	REASONING	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundVariableTest	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	7,75	0,58	1,75	0,00	0,00	0,00	5,00	3,00	3,00	5,00	3,00	1,20	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	7,75	0,58	1,75	0,00	0,00	0,00	5,00	3,00	3,00	5,00	3,00	1,20	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+collectionOfSimpleVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/collectionOfSimpleVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.collectionOfSimpleVariablesTest	0,00	5,75	0,58	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	REASONING	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	REASONING	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	REASONING	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	REASONING	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	REASONING	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	REASONING	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	REASONING	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	REASONING	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	REASONING	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	REASONING	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	1,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoning	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoning.ivml	IREASONING 	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningTest	2,00	3,25	0,42	1,25	1,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	16,00	2,00	16,00	2,00	16,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+simpleVariable	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/simpleVariable.ivml	REASONING	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.simpleVariableTest	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	REASONING	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	REASONING	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	3,00	5,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	2,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	REASONING	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	3,00	5,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	2,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	REASONING	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	3,00	5,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	2,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	REASONING	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	3,00	5,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	2,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	REASONING	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	3,00	5,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	2,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	REASONING	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	3,00	5,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	2,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	REASONING	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	3,00	5,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	2,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	REASONING	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	3,00	5,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	2,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	REASONING	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	3,00	5,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	2,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	1,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	-1,00	1,00	0,00	1,00	16,00	1,00	0,00	0,00	16,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+runtimeReasoningConstraintSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/runtimeReasoningConstraintSet.ivml	IREASONING 	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.runtimeReasoningConstraintSetTest	4,00	6,25	0,42	1,25	0,00	1,00	0,00	3,00	3,00	3,00	4,00	3,00	1,25	5,00	0,00	0,00	-1,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	16,00	2,00	16,00	3,00	16,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	1	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	2	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	3	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	4	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	5	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	6	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	7	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	8	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	9	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+compoundConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/adaptationScenarios/compoundConstraints.ivml	REASONING	10	net.ssehub.easy.reasoning.core.adaptation.AdaptationScenarioTests.compoundConstraintsTest	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	3,00	0,00	
+CompoundIndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/CompoundIndividualAssign.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.compoundIndividualAssign	8,00	11,00	1,14	8,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	13,00	15,00	0,00	0,00	0,00	0,00	15,00	15,00	0,00	6,00	15,00	
+CompoundIndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/CompoundIndividualAssign.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.compoundIndividualAssign	8,00	11,00	1,14	8,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	6,00	0,00	
+CompoundIndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/CompoundIndividualAssign.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.compoundIndividualAssign	8,00	11,00	1,14	8,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	6,00	0,00	
+CompoundIndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/CompoundIndividualAssign.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.compoundIndividualAssign	8,00	11,00	1,14	8,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	6,00	0,00	
+CompoundIndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/CompoundIndividualAssign.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.compoundIndividualAssign	8,00	11,00	1,14	8,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	6,00	0,00	
+CompoundIndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/CompoundIndividualAssign.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.compoundIndividualAssign	8,00	11,00	1,14	8,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	6,00	0,00	
+CompoundIndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/CompoundIndividualAssign.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.compoundIndividualAssign	8,00	11,00	1,14	8,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	6,00	0,00	
+CompoundIndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/CompoundIndividualAssign.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.compoundIndividualAssign	8,00	11,00	1,14	8,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	6,00	0,00	
+CompoundIndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/CompoundIndividualAssign.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.compoundIndividualAssign	8,00	11,00	1,14	8,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	6,00	0,00	
+CompoundIndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/CompoundIndividualAssign.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.compoundIndividualAssign	8,00	11,00	1,14	8,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	6,00	0,00	
+BlockAssignNestedConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraint.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraint	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+BlockAssignNestedConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraint.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraint	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+BlockAssignNestedConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraint.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraint	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+BlockAssignNestedConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraint.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraint	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+BlockAssignNestedConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraint.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraint	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+BlockAssignNestedConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraint.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraint	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+BlockAssignNestedConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraint.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraint	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+BlockAssignNestedConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraint.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraint	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+BlockAssignNestedConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraint.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraint	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+BlockAssignNestedConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraint.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraint	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+ConstraintAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/ConstraintAnnotationTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.constraintAnnotationTest	10,00	26,50	0,81	14,50	0,00	1,00	1,00	9,00	9,00	8,00	10,00	10,00	1,20	12,00	40,00	0,00	0,00	9,00	0,00	9,00	0,00	40,00	0,00	17,00	0,00	
+ConstraintAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/ConstraintAnnotationTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.constraintAnnotationTest	10,00	26,50	0,81	14,50	0,00	1,00	1,00	9,00	9,00	8,00	10,00	10,00	1,20	12,00	40,00	0,00	0,00	9,00	0,00	9,00	0,00	40,00	0,00	17,00	0,00	
+ConstraintAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/ConstraintAnnotationTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.constraintAnnotationTest	10,00	26,50	0,81	14,50	0,00	1,00	1,00	9,00	9,00	8,00	10,00	10,00	1,20	12,00	40,00	0,00	0,00	9,00	0,00	9,00	0,00	40,00	0,00	17,00	0,00	
+ConstraintAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/ConstraintAnnotationTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.constraintAnnotationTest	10,00	26,50	0,81	14,50	0,00	1,00	1,00	9,00	9,00	8,00	10,00	10,00	1,20	12,00	40,00	0,00	0,00	9,00	0,00	9,00	0,00	40,00	0,00	17,00	0,00	
+ConstraintAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/ConstraintAnnotationTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.constraintAnnotationTest	10,00	26,50	0,81	14,50	0,00	1,00	1,00	9,00	9,00	8,00	10,00	10,00	1,20	12,00	40,00	0,00	0,00	9,00	0,00	9,00	16,00	40,00	16,00	17,00	16,00	
+ConstraintAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/ConstraintAnnotationTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.constraintAnnotationTest	10,00	26,50	0,81	14,50	0,00	1,00	1,00	9,00	9,00	8,00	10,00	10,00	1,20	12,00	40,00	0,00	0,00	9,00	0,00	9,00	0,00	40,00	0,00	17,00	0,00	
+ConstraintAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/ConstraintAnnotationTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.constraintAnnotationTest	10,00	26,50	0,81	14,50	0,00	1,00	1,00	9,00	9,00	8,00	10,00	10,00	1,20	12,00	40,00	0,00	0,00	9,00	0,00	9,00	0,00	40,00	0,00	17,00	0,00	
+ConstraintAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/ConstraintAnnotationTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.constraintAnnotationTest	10,00	26,50	0,81	14,50	0,00	1,00	1,00	9,00	9,00	8,00	10,00	10,00	1,20	12,00	40,00	0,00	0,00	9,00	0,00	9,00	0,00	40,00	0,00	17,00	0,00	
+ConstraintAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/ConstraintAnnotationTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.constraintAnnotationTest	10,00	26,50	0,81	14,50	0,00	1,00	1,00	9,00	9,00	8,00	10,00	10,00	1,20	12,00	40,00	16,00	0,00	9,00	0,00	9,00	16,00	40,00	0,00	17,00	16,00	
+ConstraintAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/ConstraintAnnotationTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.constraintAnnotationTest	10,00	26,50	0,81	14,50	0,00	1,00	1,00	9,00	9,00	8,00	10,00	10,00	1,20	12,00	40,00	0,00	0,00	9,00	0,00	9,00	0,00	40,00	0,00	17,00	0,00	
+IndividualAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssignNested.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssignNested	2,00	5,50	2,50	2,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+IndividualAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssignNested.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssignNested	2,00	5,50	2,50	2,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+IndividualAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssignNested.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssignNested	2,00	5,50	2,50	2,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+IndividualAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssignNested.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssignNested	2,00	5,50	2,50	2,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+IndividualAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssignNested.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssignNested	2,00	5,50	2,50	2,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+IndividualAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssignNested.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssignNested	2,00	5,50	2,50	2,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+IndividualAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssignNested.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssignNested	2,00	5,50	2,50	2,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+IndividualAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssignNested.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssignNested	2,00	5,50	2,50	2,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+IndividualAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssignNested.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssignNested	2,00	5,50	2,50	2,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+IndividualAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssignNested.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssignNested	2,00	5,50	2,50	2,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+NestedAssignBlock2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlock2.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlock2	3,00	11,25	2,08	6,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+NestedAssignBlock2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlock2.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlock2	3,00	11,25	2,08	6,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+NestedAssignBlock2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlock2.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlock2	3,00	11,25	2,08	6,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+NestedAssignBlock2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlock2.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlock2	3,00	11,25	2,08	6,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+NestedAssignBlock2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlock2.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlock2	3,00	11,25	2,08	6,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+NestedAssignBlock2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlock2.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlock2	3,00	11,25	2,08	6,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+NestedAssignBlock2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlock2.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlock2	3,00	11,25	2,08	6,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+NestedAssignBlock2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlock2.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlock2	3,00	11,25	2,08	6,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+NestedAssignBlock2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlock2.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlock2	3,00	11,25	2,08	6,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	6,00	0,00	0,00	0,00	0,00	0,00	16,00	6,00	16,00	4,00	16,00	
+NestedAssignBlock2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlock2.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlock2	3,00	11,25	2,08	6,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+BlockAssignNestedNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedNested.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedNested	12,00	15,00	2,50	10,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	6,00	0,00	
+BlockAssignNestedNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedNested.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedNested	12,00	15,00	2,50	10,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	6,00	0,00	
+BlockAssignNestedNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedNested.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedNested	12,00	15,00	2,50	10,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	6,00	0,00	
+BlockAssignNestedNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedNested.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedNested	12,00	15,00	2,50	10,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	9,00	16,00	0,00	0,00	0,00	0,00	16,00	13,00	0,00	6,00	16,00	
+BlockAssignNestedNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedNested.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedNested	12,00	15,00	2,50	10,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	6,00	0,00	
+BlockAssignNestedNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedNested.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedNested	12,00	15,00	2,50	10,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	6,00	0,00	
+BlockAssignNestedNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedNested.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedNested	12,00	15,00	2,50	10,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	6,00	0,00	
+BlockAssignNestedNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedNested.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedNested	12,00	15,00	2,50	10,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	6,00	0,00	
+BlockAssignNestedNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedNested.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedNested	12,00	15,00	2,50	10,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	6,00	0,00	
+BlockAssignNestedNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedNested.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedNested	12,00	15,00	2,50	10,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	6,00	0,00	
+BlockAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssign.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssign	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+BlockAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssign.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssign	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+BlockAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssign.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssign	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+BlockAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssign.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssign	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+BlockAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssign.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssign	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+BlockAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssign.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssign	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+BlockAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssign.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssign	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+BlockAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssign.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssign	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+BlockAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssign.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssign	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+BlockAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssign.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssign	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+DefaultAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/DefaultAssign.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.defaultAssign	3,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	6,00	0,00	
+DefaultAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/DefaultAssign.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.defaultAssign	3,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	6,00	0,00	
+DefaultAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/DefaultAssign.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.defaultAssign	3,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	6,00	0,00	
+DefaultAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/DefaultAssign.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.defaultAssign	3,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	6,00	0,00	
+DefaultAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/DefaultAssign.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.defaultAssign	3,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	6,00	0,00	
+DefaultAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/DefaultAssign.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.defaultAssign	3,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	6,00	0,00	
+DefaultAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/DefaultAssign.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.defaultAssign	3,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	6,00	0,00	
+DefaultAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/DefaultAssign.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.defaultAssign	3,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	6,00	0,00	
+DefaultAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/DefaultAssign.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.defaultAssign	3,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	6,00	0,00	
+DefaultAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/DefaultAssign.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.defaultAssign	3,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	6,00	0,00	
+IndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssign.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssign	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+IndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssign.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssign	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+IndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssign.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssign	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+IndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssign.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssign	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+IndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssign.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssign	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+IndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssign.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssign	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+IndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssign.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssign	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+IndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssign.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssign	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+IndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssign.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssign	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+IndividualAssign	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/IndividualAssign.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.individualAssign	3,00	7,00	1,50	3,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+BlockAssignNestedConstraintFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraintFail.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraintFail	3,00	5,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BlockAssignNestedConstraintFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraintFail.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraintFail	3,00	5,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BlockAssignNestedConstraintFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraintFail.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraintFail	3,00	5,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BlockAssignNestedConstraintFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraintFail.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraintFail	3,00	5,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BlockAssignNestedConstraintFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraintFail.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraintFail	3,00	5,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BlockAssignNestedConstraintFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraintFail.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraintFail	3,00	5,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BlockAssignNestedConstraintFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraintFail.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraintFail	3,00	5,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BlockAssignNestedConstraintFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraintFail.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraintFail	3,00	5,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BlockAssignNestedConstraintFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraintFail.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraintFail	3,00	5,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BlockAssignNestedConstraintFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNestedConstraintFail.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNestedConstraintFail	3,00	5,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+NestedAssignBlockTree	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlockTree.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlockTree	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+NestedAssignBlockTree	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlockTree.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlockTree	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+NestedAssignBlockTree	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlockTree.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlockTree	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	6,00	0,00	0,00	0,00	0,00	0,00	16,00	6,00	16,00	0,00	16,00	
+NestedAssignBlockTree	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlockTree.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlockTree	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+NestedAssignBlockTree	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlockTree.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlockTree	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+NestedAssignBlockTree	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlockTree.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlockTree	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+NestedAssignBlockTree	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlockTree.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlockTree	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+NestedAssignBlockTree	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlockTree.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlockTree	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+NestedAssignBlockTree	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlockTree.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlockTree	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+NestedAssignBlockTree	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/NestedAssignBlockTree.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.nestedAssignBlockTree	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+BlockAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNested.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNested	3,00	7,25	1,08	3,25	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+BlockAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNested.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNested	3,00	7,25	1,08	3,25	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+BlockAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNested.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNested	3,00	7,25	1,08	3,25	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+BlockAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNested.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNested	3,00	7,25	1,08	3,25	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+BlockAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNested.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNested	3,00	7,25	1,08	3,25	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+BlockAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNested.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNested	3,00	7,25	1,08	3,25	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+BlockAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNested.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNested	3,00	7,25	1,08	3,25	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+BlockAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNested.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNested	3,00	7,25	1,08	3,25	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+BlockAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNested.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNested	3,00	7,25	1,08	3,25	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+BlockAssignNested	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/attributes/BlockAssignNested.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.AttributeTests.blockAssignNested	3,00	7,25	1,08	3,25	0,00	0,00	0,00	3,00	3,00	2,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+constraintSetSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDefault.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDefault.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDefault.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDefault.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDefault.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDefault.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDefault.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDefault.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDefault.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDefault.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+ContainerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ContainerAnnotationTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.containerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+ContainerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ContainerAnnotationTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.containerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+ContainerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ContainerAnnotationTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.containerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	1,00	0,00	10,00	0,00	10,00	1,00	33,00	0,00	19,00	1,00	
+ContainerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ContainerAnnotationTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.containerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+ContainerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ContainerAnnotationTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.containerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+ContainerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ContainerAnnotationTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.containerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+ContainerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ContainerAnnotationTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.containerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	16,00	0,00	10,00	0,00	10,00	16,00	33,00	0,00	19,00	16,00	
+ContainerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ContainerAnnotationTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.containerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+ContainerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ContainerAnnotationTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.containerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+ContainerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ContainerAnnotationTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.containerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/QM.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.qmTest	37,00	59,75	0,48	5,75	0,00	0,00	0,00	37,00	37,00	9,00	37,00	37,00	1,46	54,00	53,00	0,00	0,00	1,00	0,00	1,00	0,00	53,00	0,00	4,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/QM.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.qmTest	37,00	59,75	0,48	5,75	0,00	0,00	0,00	37,00	37,00	9,00	37,00	37,00	1,46	54,00	53,00	0,00	0,00	1,00	0,00	1,00	0,00	53,00	0,00	4,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/QM.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.qmTest	37,00	59,75	0,48	5,75	0,00	0,00	0,00	37,00	37,00	9,00	37,00	37,00	1,46	54,00	53,00	0,00	0,00	1,00	0,00	1,00	0,00	53,00	0,00	4,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/QM.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.qmTest	37,00	59,75	0,48	5,75	0,00	0,00	0,00	37,00	37,00	9,00	37,00	37,00	1,46	54,00	53,00	0,00	0,00	1,00	0,00	1,00	15,00	53,00	15,00	4,00	15,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/QM.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.qmTest	37,00	59,75	0,48	5,75	0,00	0,00	0,00	37,00	37,00	9,00	37,00	37,00	1,46	54,00	53,00	0,00	0,00	1,00	0,00	1,00	16,00	53,00	0,00	4,00	16,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/QM.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.qmTest	37,00	59,75	0,48	5,75	0,00	0,00	0,00	37,00	37,00	9,00	37,00	37,00	1,46	54,00	53,00	0,00	0,00	1,00	0,00	1,00	0,00	53,00	0,00	4,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/QM.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.qmTest	37,00	59,75	0,48	5,75	0,00	0,00	0,00	37,00	37,00	9,00	37,00	37,00	1,46	54,00	53,00	0,00	0,00	1,00	0,00	1,00	0,00	53,00	0,00	4,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/QM.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.qmTest	37,00	59,75	0,48	5,75	0,00	0,00	0,00	37,00	37,00	9,00	37,00	37,00	1,46	54,00	53,00	15,00	0,00	1,00	0,00	1,00	15,00	53,00	0,00	4,00	15,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/QM.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.qmTest	37,00	59,75	0,48	5,75	0,00	0,00	0,00	37,00	37,00	9,00	37,00	37,00	1,46	54,00	53,00	0,00	0,00	1,00	0,00	1,00	0,00	53,00	0,00	4,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/QM.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.qmTest	37,00	59,75	0,48	5,75	0,00	0,00	0,00	37,00	37,00	9,00	37,00	37,00	1,46	54,00	53,00	16,00	0,00	1,00	0,00	1,00	16,00	53,00	0,00	4,00	16,00	
+constraintSetAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetAssigned.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetAssignedTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetAssigned.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetAssignedTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetAssigned.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetAssignedTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetAssigned.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetAssignedTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetAssigned.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetAssignedTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetAssigned.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetAssignedTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetAssigned.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetAssignedTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	15,00	4,00	15,00	1,00	15,00	
+constraintSetAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetAssigned.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetAssignedTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetAssigned.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetAssignedTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetAssigned.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetAssignedTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefault.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefault.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefault.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefault.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefault.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	15,00	0,00	1,00	0,00	1,00	15,00	4,00	0,00	1,00	15,00	
+constraintSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefault.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefault.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefault.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefault.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefault.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultTest	0,00	4,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+constraintSetInNestedCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInNestedCompoundDefault.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInNestedCompoundDefaultTest	0,00	13,50	5,50	5,50	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,60	8,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+constraintSetInNestedCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInNestedCompoundDefault.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInNestedCompoundDefaultTest	0,00	13,50	5,50	5,50	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,60	8,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+constraintSetInNestedCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInNestedCompoundDefault.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInNestedCompoundDefaultTest	0,00	13,50	5,50	5,50	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,60	8,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+constraintSetInNestedCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInNestedCompoundDefault.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInNestedCompoundDefaultTest	0,00	13,50	5,50	5,50	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,60	8,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+constraintSetInNestedCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInNestedCompoundDefault.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInNestedCompoundDefaultTest	0,00	13,50	5,50	5,50	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,60	8,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+constraintSetInNestedCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInNestedCompoundDefault.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInNestedCompoundDefaultTest	0,00	13,50	5,50	5,50	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,60	8,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+constraintSetInNestedCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInNestedCompoundDefault.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInNestedCompoundDefaultTest	0,00	13,50	5,50	5,50	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,60	8,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+constraintSetInNestedCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInNestedCompoundDefault.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInNestedCompoundDefaultTest	0,00	13,50	5,50	5,50	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,60	8,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+constraintSetInNestedCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInNestedCompoundDefault.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInNestedCompoundDefaultTest	0,00	13,50	5,50	5,50	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,60	8,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+constraintSetInNestedCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInNestedCompoundDefault.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInNestedCompoundDefaultTest	0,00	13,50	5,50	5,50	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,60	8,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+setDerivedSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/setDerivedSet.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.setDerivedSetTest	0,00	11,75	1,35	6,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	9,00	0,00	6,00	0,00	
+setDerivedSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/setDerivedSet.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.setDerivedSetTest	0,00	11,75	1,35	6,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,25	5,00	9,00	15,00	0,00	3,00	0,00	3,00	15,00	9,00	0,00	6,00	15,00	
+setDerivedSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/setDerivedSet.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.setDerivedSetTest	0,00	11,75	1,35	6,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	9,00	0,00	6,00	0,00	
+setDerivedSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/setDerivedSet.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.setDerivedSetTest	0,00	11,75	1,35	6,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	9,00	0,00	6,00	0,00	
+setDerivedSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/setDerivedSet.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.setDerivedSetTest	0,00	11,75	1,35	6,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	9,00	0,00	6,00	0,00	
+setDerivedSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/setDerivedSet.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.setDerivedSetTest	0,00	11,75	1,35	6,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	9,00	0,00	6,00	0,00	
+setDerivedSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/setDerivedSet.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.setDerivedSetTest	0,00	11,75	1,35	6,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	9,00	0,00	6,00	0,00	
+setDerivedSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/setDerivedSet.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.setDerivedSetTest	0,00	11,75	1,35	6,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	9,00	0,00	6,00	0,00	
+setDerivedSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/setDerivedSet.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.setDerivedSetTest	0,00	11,75	1,35	6,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	9,00	0,00	6,00	0,00	
+setDerivedSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/setDerivedSet.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.setDerivedSetTest	0,00	11,75	1,35	6,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,25	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	9,00	0,00	6,00	0,00	
+ReferenceDerivedCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ReferenceDerivedCollectionTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.referenceDerivedCollectionTest	0,00	5,25	0,38	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	8,00	0,00	0,00	5,00	0,00	5,00	0,00	8,00	0,00	3,00	0,00	
+ReferenceDerivedCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ReferenceDerivedCollectionTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.referenceDerivedCollectionTest	0,00	5,25	0,38	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	8,00	0,00	0,00	5,00	0,00	5,00	0,00	8,00	0,00	3,00	0,00	
+ReferenceDerivedCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ReferenceDerivedCollectionTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.referenceDerivedCollectionTest	0,00	5,25	0,38	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	8,00	0,00	0,00	5,00	0,00	5,00	0,00	8,00	0,00	3,00	0,00	
+ReferenceDerivedCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ReferenceDerivedCollectionTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.referenceDerivedCollectionTest	0,00	5,25	0,38	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	8,00	0,00	0,00	5,00	0,00	5,00	0,00	8,00	0,00	3,00	0,00	
+ReferenceDerivedCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ReferenceDerivedCollectionTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.referenceDerivedCollectionTest	0,00	5,25	0,38	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	8,00	0,00	0,00	5,00	0,00	5,00	0,00	8,00	0,00	3,00	0,00	
+ReferenceDerivedCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ReferenceDerivedCollectionTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.referenceDerivedCollectionTest	0,00	5,25	0,38	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	8,00	0,00	0,00	5,00	0,00	5,00	0,00	8,00	0,00	3,00	0,00	
+ReferenceDerivedCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ReferenceDerivedCollectionTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.referenceDerivedCollectionTest	0,00	5,25	0,38	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	8,00	0,00	0,00	5,00	0,00	5,00	0,00	8,00	0,00	3,00	0,00	
+ReferenceDerivedCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ReferenceDerivedCollectionTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.referenceDerivedCollectionTest	0,00	5,25	0,38	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	8,00	0,00	0,00	5,00	0,00	5,00	0,00	8,00	0,00	3,00	0,00	
+ReferenceDerivedCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ReferenceDerivedCollectionTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.referenceDerivedCollectionTest	0,00	5,25	0,38	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	8,00	0,00	0,00	5,00	0,00	5,00	0,00	8,00	0,00	3,00	0,00	
+ReferenceDerivedCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/ReferenceDerivedCollectionTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.referenceDerivedCollectionTest	0,00	5,25	0,38	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	8,00	0,00	0,00	5,00	0,00	5,00	0,00	8,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest1.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection1Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest1.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection1Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest1.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection1Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest1.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection1Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest1.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection1Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest1.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection1Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest1.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection1Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest1.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection1Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest1.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection1Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest1.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection1Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest2.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection2Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest2.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection2Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest2.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection2Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest2.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection2Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest2.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection2Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest2.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection2Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest2.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection2Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest2.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection2Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest2.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection2Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest2.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection2Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	3,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest3.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection3Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest3.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection3Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest3.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection3Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest3.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection3Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest3.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection3Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest3.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection3Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest3.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection3Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest3.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection3Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest3.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection3Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest3.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection3Test	0,00	12,50	2,17	6,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	2,00	6,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest4.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection4Test	0,00	19,50	2,88	11,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	4,00	16,00	0,00	0,00	0,00	0,00	16,00	6,00	0,00	6,00	16,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest4.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection4Test	0,00	19,50	2,88	11,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	6,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest4.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection4Test	0,00	19,50	2,88	11,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	6,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest4.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection4Test	0,00	19,50	2,88	11,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	6,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest4.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection4Test	0,00	19,50	2,88	11,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	6,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest4.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection4Test	0,00	19,50	2,88	11,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	6,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest4.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection4Test	0,00	19,50	2,88	11,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	6,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest4.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection4Test	0,00	19,50	2,88	11,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	6,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest4.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection4Test	0,00	19,50	2,88	11,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	6,00	0,00	
+IVML	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/StringTest4.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.stringCollection4Test	0,00	19,50	2,88	11,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	6,00	0,00	
+constraintSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDerivedCompound.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	4,00	0,00	
+constraintSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDerivedCompound.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	4,00	0,00	
+constraintSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDerivedCompound.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	4,00	0,00	
+constraintSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDerivedCompound.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	4,00	0,00	
+constraintSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDerivedCompound.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	4,00	0,00	
+constraintSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDerivedCompound.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	16,00	10,00	16,00	4,00	16,00	
+constraintSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDerivedCompound.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	4,00	0,00	
+constraintSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDerivedCompound.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	4,00	0,00	
+constraintSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDerivedCompound.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	4,00	0,00	
+constraintSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDerivedCompound.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	16,00	10,00	16,00	4,00	16,00	
+constraintSetInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundAssigned.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundAssignedTest	0,00	6,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	15,00	0,00	1,00	0,00	1,00	15,00	3,00	0,00	1,00	15,00	
+constraintSetInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundAssigned.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundAssignedTest	0,00	6,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+constraintSetInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundAssigned.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundAssignedTest	0,00	6,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+constraintSetInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundAssigned.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundAssignedTest	0,00	6,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+constraintSetInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundAssigned.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundAssignedTest	0,00	6,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+constraintSetInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundAssigned.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundAssignedTest	0,00	6,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	16,00	0,00	1,00	0,00	1,00	16,00	3,00	0,00	1,00	16,00	
+constraintSetInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundAssigned.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundAssignedTest	0,00	6,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+constraintSetInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundAssigned.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundAssignedTest	0,00	6,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+constraintSetInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundAssigned.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundAssignedTest	0,00	6,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+constraintSetInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundAssigned.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundAssignedTest	0,00	6,50	1,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+constraintSetInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundDefault.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundDefaultTest	0,00	6,25	1,25	1,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+constraintSetInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundDefault.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundDefaultTest	0,00	6,25	1,25	1,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+constraintSetInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundDefault.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundDefaultTest	0,00	6,25	1,25	1,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+constraintSetInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundDefault.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundDefaultTest	0,00	6,25	1,25	1,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+constraintSetInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundDefault.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundDefaultTest	0,00	6,25	1,25	1,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+constraintSetInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundDefault.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundDefaultTest	0,00	6,25	1,25	1,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+constraintSetInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundDefault.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundDefaultTest	0,00	6,25	1,25	1,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+constraintSetInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundDefault.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundDefaultTest	0,00	6,25	1,25	1,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+constraintSetInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundDefault.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundDefaultTest	0,00	6,25	1,25	1,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+constraintSetInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetInCompoundDefault.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetInCompoundDefaultTest	0,00	6,25	1,25	1,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+constraintSetSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDerivedCompound.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	4,00	0,00	
+constraintSetSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDerivedCompound.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	4,00	0,00	
+constraintSetSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDerivedCompound.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	4,00	0,00	
+constraintSetSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDerivedCompound.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	4,00	0,00	
+constraintSetSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDerivedCompound.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	4,00	0,00	
+constraintSetSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDerivedCompound.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	4,00	0,00	
+constraintSetSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDerivedCompound.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	4,00	0,00	
+constraintSetSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDerivedCompound.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	4,00	0,00	
+constraintSetSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDerivedCompound.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	4,00	0,00	
+constraintSetSetDerivedCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetSetDerivedCompound.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetSetDerivedCompoundTest	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	10,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	4,00	0,00	
+constraintSetDefaultInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefaultInCompound.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultInCompoundTest	0,00	6,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+constraintSetDefaultInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefaultInCompound.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultInCompoundTest	0,00	6,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+constraintSetDefaultInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefaultInCompound.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultInCompoundTest	0,00	6,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+constraintSetDefaultInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefaultInCompound.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultInCompoundTest	0,00	6,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+constraintSetDefaultInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefaultInCompound.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultInCompoundTest	0,00	6,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+constraintSetDefaultInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefaultInCompound.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultInCompoundTest	0,00	6,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+constraintSetDefaultInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefaultInCompound.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultInCompoundTest	0,00	6,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+constraintSetDefaultInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefaultInCompound.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultInCompoundTest	0,00	6,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+constraintSetDefaultInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefaultInCompound.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultInCompoundTest	0,00	6,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+constraintSetDefaultInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionConstraints/constraintSetDefaultInCompound.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.CollectionConstraintsTests.constraintSetDefaultInCompoundTest	0,00	6,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+basicAssignmentTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicAssignmentTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicAssignmentTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	2,00	2,00	0,00	0,00	4,00	0,00	0,00	0,00	
+basicAssignmentTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicAssignmentTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicAssignmentTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	2,00	2,00	0,00	0,00	4,00	0,00	0,00	0,00	
+basicAssignmentTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicAssignmentTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicAssignmentTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	2,00	2,00	0,00	0,00	4,00	0,00	0,00	0,00	
+basicAssignmentTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicAssignmentTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicAssignmentTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	2,00	2,00	0,00	0,00	4,00	0,00	0,00	0,00	
+basicAssignmentTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicAssignmentTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicAssignmentTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	2,00	2,00	0,00	0,00	4,00	0,00	0,00	0,00	
+basicAssignmentTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicAssignmentTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicAssignmentTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	2,00	2,00	0,00	0,00	4,00	0,00	0,00	0,00	
+basicAssignmentTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicAssignmentTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicAssignmentTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	2,00	2,00	0,00	0,00	4,00	0,00	0,00	0,00	
+basicAssignmentTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicAssignmentTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicAssignmentTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	2,00	2,00	0,00	0,00	4,00	0,00	0,00	0,00	
+basicAssignmentTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicAssignmentTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicAssignmentTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	2,00	2,00	0,00	0,00	4,00	0,00	0,00	0,00	
+basicAssignmentTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicAssignmentTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicAssignmentTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	2,00	2,00	0,00	0,00	4,00	0,00	0,00	0,00	
+basicCompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicCompoundConstraintTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicCompoundConstraintTest	0,00	6,00	0,25	1,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+basicCompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicCompoundConstraintTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicCompoundConstraintTest	0,00	6,00	0,25	1,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+basicCompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicCompoundConstraintTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicCompoundConstraintTest	0,00	6,00	0,25	1,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+basicCompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicCompoundConstraintTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicCompoundConstraintTest	0,00	6,00	0,25	1,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+basicCompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicCompoundConstraintTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicCompoundConstraintTest	0,00	6,00	0,25	1,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+basicCompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicCompoundConstraintTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicCompoundConstraintTest	0,00	6,00	0,25	1,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+basicCompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicCompoundConstraintTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicCompoundConstraintTest	0,00	6,00	0,25	1,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+basicCompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicCompoundConstraintTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicCompoundConstraintTest	0,00	6,00	0,25	1,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+basicCompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicCompoundConstraintTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicCompoundConstraintTest	0,00	6,00	0,25	1,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+basicCompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicCompoundConstraintTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicCompoundConstraintTest	0,00	6,00	0,25	1,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	4,00	0,00	
+basicConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicConstraintTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicConstraintTest	0,00	4,75	0,44	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+basicConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicConstraintTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicConstraintTest	0,00	4,75	0,44	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+basicConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicConstraintTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicConstraintTest	0,00	4,75	0,44	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+basicConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicConstraintTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicConstraintTest	0,00	4,75	0,44	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+basicConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicConstraintTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicConstraintTest	0,00	4,75	0,44	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+basicConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicConstraintTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicConstraintTest	0,00	4,75	0,44	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+basicConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicConstraintTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicConstraintTest	0,00	4,75	0,44	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+basicConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicConstraintTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicConstraintTest	0,00	4,75	0,44	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+basicConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicConstraintTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicConstraintTest	0,00	4,75	0,44	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+basicConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/failedDecisions/basicConstraintTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.FailedDecisionsTests.basicConstraintTest	0,00	4,75	0,44	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+IgnoreDefaultAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/IgnoreDefaultAssignments.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.ignoreDefaultAssignmentsTest	0,00	8,00	0,60	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+IgnoreDefaultAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/IgnoreDefaultAssignments.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.ignoreDefaultAssignmentsTest	0,00	8,00	0,60	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+IgnoreDefaultAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/IgnoreDefaultAssignments.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.ignoreDefaultAssignmentsTest	0,00	8,00	0,60	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+IgnoreDefaultAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/IgnoreDefaultAssignments.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.ignoreDefaultAssignmentsTest	0,00	8,00	0,60	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+IgnoreDefaultAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/IgnoreDefaultAssignments.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.ignoreDefaultAssignmentsTest	0,00	8,00	0,60	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+IgnoreDefaultAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/IgnoreDefaultAssignments.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.ignoreDefaultAssignmentsTest	0,00	8,00	0,60	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+IgnoreDefaultAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/IgnoreDefaultAssignments.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.ignoreDefaultAssignmentsTest	0,00	8,00	0,60	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+IgnoreDefaultAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/IgnoreDefaultAssignments.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.ignoreDefaultAssignmentsTest	0,00	8,00	0,60	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+IgnoreDefaultAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/IgnoreDefaultAssignments.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.ignoreDefaultAssignmentsTest	0,00	8,00	0,60	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+IgnoreDefaultAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/IgnoreDefaultAssignments.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.ignoreDefaultAssignmentsTest	0,00	8,00	0,60	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+PartialFreeze	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/PartialFreeze.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.partialFreezeTest	2,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+PartialFreeze	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/PartialFreeze.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.partialFreezeTest	2,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+PartialFreeze	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/PartialFreeze.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.partialFreezeTest	2,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+PartialFreeze	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/PartialFreeze.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.partialFreezeTest	2,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+PartialFreeze	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/PartialFreeze.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.partialFreezeTest	2,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+PartialFreeze	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/PartialFreeze.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.partialFreezeTest	2,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+PartialFreeze	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/PartialFreeze.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.partialFreezeTest	2,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+PartialFreeze	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/PartialFreeze.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.partialFreezeTest	2,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+PartialFreeze	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/PartialFreeze.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.partialFreezeTest	2,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+PartialFreeze	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/PartialFreeze.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.partialFreezeTest	2,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+ValidationConstraintFilter	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/ValidationConstraintFilter.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.validationConstraintFilterTest	0,00	10,25	1,31	5,25	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+ValidationConstraintFilter	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/ValidationConstraintFilter.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.validationConstraintFilterTest	0,00	10,25	1,31	5,25	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+ValidationConstraintFilter	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/ValidationConstraintFilter.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.validationConstraintFilterTest	0,00	10,25	1,31	5,25	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+ValidationConstraintFilter	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/ValidationConstraintFilter.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.validationConstraintFilterTest	0,00	10,25	1,31	5,25	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+ValidationConstraintFilter	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/ValidationConstraintFilter.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.validationConstraintFilterTest	0,00	10,25	1,31	5,25	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+ValidationConstraintFilter	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/ValidationConstraintFilter.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.validationConstraintFilterTest	0,00	10,25	1,31	5,25	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+ValidationConstraintFilter	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/ValidationConstraintFilter.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.validationConstraintFilterTest	0,00	10,25	1,31	5,25	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+ValidationConstraintFilter	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/ValidationConstraintFilter.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.validationConstraintFilterTest	0,00	10,25	1,31	5,25	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+ValidationConstraintFilter	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/ValidationConstraintFilter.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.validationConstraintFilterTest	0,00	10,25	1,31	5,25	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+ValidationConstraintFilter	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/incrementalReasoningConstraints/ValidationConstraintFilter.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.RuntimeReasoningTests.validationConstraintFilterTest	0,00	10,25	1,31	5,25	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	4,00	0,00	
+booleanXORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanXORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanXORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanXORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanXORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanXORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanXORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanXORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanXORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanXORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+DynamicDispatchTestIsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsValid.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsValid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsValid.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsValid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsValid.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsValid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsValid.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsValid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsValid.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsValid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsValid.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsValid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsValid.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsValid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsValid.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsValid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsValid.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsValid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsValid.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsValid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	1,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanOrEqualsVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	16,00	0,00	0,00	0,00	0,00	16,00	9,00	0,00	4,00	16,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+integerDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+typedefTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedef.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+typedefTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedef.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+typedefTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedef.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+typedefTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedef.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+typedefTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedef.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+typedefTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedef.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+typedefTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedef.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+typedefTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedef.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+typedefTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedef.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+typedefTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedef.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+valueValidation13	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation13.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation13IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation13	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation13.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation13IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation13	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation13.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation13IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation13	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation13.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation13IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation13	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation13.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation13IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	16,00	0,00	0,00	0,00	0,00	16,00	10,00	0,00	0,00	16,00	
+valueValidation13	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation13.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation13IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation13	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation13.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation13IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation13	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation13.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation13IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation13	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation13.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation13IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation13	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation13.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation13IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+DynamicDispatchTestIsInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsInvalid.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsInvalid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsInvalid.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsInvalid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsInvalid.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsInvalid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsInvalid.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsInvalid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsInvalid.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsInvalid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsInvalid.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsInvalid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsInvalid.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsInvalid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsInvalid.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsInvalid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsInvalid.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsInvalid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+DynamicDispatchTestIsInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/DynamicDispatchIsInvalid.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testDynamicDispatchIsInvalid	0,00	3,25	0,25	1,25	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+valueValidation1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation1.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation1IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation1.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation1IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation1.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation1IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation1.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation1IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation1.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation1IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation1.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation1IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation1.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation1IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation1.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation1IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation1.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation1IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation1.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation1IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+typedefOfTypedefInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefInvalid.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefInvalid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	8,00	0,00	2,00	0,00	
+typedefOfTypedefInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefInvalid.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefInvalid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	8,00	0,00	2,00	0,00	
+typedefOfTypedefInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefInvalid.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefInvalid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	8,00	0,00	2,00	0,00	
+typedefOfTypedefInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefInvalid.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefInvalid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	8,00	0,00	2,00	0,00	
+typedefOfTypedefInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefInvalid.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefInvalid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	8,00	0,00	2,00	0,00	
+typedefOfTypedefInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefInvalid.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefInvalid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	8,00	0,00	2,00	0,00	
+typedefOfTypedefInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefInvalid.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefInvalid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	8,00	0,00	2,00	0,00	
+typedefOfTypedefInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefInvalid.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefInvalid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	8,00	0,00	2,00	0,00	
+typedefOfTypedefInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefInvalid.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefInvalid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	8,00	0,00	2,00	0,00	
+typedefOfTypedefInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefInvalid.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefInvalid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	8,00	0,00	2,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulConstants	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	16,00	0,00	0,00	0,00	0,00	16,00	3,00	0,00	0,00	16,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulConstants	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulConstants	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulConstants	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulConstants	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulConstants	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulConstants	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulConstants	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulConstants	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulConstants	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	0,00	
+valueValidation18	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation18.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation18IsValid	5,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation18	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation18.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation18IsValid	5,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation18	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation18.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation18IsValid	5,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation18	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation18.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation18IsValid	5,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation18	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation18.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation18IsValid	5,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation18	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation18.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation18IsValid	5,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation18	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation18.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation18IsValid	5,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation18	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation18.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation18IsValid	5,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation18	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation18.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation18IsValid	5,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation18	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation18.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation18IsValid	5,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation6	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation6.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation6IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+valueValidation6	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation6.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation6IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+valueValidation6	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation6.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation6IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+valueValidation6	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation6.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation6IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+valueValidation6	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation6.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation6IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+valueValidation6	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation6.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation6IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+valueValidation6	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation6.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation6IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+valueValidation6	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation6.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation6IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+valueValidation6	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation6.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation6IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+valueValidation6	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation6.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation6IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+typedefNestedInSequenceValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceValid.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSequenceValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceValid.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSequenceValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceValid.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSequenceValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceValid.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSequenceValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceValid.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSequenceValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceValid.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSequenceValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceValid.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSequenceValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceValid.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSequenceValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceValid.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSequenceValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceValid.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanOrEqualsVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+booleanEvaluateValueAssignVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanEvaluateValueAssignVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanEvaluateValueAssignVariables	0,00	11,50	0,50	3,50	0,00	2,00	2,00	6,00	6,00	8,00	8,00	8,00	1,00	8,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	6,00	0,00	
+booleanEvaluateValueAssignVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanEvaluateValueAssignVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanEvaluateValueAssignVariables	0,00	11,50	0,50	3,50	0,00	2,00	2,00	6,00	6,00	8,00	8,00	8,00	1,00	8,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	6,00	0,00	
+booleanEvaluateValueAssignVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanEvaluateValueAssignVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanEvaluateValueAssignVariables	0,00	11,50	0,50	3,50	0,00	2,00	2,00	6,00	6,00	8,00	8,00	8,00	1,00	8,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	6,00	0,00	
+booleanEvaluateValueAssignVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanEvaluateValueAssignVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanEvaluateValueAssignVariables	0,00	11,50	0,50	3,50	0,00	2,00	2,00	6,00	6,00	8,00	8,00	8,00	1,00	8,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	6,00	0,00	
+booleanEvaluateValueAssignVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanEvaluateValueAssignVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanEvaluateValueAssignVariables	0,00	11,50	0,50	3,50	0,00	2,00	2,00	6,00	6,00	8,00	8,00	8,00	1,00	8,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	6,00	0,00	
+booleanEvaluateValueAssignVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanEvaluateValueAssignVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanEvaluateValueAssignVariables	0,00	11,50	0,50	3,50	0,00	2,00	2,00	6,00	6,00	8,00	8,00	8,00	1,00	8,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	6,00	0,00	
+booleanEvaluateValueAssignVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanEvaluateValueAssignVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanEvaluateValueAssignVariables	0,00	11,50	0,50	3,50	0,00	2,00	2,00	6,00	6,00	8,00	8,00	8,00	1,00	8,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	6,00	0,00	
+booleanEvaluateValueAssignVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanEvaluateValueAssignVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanEvaluateValueAssignVariables	0,00	11,50	0,50	3,50	0,00	2,00	2,00	6,00	6,00	8,00	8,00	8,00	1,00	8,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	6,00	0,00	
+booleanEvaluateValueAssignVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanEvaluateValueAssignVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanEvaluateValueAssignVariables	0,00	11,50	0,50	3,50	0,00	2,00	2,00	6,00	6,00	8,00	8,00	8,00	1,00	8,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	6,00	0,00	
+booleanEvaluateValueAssignVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanEvaluateValueAssignVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanEvaluateValueAssignVariables	0,00	11,50	0,50	3,50	0,00	2,00	2,00	6,00	6,00	8,00	8,00	8,00	1,00	8,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	6,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanOrEqualsVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanOrEqualsVariables	0,00	14,25	0,68	10,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	15,00	0,00	0,00	0,00	0,00	0,00	0,00	15,00	0,00	4,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+realMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMulVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+typedefNestedInSetValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetValid.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetValid.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetValid.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetValid.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetValid.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetValid.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetValid.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetValid.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetValid.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetValid.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetValid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+realAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddConstants	0,00	1,50	0,75	1,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddConstants	0,00	1,50	0,75	1,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddConstants	0,00	1,50	0,75	1,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddConstants	0,00	1,50	0,75	1,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddConstants	0,00	1,50	0,75	1,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddConstants	0,00	1,50	0,75	1,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddConstants	0,00	1,50	0,75	1,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddConstants	0,00	1,50	0,75	1,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddConstants	0,00	1,50	0,75	1,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddConstants	0,00	1,50	0,75	1,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	15,00	
+realABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+realLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanANDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanANDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanANDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanANDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanANDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanANDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanANDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanANDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanANDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanANDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation22	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation22.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation22IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation22	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation22.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation22IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation22	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation22.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation22IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation22	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation22.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation22IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation22	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation22.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation22IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation22	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation22.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation22IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation22	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation22.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation22IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation22	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation22.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation22IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation22	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation22.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation22IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation22	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation22.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation22IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerGreaterThanVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+valueValidation11	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation11.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation11IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation11	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation11.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation11IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation11	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation11.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation11IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation11	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation11.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation11IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation11	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation11.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation11IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation11	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation11.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation11IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation11	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation11.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation11IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation11	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation11.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation11IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation11	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation11.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation11IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation11	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation11.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation11IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+realFLOORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORConstants	0,00	2,00	0,50	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realFLOORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORConstants	0,00	2,00	0,50	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realFLOORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORConstants	0,00	2,00	0,50	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realFLOORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORConstants	0,00	2,00	0,50	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realFLOORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORConstants	0,00	2,00	0,50	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realFLOORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORConstants	0,00	2,00	0,50	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realFLOORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORConstants	0,00	2,00	0,50	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realFLOORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORConstants	0,00	2,00	0,50	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realFLOORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORConstants	0,00	2,00	0,50	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realFLOORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORConstants	0,00	2,00	0,50	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realAddVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddVariables	0,00	4,75	0,55	2,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+realAddVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddVariables	0,00	4,75	0,55	2,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+realAddVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddVariables	0,00	4,75	0,55	2,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+realAddVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddVariables	0,00	4,75	0,55	2,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+realAddVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddVariables	0,00	4,75	0,55	2,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+realAddVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddVariables	0,00	4,75	0,55	2,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+realAddVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddVariables	0,00	4,75	0,55	2,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+realAddVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddVariables	0,00	4,75	0,55	2,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+realAddVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddVariables	0,00	4,75	0,55	2,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+realAddVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realAddVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealAddVariables	0,00	4,75	0,55	2,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+valueValidation16	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation16.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation16IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation16	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation16.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation16IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation16	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation16.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation16IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation16	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation16.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation16IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation16	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation16.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation16IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation16	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation16.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation16IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation16	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation16.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation16IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation16	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation16.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation16IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation16	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation16.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation16IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation16	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation16.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation16IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+realABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realABSVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+typedefNestedInCompoundInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundInvalid.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundInvalid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundInvalid.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundInvalid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundInvalid.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundInvalid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundInvalid.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundInvalid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundInvalid.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundInvalid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundInvalid.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundInvalid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundInvalid.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundInvalid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundInvalid.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundInvalid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundInvalid.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundInvalid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundInvalid.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundInvalid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	3,00	0,00	
+valueValidation4	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation4.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation4IsValid	0,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation4	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation4.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation4IsValid	0,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation4	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation4.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation4IsValid	0,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation4	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation4.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation4IsValid	0,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation4	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation4.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation4IsValid	0,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation4	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation4.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation4IsValid	0,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation4	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation4.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation4IsValid	0,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation4	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation4.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation4IsValid	0,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation4	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation4.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation4IsValid	0,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation4	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation4.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation4IsValid	0,00	19,50	2,25	13,50	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+typedefNestedInCompoundValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundValid.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundValid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundValid.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundValid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundValid.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundValid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundValid.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundValid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundValid.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundValid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundValid.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundValid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundValid.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundValid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundValid.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundValid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundValid.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundValid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+typedefNestedInCompoundValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInCompoundValid.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInCompoundValid	0,00	4,50	0,50	0,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+AliasUsedInSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/AliasUsedInSet.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAliasesInContainerValid	0,00	2,00	0,00	0,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+AliasUsedInSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/AliasUsedInSet.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAliasesInContainerValid	0,00	2,00	0,00	0,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+AliasUsedInSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/AliasUsedInSet.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAliasesInContainerValid	0,00	2,00	0,00	0,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+AliasUsedInSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/AliasUsedInSet.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAliasesInContainerValid	0,00	2,00	0,00	0,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+AliasUsedInSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/AliasUsedInSet.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAliasesInContainerValid	0,00	2,00	0,00	0,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+AliasUsedInSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/AliasUsedInSet.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAliasesInContainerValid	0,00	2,00	0,00	0,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+AliasUsedInSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/AliasUsedInSet.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAliasesInContainerValid	0,00	2,00	0,00	0,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+AliasUsedInSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/AliasUsedInSet.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAliasesInContainerValid	0,00	2,00	0,00	0,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+AliasUsedInSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/AliasUsedInSet.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAliasesInContainerValid	0,00	2,00	0,00	0,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+AliasUsedInSet	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/AliasUsedInSet.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAliasesInContainerValid	0,00	2,00	0,00	0,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+booleanANDVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanANDVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanANDVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanANDVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanANDVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanANDVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanANDVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanANDVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanANDVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanANDVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanANDVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanANDVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+valueValidation9	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation9.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation9IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation9	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation9.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation9IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation9	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation9.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation9IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation9	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation9.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation9IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation9	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation9.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation9IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation9	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation9.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation9IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation9	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation9.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation9IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation9	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation9.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation9IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation9	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation9.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation9IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation9	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation9.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation9IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+booleanORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariablesFail.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariablesFails	0,00	9,75	0,61	6,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	3,00	0,00	
+integerDivVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariablesFail.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariablesFails	0,00	9,75	0,61	6,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	11,00	15,00	0,00	0,00	0,00	0,00	15,00	11,00	0,00	3,00	15,00	
+integerDivVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariablesFail.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariablesFails	0,00	9,75	0,61	6,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	3,00	0,00	
+integerDivVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariablesFail.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariablesFails	0,00	9,75	0,61	6,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	3,00	0,00	
+integerDivVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariablesFail.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariablesFails	0,00	9,75	0,61	6,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	3,00	0,00	
+integerDivVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariablesFail.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariablesFails	0,00	9,75	0,61	6,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	3,00	0,00	
+integerDivVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariablesFail.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariablesFails	0,00	9,75	0,61	6,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	3,00	0,00	
+integerDivVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariablesFail.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariablesFails	0,00	9,75	0,61	6,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	3,00	0,00	
+integerDivVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariablesFail.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariablesFails	0,00	9,75	0,61	6,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	3,00	0,00	
+integerDivVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivVariablesFail.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivVariablesFails	0,00	9,75	0,61	6,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	3,00	0,00	
+integerLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerLessThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realFLOORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+realFLOORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+realFLOORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+realFLOORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+realFLOORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+realFLOORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+realFLOORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+realFLOORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+realFLOORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+realFLOORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realFLOORVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealFLOORVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	15,00	0,00	0,00	0,00	0,00	15,00	8,00	0,00	4,00	15,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerSubVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerSubVariables	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+booleanORVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanORVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanORVariables	0,00	6,00	0,67	4,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+integerDivConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstantsFail.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstantsFail	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstantsFail.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstantsFail	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstantsFail.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstantsFail	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstantsFail.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstantsFail	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstantsFail.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstantsFail	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstantsFail.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstantsFail	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstantsFail.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstantsFail	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstantsFail.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstantsFail	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstantsFail.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstantsFail	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDivConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDivConstantsFail.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDivConstantsFail	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMAXVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerLessThanVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerLessThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+valueValidation20	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation20.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation20IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation20	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation20.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation20IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation20	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation20.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation20IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation20	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation20.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation20IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation20	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation20.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation20IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation20	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation20.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation20IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation20	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation20.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation20IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation20	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation20.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation20IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation20	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation20.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation20IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation20	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation20.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation20IsValid	5,00	19,50	2,25	13,50	2,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+integerMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivVariables	0,00	6,00	0,50	3,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivVariables	0,00	6,00	0,50	3,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivVariables	0,00	6,00	0,50	3,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivVariables	0,00	6,00	0,50	3,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivVariables	0,00	6,00	0,50	3,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivVariables	0,00	6,00	0,50	3,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivVariables	0,00	6,00	0,50	3,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivVariables	0,00	6,00	0,50	3,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivVariables	0,00	6,00	0,50	3,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+realDivConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realDivVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealDivVariables	0,00	6,00	0,50	3,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	3,00	0,00	
+realEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+realEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+realEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+realEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+realEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+realEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+realEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+realEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+realEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+realEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+booleanNOTConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+booleanNOTConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+booleanNOTConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+booleanNOTConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+booleanNOTConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+booleanNOTConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+booleanNOTConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+booleanNOTConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+booleanNOTConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+booleanNOTConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+valueValidation14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation14.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation14IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation14.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation14IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation14.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation14IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation14.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation14IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation14.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation14IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation14.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation14IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation14.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation14IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation14.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation14IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation14.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation14IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation14	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation14.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation14IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation2.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation2IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation2.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation2IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation2.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation2IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation2.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation2IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation2.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation2IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation2.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation2IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation2.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation2IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation2.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation2IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation2.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation2IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation2.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation2IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+testBasisDatatype	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/string.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testStringOperationsIsValid	0,00	14,25	0,75	5,25	0,00	2,00	2,00	7,00	7,00	9,00	9,00	9,00	1,00	9,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	6,00	0,00	
+testBasisDatatype	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/string.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testStringOperationsIsValid	0,00	14,25	0,75	5,25	0,00	2,00	2,00	7,00	7,00	9,00	9,00	9,00	1,00	9,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	6,00	0,00	
+testBasisDatatype	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/string.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testStringOperationsIsValid	0,00	14,25	0,75	5,25	0,00	2,00	2,00	7,00	7,00	9,00	9,00	9,00	1,00	9,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	6,00	0,00	
+testBasisDatatype	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/string.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testStringOperationsIsValid	0,00	14,25	0,75	5,25	0,00	2,00	2,00	7,00	7,00	9,00	9,00	9,00	1,00	9,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	6,00	0,00	
+testBasisDatatype	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/string.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testStringOperationsIsValid	0,00	14,25	0,75	5,25	0,00	2,00	2,00	7,00	7,00	9,00	9,00	9,00	1,00	9,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	6,00	0,00	
+testBasisDatatype	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/string.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testStringOperationsIsValid	0,00	14,25	0,75	5,25	0,00	2,00	2,00	7,00	7,00	9,00	9,00	9,00	1,00	9,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	6,00	0,00	
+testBasisDatatype	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/string.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testStringOperationsIsValid	0,00	14,25	0,75	5,25	0,00	2,00	2,00	7,00	7,00	9,00	9,00	9,00	1,00	9,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	6,00	0,00	
+testBasisDatatype	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/string.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testStringOperationsIsValid	0,00	14,25	0,75	5,25	0,00	2,00	2,00	7,00	7,00	9,00	9,00	9,00	1,00	9,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	6,00	0,00	
+testBasisDatatype	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/string.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testStringOperationsIsValid	0,00	14,25	0,75	5,25	0,00	2,00	2,00	7,00	7,00	9,00	9,00	9,00	1,00	9,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	6,00	0,00	
+testBasisDatatype	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/string.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testStringOperationsIsValid	0,00	14,25	0,75	5,25	0,00	2,00	2,00	7,00	7,00	9,00	9,00	9,00	1,00	9,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	6,00	0,00	
+typedefNestedInSequenceInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceInvalid.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSequenceInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceInvalid.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSequenceInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceInvalid.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSequenceInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceInvalid.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSequenceInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceInvalid.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSequenceInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceInvalid.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSequenceInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceInvalid.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSequenceInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceInvalid.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSequenceInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceInvalid.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSequenceInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSequenceInvalid.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSequenceInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation19	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation19.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation19IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation19	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation19.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation19IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation19	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation19.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation19IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation19	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation19.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation19IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation19	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation19.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation19IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation19	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation19.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation19IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation19	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation19.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation19IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation19	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation19.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation19IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation19	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation19.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation19IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation19	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation19.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation19IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation7	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation7.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation7IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation7	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation7.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation7IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation7	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation7.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation7IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation7	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation7.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation7IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation7	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation7.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation7IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation7	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation7.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation7IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation7	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation7.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation7IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation7	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation7.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation7IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation7	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation7.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation7IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+valueValidation7	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation7.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation7IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	0,00	0,00	
+typedefCompoundNestedInSequenceValid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid1.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid1.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid1.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid1.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid1.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid1.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid1.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid1.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid1.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid1.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid2.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid2.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid2.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid2.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid2.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid2.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid2.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid2.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid2.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceValid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceValid2.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceValid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	2,00	0,00	
+integerMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMINVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+realEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+realEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+realEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+realEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+realEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+realEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+realEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+realEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+realEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realEqVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+booleanNOTVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTVariables	0,00	4,00	0,50	2,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+booleanNOTVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTVariables	0,00	4,00	0,50	2,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+booleanNOTVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTVariables	0,00	4,00	0,50	2,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+booleanNOTVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTVariables	0,00	4,00	0,50	2,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+booleanNOTVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTVariables	0,00	4,00	0,50	2,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+booleanNOTVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTVariables	0,00	4,00	0,50	2,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+booleanNOTVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTVariables	0,00	4,00	0,50	2,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	16,00	
+booleanNOTVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTVariables	0,00	4,00	0,50	2,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+booleanNOTVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTVariables	0,00	4,00	0,50	2,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+booleanNOTVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanNOTVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanNOTVariables	0,00	4,00	0,50	2,00	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+sequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/sequence.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testSequenceOperationsIsValid	0,00	28,25	0,52	16,25	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	2,00	12,00	31,00	0,00	0,00	0,00	0,00	0,00	0,00	31,00	0,00	6,00	0,00	
+sequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/sequence.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testSequenceOperationsIsValid	0,00	28,25	0,52	16,25	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	2,00	12,00	31,00	0,00	0,00	0,00	0,00	0,00	0,00	31,00	0,00	6,00	0,00	
+sequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/sequence.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testSequenceOperationsIsValid	0,00	28,25	0,52	16,25	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	2,00	12,00	31,00	0,00	0,00	0,00	0,00	0,00	0,00	31,00	0,00	6,00	0,00	
+sequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/sequence.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testSequenceOperationsIsValid	0,00	28,25	0,52	16,25	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	2,00	12,00	31,00	0,00	0,00	0,00	0,00	0,00	0,00	31,00	0,00	6,00	0,00	
+sequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/sequence.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testSequenceOperationsIsValid	0,00	28,25	0,52	16,25	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	2,00	12,00	31,00	0,00	0,00	0,00	0,00	0,00	0,00	31,00	0,00	6,00	0,00	
+sequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/sequence.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testSequenceOperationsIsValid	0,00	28,25	0,52	16,25	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	2,00	12,00	31,00	0,00	0,00	0,00	0,00	0,00	0,00	31,00	0,00	6,00	0,00	
+sequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/sequence.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testSequenceOperationsIsValid	0,00	28,25	0,52	16,25	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	2,00	12,00	31,00	0,00	0,00	0,00	0,00	0,00	0,00	31,00	0,00	6,00	0,00	
+sequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/sequence.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testSequenceOperationsIsValid	0,00	28,25	0,52	16,25	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	2,00	12,00	31,00	0,00	0,00	0,00	0,00	0,00	0,00	31,00	0,00	6,00	0,00	
+sequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/sequence.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testSequenceOperationsIsValid	0,00	28,25	0,52	16,25	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	2,00	12,00	31,00	0,00	0,00	0,00	0,00	0,00	0,00	31,00	0,00	6,00	0,00	
+sequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/sequence.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testSequenceOperationsIsValid	0,00	28,25	0,52	16,25	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	2,00	12,00	31,00	0,00	0,00	0,00	0,00	0,00	0,00	31,00	0,00	6,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realGreaterThanVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealGreaterThanVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realGreaterThanVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThenVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMAXVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMAXVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMAXVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMAXVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMAXVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMAXVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMAXVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMAXVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMAXVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMAXVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+typedefOfTypedefValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefValid.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+typedefOfTypedefValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefValid.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+typedefOfTypedefValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefValid.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+typedefOfTypedefValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefValid.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+typedefOfTypedefValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefValid.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+typedefOfTypedefValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefValid.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+typedefOfTypedefValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefValid.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+typedefOfTypedefValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefValid.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+typedefOfTypedefValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefValid.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+typedefOfTypedefValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefOfTypedefValid.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefOfTypedefValid	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+valueValidation12	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation12.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation12IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation12	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation12.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation12IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation12	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation12.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation12IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation12	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation12.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation12IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation12	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation12.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation12IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation12	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation12.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation12IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation12	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation12.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation12IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	15,00	0,00	0,00	0,00	0,00	15,00	10,00	0,00	5,00	15,00	
+valueValidation12	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation12.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation12IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation12	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation12.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation12IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation12	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation12.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation12IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstants	0,00	3,75	0,75	3,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	15,00	0,00	0,00	0,00	0,00	15,00	5,00	0,00	0,00	15,00	
+valueValidation17	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation17.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation17IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation17	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation17.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation17IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation17	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation17.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation17IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation17	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation17.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation17IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation17	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation17.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation17IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation17	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation17.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation17IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation17	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation17.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation17IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation17	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation17.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation17IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation17	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation17.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation17IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation17	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation17.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation17IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation5	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation5.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation5IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation5	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation5.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation5IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation5	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation5.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation5IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation5	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation5.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation5IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation5	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation5.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation5IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation5	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation5.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation5IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation5	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation5.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation5IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation5	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation5.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation5IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation5	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation5.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation5IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+valueValidation5	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation5.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation5IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerMulConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstantsFail.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstantsFail	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	3,00	0,00	3,00	0,00	3,00	0,00	0,00	0,00	
+integerMulConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstantsFail.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstantsFail	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	3,00	0,00	3,00	0,00	3,00	0,00	0,00	0,00	
+integerMulConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstantsFail.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstantsFail	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	3,00	0,00	3,00	0,00	3,00	0,00	0,00	0,00	
+integerMulConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstantsFail.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstantsFail	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	3,00	0,00	3,00	0,00	3,00	0,00	0,00	0,00	
+integerMulConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstantsFail.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstantsFail	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	3,00	0,00	3,00	0,00	3,00	0,00	0,00	0,00	
+integerMulConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstantsFail.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstantsFail	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	3,00	0,00	3,00	0,00	3,00	0,00	0,00	0,00	
+integerMulConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstantsFail.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstantsFail	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	3,00	0,00	3,00	0,00	3,00	0,00	0,00	0,00	
+integerMulConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstantsFail.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstantsFail	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	3,00	0,00	3,00	0,00	3,00	0,00	0,00	0,00	
+integerMulConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstantsFail.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstantsFail	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	3,00	0,00	3,00	0,00	3,00	0,00	0,00	0,00	
+integerMulConstantsFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulConstantsFail.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulConstantsFail	0,00	2,25	0,75	2,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	0,00	3,00	0,00	3,00	0,00	3,00	0,00	0,00	0,00	
+booleanImpliesVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanImpliesVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanImpliesVariables	0,00	11,00	0,88	7,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanImpliesVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanImpliesVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanImpliesVariables	0,00	11,00	0,88	7,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanImpliesVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanImpliesVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanImpliesVariables	0,00	11,00	0,88	7,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanImpliesVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanImpliesVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanImpliesVariables	0,00	11,00	0,88	7,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanImpliesVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanImpliesVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanImpliesVariables	0,00	11,00	0,88	7,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanImpliesVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanImpliesVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanImpliesVariables	0,00	11,00	0,88	7,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanImpliesVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanImpliesVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanImpliesVariables	0,00	11,00	0,88	7,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanImpliesVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanImpliesVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanImpliesVariables	0,00	11,00	0,88	7,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanImpliesVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanImpliesVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanImpliesVariables	0,00	11,00	0,88	7,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanImpliesVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanImpliesVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanImpliesVariables	0,00	11,00	0,88	7,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	15,00	0,00	0,00	0,00	0,00	15,00	8,00	0,00	4,00	15,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	16,00	0,00	0,00	0,00	0,00	16,00	10,00	0,00	5,00	16,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+integerMulConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMulVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMulVariables	0,00	10,00	0,50	5,00	0,00	0,00	0,00	5,00	5,00	5,00	5,00	5,00	1,00	5,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMINVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMINVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMINVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMINVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMINVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMINVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMINVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMINVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMINVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMINVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/mixMINVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testMixMINVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMAXConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+integerEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+integerEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+integerEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+integerEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+integerEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+integerEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+integerEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+integerEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+integerEqConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerConstants	0,00	4,50	0,50	4,50	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	0,00	0,00	
+integerDIVopConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDIVopConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDIVopConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDIVopConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDIVopConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDIVopConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDIVopConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDIVopConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDIVopConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerDIVopConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+realGreaterThanConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realLessThanOrEqualsConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealLessThanOrEqualsConstants	0,00	5,25	0,75	5,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddConstants	0,00	6,00	0,75	6,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddConstants	0,00	6,00	0,75	6,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddConstants	0,00	6,00	0,75	6,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddConstants	0,00	6,00	0,75	6,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddConstants	0,00	6,00	0,75	6,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddConstants	0,00	6,00	0,75	6,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddConstants	0,00	6,00	0,75	6,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddConstants	0,00	6,00	0,75	6,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddConstants	0,00	6,00	0,75	6,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddConstants	0,00	6,00	0,75	6,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+integerABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+integerABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+integerABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+integerABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+integerABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+integerABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+integerABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+integerABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+integerABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+integerABSConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSConstants	0,00	1,00	0,50	1,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+integerEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariables	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	3,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+realSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realSubVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealSubVariables	0,00	8,75	0,53	4,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	0,00	0,00	0,00	0,00	9,00	0,00	4,00	0,00	
+booleanIFFVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanIFFVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanIFFVariables	0,00	10,00	0,75	6,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanIFFVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanIFFVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanIFFVariables	0,00	10,00	0,75	6,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanIFFVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanIFFVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanIFFVariables	0,00	10,00	0,75	6,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanIFFVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanIFFVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanIFFVariables	0,00	10,00	0,75	6,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanIFFVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanIFFVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanIFFVariables	0,00	10,00	0,75	6,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanIFFVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanIFFVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanIFFVariables	0,00	10,00	0,75	6,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanIFFVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanIFFVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanIFFVariables	0,00	10,00	0,75	6,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanIFFVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanIFFVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanIFFVariables	0,00	10,00	0,75	6,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanIFFVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanIFFVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanIFFVariables	0,00	10,00	0,75	6,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+booleanIFFVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanIFFVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanIFFVariables	0,00	10,00	0,75	6,00	0,00	4,00	4,00	0,00	0,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	4,00	0,00	
+valueValidation21	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation21.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation21IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation21	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation21.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation21IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation21	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation21.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation21IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation21	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation21.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation21IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation21	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation21.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation21IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation21	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation21.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation21IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation21	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation21.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation21IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation21	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation21.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation21IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation21	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation21.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation21IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+valueValidation21	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation21.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation21IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	8,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	0,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	16,00	0,00	0,00	0,00	0,00	16,00	13,00	0,00	4,00	16,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+realMAXVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMAXVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMAXVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerSubConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerMODopVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerMODopVariables	0,00	12,75	0,67	8,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerDIVopVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopVariables	0,00	14,75	0,67	8,75	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerDIVopVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopVariables	0,00	14,75	0,67	8,75	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerDIVopVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopVariables	0,00	14,75	0,67	8,75	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerDIVopVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopVariables	0,00	14,75	0,67	8,75	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerDIVopVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopVariables	0,00	14,75	0,67	8,75	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerDIVopVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopVariables	0,00	14,75	0,67	8,75	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerDIVopVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopVariables	0,00	14,75	0,67	8,75	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerDIVopVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopVariables	0,00	14,75	0,67	8,75	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerDIVopVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopVariables	0,00	14,75	0,67	8,75	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+integerDIVopVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerDIVopVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerDIVopVariables	0,00	14,75	0,67	8,75	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	13,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	4,00	0,00	
+typedefNestedInSetInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetInvalid.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetInvalid.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetInvalid.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetInvalid.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetInvalid.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetInvalid.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetInvalid.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetInvalid.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetInvalid.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefNestedInSetInvalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefNestedInSetInvalid.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefNestedInSetInvalid	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+valueValidation10	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation10.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation10IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation10	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation10.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation10IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation10	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation10.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation10IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation10	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation10.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation10IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation10	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation10.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation10IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation10	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation10.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation10IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation10	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation10.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation10IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation10	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation10.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation10IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation10	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation10.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation10IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation10	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation10.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation10IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+integerAddConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerAddVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerAddVariables	0,00	12,00	0,50	6,00	0,00	0,00	0,00	6,00	6,00	6,00	6,00	6,00	1,00	6,00	12,00	0,00	0,00	0,00	0,00	0,00	0,00	12,00	0,00	6,00	0,00	
+booleanXORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanXORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanXORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanXORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanXORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanXORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanXORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanXORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanXORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+booleanXORConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/booleanXORConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testBooleanXORConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+integerABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+integerABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+integerABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+integerABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	16,00	0,00	0,00	0,00	0,00	16,00	4,00	0,00	2,00	16,00	
+integerABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+integerABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+integerABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+integerABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+integerABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+integerABSVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerABSVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerABSVariables	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+realMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+realMINConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realMINConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealMINConstants	0,00	3,00	0,75	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/annotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAnnotationsToDifferenCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/annotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAnnotationsToDifferenCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/annotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAnnotationsToDifferenCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/annotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAnnotationsToDifferenCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/annotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAnnotationsToDifferenCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/annotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAnnotationsToDifferenCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/annotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAnnotationsToDifferenCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/annotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAnnotationsToDifferenCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/annotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAnnotationsToDifferenCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/annotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testAnnotationsToDifferenCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+valueValidation15	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation15.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation15IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation15	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation15.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation15IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation15	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation15.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation15IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation15	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation15.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation15IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation15	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation15.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation15IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation15	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation15.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation15IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation15	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation15.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation15IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation15	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation15.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation15IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation15	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation15.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation15IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation15	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation15.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation15IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+valueValidation3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation3.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation3IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation3.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation3IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation3.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation3IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation3.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation3IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation3.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation3IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation3.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation3IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation3.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation3IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation3.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation3IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation3.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation3IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+valueValidation3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation3.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation3IsValid	0,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	5,00	0,00	
+realROUNDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDConstants.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDConstants	0,00	3,00	0,50	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+realROUNDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDConstants.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDConstants	0,00	3,00	0,50	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+realROUNDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDConstants.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDConstants	0,00	3,00	0,50	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+realROUNDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDConstants.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDConstants	0,00	3,00	0,50	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+realROUNDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDConstants.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDConstants	0,00	3,00	0,50	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+realROUNDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDConstants.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDConstants	0,00	3,00	0,50	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+realROUNDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDConstants.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDConstants	0,00	3,00	0,50	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+realROUNDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDConstants.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDConstants	0,00	3,00	0,50	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+realROUNDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDConstants.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDConstants	0,00	3,00	0,50	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+realROUNDConstants	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/realROUNDConstants.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testRealROUNDConstants	0,00	3,00	0,50	3,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+typedefCompoundNestedInSequenceInvalid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid1.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceInvalid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid1.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceInvalid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid1.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceInvalid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid1.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceInvalid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid1.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceInvalid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid1.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceInvalid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid1.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceInvalid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid1.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceInvalid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid1.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceInvalid1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid1.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid1	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceInvalid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid2.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	15,00	0,00	2,00	0,00	2,00	15,00	5,00	0,00	2,00	15,00	
+typedefCompoundNestedInSequenceInvalid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid2.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceInvalid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid2.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceInvalid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid2.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceInvalid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid2.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceInvalid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid2.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceInvalid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid2.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceInvalid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid2.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceInvalid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid2.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	2,00	0,00	
+typedefCompoundNestedInSequenceInvalid2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/typedefCompoundNestedInSequenceInvalid2.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testTypedefCompoundNestedInSequenceInvalid2	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	2,00	0,00	
+integerEqVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariablesFail.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariablesFail	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	9,00	0,00	9,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariablesFail.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariablesFail	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	9,00	0,00	9,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariablesFail.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariablesFail	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	9,00	0,00	9,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariablesFail.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariablesFail	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	9,00	0,00	9,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariablesFail.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariablesFail	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	9,00	0,00	9,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariablesFail.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariablesFail	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	9,00	0,00	9,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariablesFail.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariablesFail	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	9,00	0,00	9,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariablesFail.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariablesFail	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	9,00	0,00	9,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariablesFail.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariablesFail	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	9,00	0,00	9,00	0,00	12,00	0,00	3,00	0,00	
+integerEqVariablesFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/integerEqVariablesFail.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testIntegerEqVariablesFail	0,00	8,25	0,44	5,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	12,00	0,00	0,00	9,00	0,00	9,00	0,00	12,00	0,00	3,00	0,00	
+valueValidation8	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation8.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation8IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation8	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation8.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation8IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation8	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation8.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation8IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation8	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation8.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation8IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation8	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation8.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation8IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation8	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation8.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation8IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation8	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation8.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation8IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation8	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation8.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation8IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	16,00	10,00	16,00	5,00	16,00	
+valueValidation8	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation8.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation8IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+valueValidation8	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operations/valueValidation8.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.OperationTests.testValueValidation8IsValid	5,00	12,00	1,50	6,00	0,00	1,00	1,00	4,00	4,00	1,00	5,00	5,00	1,20	6,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	5,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Invalid.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintInvalid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Invalid.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintInvalid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Invalid.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintInvalid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Invalid.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintInvalid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Invalid.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintInvalid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Invalid.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintInvalid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Invalid.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintInvalid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Invalid.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintInvalid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Invalid.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintInvalid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Invalid.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintInvalid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Valid.ivml	REASONING	1	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintValid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Valid.ivml	REASONING	2	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintValid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Valid.ivml	REASONING	3	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintValid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Valid.ivml	REASONING	4	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintValid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Valid.ivml	REASONING	5	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintValid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Valid.ivml	REASONING	6	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintValid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Valid.ivml	REASONING	7	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintValid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Valid.ivml	REASONING	8	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintValid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Valid.ivml	REASONING	9	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintValid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+CompoundCollectionConstraintTest_Invalid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/collectionOperations/CompoundCollectionConstraintTest_Valid.ivml	REASONING	10	net.ssehub.easy.reasoning.core.frontend.CollectionOperationsTests.testCompoundCollectionConstraintValid	0,00	9,25	3,63	7,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+ImportCycleTest_CyclingDeclarations_A		REASONING	1	net.ssehub.easy.reasoning.core.frontend.StructureTests.testCyclingDeclarations	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	5,00	0,00	
+ImportCycleTest_CyclingDeclarations_A		REASONING	2	net.ssehub.easy.reasoning.core.frontend.StructureTests.testCyclingDeclarations	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	5,00	0,00	
+ImportCycleTest_CyclingDeclarations_A		REASONING	3	net.ssehub.easy.reasoning.core.frontend.StructureTests.testCyclingDeclarations	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	5,00	0,00	
+ImportCycleTest_CyclingDeclarations_A		REASONING	4	net.ssehub.easy.reasoning.core.frontend.StructureTests.testCyclingDeclarations	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	5,00	0,00	
+ImportCycleTest_CyclingDeclarations_A		REASONING	5	net.ssehub.easy.reasoning.core.frontend.StructureTests.testCyclingDeclarations	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	5,00	0,00	
+ImportCycleTest_CyclingDeclarations_A		REASONING	6	net.ssehub.easy.reasoning.core.frontend.StructureTests.testCyclingDeclarations	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	5,00	0,00	
+ImportCycleTest_CyclingDeclarations_A		REASONING	7	net.ssehub.easy.reasoning.core.frontend.StructureTests.testCyclingDeclarations	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	5,00	0,00	
+ImportCycleTest_CyclingDeclarations_A		REASONING	8	net.ssehub.easy.reasoning.core.frontend.StructureTests.testCyclingDeclarations	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	5,00	0,00	
+ImportCycleTest_CyclingDeclarations_A		REASONING	9	net.ssehub.easy.reasoning.core.frontend.StructureTests.testCyclingDeclarations	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	5,00	0,00	
+ImportCycleTest_CyclingDeclarations_A		REASONING	10	net.ssehub.easy.reasoning.core.frontend.StructureTests.testCyclingDeclarations	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	5,00	0,00	
+NestedCycleTest_MainProject		REASONING	1	net.ssehub.easy.reasoning.core.frontend.StructureTests.testNestedCycle	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	7,00	0,00	
+NestedCycleTest_MainProject		REASONING	2	net.ssehub.easy.reasoning.core.frontend.StructureTests.testNestedCycle	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	7,00	0,00	
+NestedCycleTest_MainProject		REASONING	3	net.ssehub.easy.reasoning.core.frontend.StructureTests.testNestedCycle	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	7,00	0,00	
+NestedCycleTest_MainProject		REASONING	4	net.ssehub.easy.reasoning.core.frontend.StructureTests.testNestedCycle	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	7,00	0,00	
+NestedCycleTest_MainProject		REASONING	5	net.ssehub.easy.reasoning.core.frontend.StructureTests.testNestedCycle	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	7,00	0,00	
+NestedCycleTest_MainProject		REASONING	6	net.ssehub.easy.reasoning.core.frontend.StructureTests.testNestedCycle	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	7,00	0,00	
+NestedCycleTest_MainProject		REASONING	7	net.ssehub.easy.reasoning.core.frontend.StructureTests.testNestedCycle	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	7,00	0,00	
+NestedCycleTest_MainProject		REASONING	8	net.ssehub.easy.reasoning.core.frontend.StructureTests.testNestedCycle	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	7,00	0,00	
+NestedCycleTest_MainProject		REASONING	9	net.ssehub.easy.reasoning.core.frontend.StructureTests.testNestedCycle	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	7,00	0,00	
+NestedCycleTest_MainProject		REASONING	10	net.ssehub.easy.reasoning.core.frontend.StructureTests.testNestedCycle	0,00	4,25	0,42	1,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	7,00	0,00	
+booleanDefaultFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalse.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalse	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalse.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalse	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalse.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalse	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalse.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalse	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalse.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalse	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalse.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalse	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalse.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalse	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalse.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalse	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalse.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalse	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalse.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalse	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+falseTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/falseTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.falseTest	0,00	0,25	0,25	0,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+falseTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/falseTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.falseTest	0,00	0,25	0,25	0,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+falseTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/falseTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.falseTest	0,00	0,25	0,25	0,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+falseTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/falseTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.falseTest	0,00	0,25	0,25	0,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+falseTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/falseTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.falseTest	0,00	0,25	0,25	0,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+falseTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/falseTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.falseTest	0,00	0,25	0,25	0,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+falseTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/falseTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.falseTest	0,00	0,25	0,25	0,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+falseTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/falseTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.falseTest	0,00	0,25	0,25	0,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+falseTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/falseTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.falseTest	0,00	0,25	0,25	0,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+falseTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/falseTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.falseTest	0,00	0,25	0,25	0,25	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithDefaultValue.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithDefaultValue.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithDefaultValue.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithDefaultValue.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithDefaultValue.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithDefaultValue.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithDefaultValue.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithDefaultValue.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithDefaultValue.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithDefaultValue.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+constraintInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundDefault.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundDefaultTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundDefault.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundDefaultTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundDefault.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundDefaultTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundDefault.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundDefaultTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundDefault.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundDefaultTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundDefault.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundDefaultTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundDefault.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundDefaultTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundDefault.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundDefaultTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	16,00	2,00	16,00	0,00	16,00	
+constraintInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundDefault.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundDefaultTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintInCompoundDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundDefault.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundDefaultTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+booleanDefaultFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalseInCompound.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalseInCompound	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalseInCompound.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalseInCompound	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalseInCompound.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalseInCompound	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalseInCompound.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalseInCompound	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalseInCompound.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalseInCompound	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalseInCompound.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalseInCompound	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalseInCompound.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalseInCompound	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalseInCompound.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalseInCompound	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalseInCompound.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalseInCompound	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanDefaultFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanDefaultFalseInCompound.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanDefaultFalseInCompound	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithNoDefaultValue.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithNoDefaultValue.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithNoDefaultValue.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithNoDefaultValue.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithNoDefaultValue.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithNoDefaultValue.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithNoDefaultValue.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithNoDefaultValue.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithNoDefaultValue.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithNoDefaultValue.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithEmptyDefaultValue.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithEmptyDefaultValue	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithEmptyDefaultValue.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithEmptyDefaultValue	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithEmptyDefaultValue.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithEmptyDefaultValue	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithEmptyDefaultValue.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithEmptyDefaultValue	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithEmptyDefaultValue.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithEmptyDefaultValue	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithEmptyDefaultValue.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithEmptyDefaultValue	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithEmptyDefaultValue.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithEmptyDefaultValue	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithEmptyDefaultValue.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithEmptyDefaultValue	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithEmptyDefaultValue.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithEmptyDefaultValue	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithEmptyDefaultValue.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithEmptyDefaultValue	0,00	4,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithNoDefaultValue.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithNoDefaultValue.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithNoDefaultValue.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithNoDefaultValue.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithNoDefaultValue.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithNoDefaultValue.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithNoDefaultValue.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithNoDefaultValue.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithNoDefaultValue.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanInCompoundWithNoDefaultValue.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanInCompoundWithNoDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithDefaultValue.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithDefaultValue.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithDefaultValue.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithDefaultValue.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithDefaultValue.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithDefaultValue.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithDefaultValue.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithDefaultValue.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithDefaultValue.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithDefaultValue.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+QM_constraintOrder	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/QM_constraintOrder.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.compoundConstraintVarOrder	0,00	101,75	3,51	59,75	0,00	4,00	4,00	26,00	26,00	10,00	30,00	30,00	1,40	42,00	20,00	0,00	0,00	0,00	0,00	0,00	0,00	20,00	0,00	6,00	0,00	
+QM_constraintOrder	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/QM_constraintOrder.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.compoundConstraintVarOrder	0,00	101,75	3,51	59,75	0,00	4,00	4,00	26,00	26,00	10,00	30,00	30,00	1,40	42,00	20,00	0,00	0,00	0,00	0,00	0,00	0,00	20,00	0,00	6,00	0,00	
+QM_constraintOrder	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/QM_constraintOrder.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.compoundConstraintVarOrder	0,00	101,75	3,51	59,75	0,00	4,00	4,00	26,00	26,00	10,00	30,00	30,00	1,40	42,00	20,00	0,00	0,00	0,00	0,00	0,00	0,00	20,00	0,00	6,00	0,00	
+QM_constraintOrder	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/QM_constraintOrder.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.compoundConstraintVarOrder	0,00	101,75	3,51	59,75	0,00	4,00	4,00	26,00	26,00	10,00	30,00	30,00	1,40	42,00	20,00	0,00	0,00	0,00	0,00	0,00	0,00	20,00	0,00	6,00	0,00	
+QM_constraintOrder	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/QM_constraintOrder.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.compoundConstraintVarOrder	0,00	101,75	3,51	59,75	0,00	4,00	4,00	26,00	26,00	10,00	30,00	30,00	1,40	42,00	20,00	0,00	0,00	0,00	0,00	0,00	0,00	20,00	0,00	6,00	0,00	
+QM_constraintOrder	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/QM_constraintOrder.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.compoundConstraintVarOrder	0,00	101,75	3,51	59,75	0,00	4,00	4,00	26,00	26,00	10,00	30,00	30,00	1,40	42,00	20,00	0,00	0,00	0,00	0,00	0,00	0,00	20,00	0,00	6,00	0,00	
+QM_constraintOrder	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/QM_constraintOrder.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.compoundConstraintVarOrder	0,00	101,75	3,51	59,75	0,00	4,00	4,00	26,00	26,00	10,00	30,00	30,00	1,40	42,00	20,00	0,00	0,00	0,00	0,00	0,00	0,00	20,00	0,00	6,00	0,00	
+QM_constraintOrder	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/QM_constraintOrder.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.compoundConstraintVarOrder	0,00	101,75	3,51	59,75	0,00	4,00	4,00	26,00	26,00	10,00	30,00	30,00	1,40	42,00	20,00	0,00	0,00	0,00	0,00	0,00	0,00	20,00	0,00	6,00	0,00	
+QM_constraintOrder	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/QM_constraintOrder.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.compoundConstraintVarOrder	0,00	101,75	3,51	59,75	0,00	4,00	4,00	26,00	26,00	10,00	30,00	30,00	1,40	42,00	20,00	0,00	0,00	0,00	0,00	0,00	0,00	20,00	0,00	6,00	0,00	
+QM_constraintOrder	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/QM_constraintOrder.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.compoundConstraintVarOrder	0,00	101,75	3,51	59,75	0,00	4,00	4,00	26,00	26,00	10,00	30,00	30,00	1,40	42,00	20,00	0,00	0,00	0,00	0,00	0,00	0,00	20,00	0,00	6,00	0,00	
+refinedConstraints		REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.refinedConstraintsTest	0,00	5,25	0,42	1,25	1,00	1,00	1,00	2,00	2,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+refinedConstraints		REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.refinedConstraintsTest	0,00	5,25	0,42	1,25	1,00	1,00	1,00	2,00	2,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+refinedConstraints		REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.refinedConstraintsTest	0,00	5,25	0,42	1,25	1,00	1,00	1,00	2,00	2,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+refinedConstraints		REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.refinedConstraintsTest	0,00	5,25	0,42	1,25	1,00	1,00	1,00	2,00	2,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+refinedConstraints		REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.refinedConstraintsTest	0,00	5,25	0,42	1,25	1,00	1,00	1,00	2,00	2,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+refinedConstraints		REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.refinedConstraintsTest	0,00	5,25	0,42	1,25	1,00	1,00	1,00	2,00	2,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+refinedConstraints		REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.refinedConstraintsTest	0,00	5,25	0,42	1,25	1,00	1,00	1,00	2,00	2,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+refinedConstraints		REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.refinedConstraintsTest	0,00	5,25	0,42	1,25	1,00	1,00	1,00	2,00	2,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+refinedConstraints		REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.refinedConstraintsTest	0,00	5,25	0,42	1,25	1,00	1,00	1,00	2,00	2,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+refinedConstraints		REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.refinedConstraintsTest	0,00	5,25	0,42	1,25	1,00	1,00	1,00	2,00	2,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	2,00	0,00	
+constraintDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintDefault.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintDefaultTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintDefault.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintDefaultTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintDefault.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintDefaultTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintDefault.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintDefaultTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintDefault.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintDefaultTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintDefault.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintDefaultTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintDefault.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintDefaultTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintDefault.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintDefaultTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintDefault.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintDefaultTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintDefault.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintDefaultTest	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintsDerived	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsDerived.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsDerivedTest	0,00	7,00	0,25	1,00	0,00	2,00	2,00	2,00	2,00	3,00	4,00	4,00	1,50	6,00	8,00	0,00	0,00	4,00	0,00	4,00	0,00	8,00	0,00	0,00	0,00	
+constraintsDerived	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsDerived.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsDerivedTest	0,00	7,00	0,25	1,00	0,00	2,00	2,00	2,00	2,00	3,00	4,00	4,00	1,50	6,00	8,00	0,00	0,00	4,00	0,00	4,00	0,00	8,00	0,00	0,00	0,00	
+constraintsDerived	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsDerived.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsDerivedTest	0,00	7,00	0,25	1,00	0,00	2,00	2,00	2,00	2,00	3,00	4,00	4,00	1,50	6,00	8,00	0,00	0,00	4,00	0,00	4,00	0,00	8,00	0,00	0,00	0,00	
+constraintsDerived	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsDerived.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsDerivedTest	0,00	7,00	0,25	1,00	0,00	2,00	2,00	2,00	2,00	3,00	4,00	4,00	1,50	6,00	8,00	0,00	0,00	4,00	0,00	4,00	0,00	8,00	0,00	0,00	0,00	
+constraintsDerived	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsDerived.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsDerivedTest	0,00	7,00	0,25	1,00	0,00	2,00	2,00	2,00	2,00	3,00	4,00	4,00	1,50	6,00	8,00	0,00	0,00	4,00	0,00	4,00	0,00	8,00	0,00	0,00	0,00	
+constraintsDerived	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsDerived.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsDerivedTest	0,00	7,00	0,25	1,00	0,00	2,00	2,00	2,00	2,00	3,00	4,00	4,00	1,50	6,00	8,00	0,00	0,00	4,00	0,00	4,00	0,00	8,00	0,00	0,00	0,00	
+constraintsDerived	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsDerived.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsDerivedTest	0,00	7,00	0,25	1,00	0,00	2,00	2,00	2,00	2,00	3,00	4,00	4,00	1,50	6,00	8,00	0,00	0,00	4,00	0,00	4,00	0,00	8,00	0,00	0,00	0,00	
+constraintsDerived	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsDerived.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsDerivedTest	0,00	7,00	0,25	1,00	0,00	2,00	2,00	2,00	2,00	3,00	4,00	4,00	1,50	6,00	8,00	0,00	0,00	4,00	0,00	4,00	0,00	8,00	0,00	0,00	0,00	
+constraintsDerived	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsDerived.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsDerivedTest	0,00	7,00	0,25	1,00	0,00	2,00	2,00	2,00	2,00	3,00	4,00	4,00	1,50	6,00	8,00	0,00	0,00	4,00	0,00	4,00	0,00	8,00	0,00	0,00	0,00	
+constraintsDerived	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsDerived.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsDerivedTest	0,00	7,00	0,25	1,00	0,00	2,00	2,00	2,00	2,00	3,00	4,00	4,00	1,50	6,00	8,00	0,00	0,00	4,00	0,00	4,00	0,00	8,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithDefaultValue.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithDefaultValue.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithDefaultValue.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithDefaultValue.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithDefaultValue.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithDefaultValue.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithDefaultValue.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithDefaultValue.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithDefaultValue.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsInCompoundWithDefaultValue.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsInCompoundWithDefaultValue	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	2,00	0,00	2,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithNoDefaultValue.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithNoDefaultValue.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithNoDefaultValue.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithNoDefaultValue.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithNoDefaultValue.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithNoDefaultValue.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithNoDefaultValue.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithNoDefaultValue.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithNoDefaultValue.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfConstraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithNoDefaultValue.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+booleanAssignedFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalse.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalse	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalse.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalse	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalse.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalse	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalse.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalse	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalse.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalse	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalse.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalse	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalse.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalse	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalse.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalse	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalse.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalse	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalse	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalse.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalse	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfConstraintsWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithEmptyDefaultValue.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithEmptyDefaultValue	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithEmptyDefaultValue.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithEmptyDefaultValue	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithEmptyDefaultValue.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithEmptyDefaultValue	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithEmptyDefaultValue.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithEmptyDefaultValue	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithEmptyDefaultValue.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithEmptyDefaultValue	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithEmptyDefaultValue.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithEmptyDefaultValue	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithEmptyDefaultValue.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithEmptyDefaultValue	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithEmptyDefaultValue.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithEmptyDefaultValue	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithEmptyDefaultValue.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithEmptyDefaultValue	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+setOfConstraintsWithEmptyDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfConstraintsWithEmptyDefaultValue.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfConstraintsWithEmptyDefaultValue	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+booleanAssignedFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalseInCompound.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalseInCompound	0,00	4,50	1,50	1,50	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalseInCompound.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalseInCompound	0,00	4,50	1,50	1,50	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalseInCompound.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalseInCompound	0,00	4,50	1,50	1,50	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalseInCompound.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalseInCompound	0,00	4,50	1,50	1,50	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalseInCompound.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalseInCompound	0,00	4,50	1,50	1,50	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalseInCompound.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalseInCompound	0,00	4,50	1,50	1,50	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalseInCompound.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalseInCompound	0,00	4,50	1,50	1,50	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalseInCompound.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalseInCompound	0,00	4,50	1,50	1,50	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalseInCompound.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalseInCompound	0,00	4,50	1,50	1,50	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+booleanAssignedFalseInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/booleanAssignedFalseInCompound.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.booleanAssignedFalseInCompound	0,00	4,50	1,50	1,50	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithNoDefaultValue.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithNoDefaultValue.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithNoDefaultValue.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithNoDefaultValue.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithNoDefaultValue.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithNoDefaultValue.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithNoDefaultValue.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithNoDefaultValue.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithNoDefaultValue.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithNoDefaultValue.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithNoDefaultValue	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+constraintInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundAssigned.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundAssignedTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundAssigned.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundAssignedTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundAssigned.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundAssignedTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundAssigned.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundAssignedTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundAssigned.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundAssignedTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundAssigned.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundAssignedTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundAssigned.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundAssignedTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundAssigned.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundAssignedTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundAssigned.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundAssignedTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintInCompoundAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintInCompoundAssigned.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintInCompoundAssignedTest	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsInCompoundWithNoDefaultValue.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsInCompoundWithNoDefaultValue	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsInCompoundWithNoDefaultValue.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsInCompoundWithNoDefaultValue	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsInCompoundWithNoDefaultValue.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsInCompoundWithNoDefaultValue	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsInCompoundWithNoDefaultValue.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsInCompoundWithNoDefaultValue	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsInCompoundWithNoDefaultValue.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsInCompoundWithNoDefaultValue	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsInCompoundWithNoDefaultValue.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsInCompoundWithNoDefaultValue	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsInCompoundWithNoDefaultValue.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsInCompoundWithNoDefaultValue	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsInCompoundWithNoDefaultValue.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsInCompoundWithNoDefaultValue	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsInCompoundWithNoDefaultValue.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsInCompoundWithNoDefaultValue	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintsInCompoundWithNoDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintsInCompoundWithNoDefaultValue.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintsInCompoundWithNoDefaultValue	0,00	3,25	0,25	0,25	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,50	3,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithDefaultValue.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithDefaultValue.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithDefaultValue.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithDefaultValue.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithDefaultValue.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithDefaultValue.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithDefaultValue.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithDefaultValue.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithDefaultValue.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+setOfBooleanInCompoundWithDefaultValue	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/setOfBooleanWithDefaultValue.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.setOfBooleanWithDefaultValue	0,00	2,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+changingConstraintsBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/changingConstraints/changingConstraintsBase.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	23,25	0,56	7,25	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	23,00	0,00	0,00	8,00	0,00	8,00	0,00	23,00	0,00	3,00	0,00	
+changingConstraintsBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/changingConstraints/changingConstraintsBase.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	23,25	0,56	7,25	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	23,00	0,00	0,00	8,00	0,00	8,00	0,00	23,00	0,00	3,00	0,00	
+changingConstraintsBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/changingConstraints/changingConstraintsBase.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	23,25	0,56	7,25	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	23,00	0,00	0,00	8,00	0,00	8,00	0,00	23,00	0,00	3,00	0,00	
+changingConstraintsBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/changingConstraints/changingConstraintsBase.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	23,25	0,56	7,25	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	23,00	0,00	0,00	8,00	0,00	8,00	0,00	23,00	0,00	3,00	0,00	
+changingConstraintsBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/changingConstraints/changingConstraintsBase.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	23,25	0,56	7,25	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	23,00	0,00	0,00	8,00	0,00	8,00	0,00	23,00	0,00	3,00	0,00	
+changingConstraintsBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/changingConstraints/changingConstraintsBase.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	23,25	0,56	7,25	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	23,00	0,00	0,00	8,00	0,00	8,00	0,00	23,00	0,00	3,00	0,00	
+changingConstraintsBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/changingConstraints/changingConstraintsBase.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	23,25	0,56	7,25	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	23,00	0,00	0,00	8,00	0,00	8,00	0,00	23,00	0,00	3,00	0,00	
+changingConstraintsBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/changingConstraints/changingConstraintsBase.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	23,25	0,56	7,25	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	23,00	0,00	0,00	8,00	0,00	8,00	0,00	23,00	0,00	3,00	0,00	
+changingConstraintsBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/changingConstraints/changingConstraintsBase.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	23,25	0,56	7,25	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	23,00	0,00	0,00	8,00	0,00	8,00	0,00	23,00	0,00	3,00	0,00	
+changingConstraintsBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/changingConstraints/changingConstraintsBase.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	23,25	0,56	7,25	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	23,00	0,00	0,00	8,00	0,00	8,00	0,00	23,00	0,00	3,00	0,00	
+changingConstraints		REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	38,00	0,96	22,00	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	34,00	0,00	0,00	0,00	0,00	0,00	0,00	45,00	0,00	15,00	0,00	
+changingConstraints		REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	38,00	0,96	22,00	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	34,00	0,00	0,00	0,00	0,00	0,00	0,00	45,00	0,00	15,00	0,00	
+changingConstraints		REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	38,00	0,96	22,00	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	34,00	0,00	0,00	0,00	0,00	0,00	0,00	45,00	0,00	15,00	0,00	
+changingConstraints		REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	38,00	0,96	22,00	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	34,00	0,00	0,00	0,00	0,00	0,00	0,00	45,00	0,00	15,00	0,00	
+changingConstraints		REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	38,00	0,96	22,00	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	34,00	0,00	0,00	0,00	0,00	0,00	0,00	45,00	0,00	15,00	0,00	
+changingConstraints		REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	38,00	0,96	22,00	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	34,00	0,00	0,00	0,00	0,00	0,00	0,00	45,00	0,00	15,00	0,00	
+changingConstraints		REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	38,00	0,96	22,00	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	34,00	0,00	0,00	0,00	0,00	0,00	0,00	45,00	0,00	15,00	0,00	
+changingConstraints		REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	38,00	0,96	22,00	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	34,00	0,00	0,00	0,00	0,00	0,00	0,00	45,00	0,00	15,00	0,00	
+changingConstraints		REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	38,00	0,96	22,00	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	34,00	0,00	0,00	0,00	0,00	0,00	0,00	45,00	0,00	15,00	0,00	
+changingConstraints		REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.changingConstraintsTest	0,00	38,00	0,96	22,00	0,00	8,00	8,00	5,00	5,00	8,00	13,00	13,00	1,23	16,00	34,00	0,00	0,00	0,00	0,00	0,00	0,00	45,00	0,00	15,00	0,00	
+constraintAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintAssigned.ivml	REASONING	1	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintAssignedTest	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintAssigned.ivml	REASONING	2	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintAssignedTest	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintAssigned.ivml	REASONING	3	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintAssignedTest	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintAssigned.ivml	REASONING	4	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintAssignedTest	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintAssigned.ivml	REASONING	5	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintAssignedTest	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintAssigned.ivml	REASONING	6	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintAssignedTest	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintAssigned.ivml	REASONING	7	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintAssignedTest	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintAssigned.ivml	REASONING	8	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintAssignedTest	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintAssigned.ivml	REASONING	9	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintAssignedTest	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+constraintAssigned	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/constraintVariables/constraintAssigned.ivml	REASONING	10	net.ssehub.easy.reasoning.core.capabilities.ConstraintVariableTests.constraintAssignedTest	0,00	1,50	0,50	0,50	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	0,00	0,00	
+SimpleEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/SimpleEval.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EvalTests.simpleEval	0,00	3,00	0,67	2,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	16,00	0,00	0,00	0,00	0,00	16,00	4,00	0,00	1,00	16,00	
+SimpleEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/SimpleEval.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EvalTests.simpleEval	0,00	3,00	0,67	2,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+SimpleEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/SimpleEval.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EvalTests.simpleEval	0,00	3,00	0,67	2,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+SimpleEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/SimpleEval.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EvalTests.simpleEval	0,00	3,00	0,67	2,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+SimpleEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/SimpleEval.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EvalTests.simpleEval	0,00	3,00	0,67	2,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+SimpleEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/SimpleEval.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EvalTests.simpleEval	0,00	3,00	0,67	2,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+SimpleEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/SimpleEval.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EvalTests.simpleEval	0,00	3,00	0,67	2,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+SimpleEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/SimpleEval.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EvalTests.simpleEval	0,00	3,00	0,67	2,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+SimpleEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/SimpleEval.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EvalTests.simpleEval	0,00	3,00	0,67	2,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+SimpleEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/SimpleEval.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EvalTests.simpleEval	0,00	3,00	0,67	2,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+NestedEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/NestedEval.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EvalTests.nestedEval	0,00	2,50	0,50	1,50	2,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+NestedEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/NestedEval.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EvalTests.nestedEval	0,00	2,50	0,50	1,50	2,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+NestedEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/NestedEval.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EvalTests.nestedEval	0,00	2,50	0,50	1,50	2,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+NestedEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/NestedEval.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EvalTests.nestedEval	0,00	2,50	0,50	1,50	2,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+NestedEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/NestedEval.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EvalTests.nestedEval	0,00	2,50	0,50	1,50	2,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+NestedEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/NestedEval.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EvalTests.nestedEval	0,00	2,50	0,50	1,50	2,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+NestedEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/NestedEval.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EvalTests.nestedEval	0,00	2,50	0,50	1,50	2,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+NestedEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/NestedEval.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EvalTests.nestedEval	0,00	2,50	0,50	1,50	2,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+NestedEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/NestedEval.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EvalTests.nestedEval	0,00	2,50	0,50	1,50	2,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+NestedEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/NestedEval.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EvalTests.nestedEval	0,00	2,50	0,50	1,50	2,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+CompoundEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/CompoundEval.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EvalTests.compoundEval	0,00	4,75	0,88	1,75	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+CompoundEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/CompoundEval.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EvalTests.compoundEval	0,00	4,75	0,88	1,75	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+CompoundEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/CompoundEval.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EvalTests.compoundEval	0,00	4,75	0,88	1,75	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+CompoundEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/CompoundEval.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EvalTests.compoundEval	0,00	4,75	0,88	1,75	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+CompoundEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/CompoundEval.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EvalTests.compoundEval	0,00	4,75	0,88	1,75	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+CompoundEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/CompoundEval.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EvalTests.compoundEval	0,00	4,75	0,88	1,75	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+CompoundEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/CompoundEval.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EvalTests.compoundEval	0,00	4,75	0,88	1,75	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+CompoundEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/CompoundEval.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EvalTests.compoundEval	0,00	4,75	0,88	1,75	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+CompoundEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/CompoundEval.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EvalTests.compoundEval	0,00	4,75	0,88	1,75	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+CompoundEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/evals/CompoundEval.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EvalTests.compoundEval	0,00	4,75	0,88	1,75	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	1	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	79,00	0,00	0,00	0,00	0,00	125,00	2150,00	46,00	1648,00	125,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	2	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	45,00	0,00	0,00	0,00	0,00	93,00	2151,00	48,00	1648,00	93,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	3	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	16,00	0,00	0,00	0,00	0,00	63,00	2152,00	47,00	1648,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	4	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	0,00	0,00	0,00	0,00	0,00	47,00	2150,00	47,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	5	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	48,00	0,00	0,00	0,00	0,00	63,00	2148,00	15,00	1648,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	6	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	32,00	0,00	0,00	0,00	0,00	78,00	2153,00	46,00	1648,00	78,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	7	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	31,00	0,00	0,00	0,00	0,00	62,00	2150,00	31,00	1648,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	8	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	32,00	0,00	0,00	0,00	0,00	63,00	2148,00	31,00	1648,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	9	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	32,00	0,00	0,00	0,00	0,00	47,00	2150,00	15,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	10	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	16,00	0,00	0,00	0,00	0,00	47,00	2153,00	31,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	1	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	30,00	0,00	0,00	0,00	0,00	62,00	2148,00	32,00	1648,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	2	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	63,00	0,00	0,00	0,00	0,00	94,00	2146,00	31,00	1648,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	3	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	31,00	0,00	0,00	0,00	0,00	47,00	2150,00	0,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	4	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	31,00	0,00	0,00	0,00	0,00	47,00	2153,00	16,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	5	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	32,00	0,00	0,00	0,00	0,00	47,00	2153,00	15,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	6	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	62,00	0,00	0,00	0,00	0,00	62,00	2150,00	0,00	1648,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	7	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	31,00	0,00	0,00	0,00	0,00	47,00	2148,00	16,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	8	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	5,00	0,00	0,00	0,00	0,00	43,00	2145,00	38,00	1648,00	43,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	9	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	30,00	0,00	0,00	0,00	0,00	46,00	2150,00	16,00	1648,00	46,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmModelTest/QM_0.ivml	REASONING	10	net.ssehub.easy.reasoning.core.qm.QMValidTest.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	0,00	0,00	0,00	0,00	0,00	47,00	2153,00	47,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest1/QM_0.ivml	REASONING	1	net.ssehub.easy.reasoning.core.qm.QMHardwareTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	15,00	0,00	2,00	0,00	2,00	47,00	2150,00	32,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest1/QM_0.ivml	REASONING	2	net.ssehub.easy.reasoning.core.qm.QMHardwareTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	63,00	0,00	2,00	0,00	2,00	63,00	2144,00	0,00	1648,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest1/QM_0.ivml	REASONING	3	net.ssehub.easy.reasoning.core.qm.QMHardwareTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	32,00	0,00	2,00	0,00	2,00	47,00	2149,00	15,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest1/QM_0.ivml	REASONING	4	net.ssehub.easy.reasoning.core.qm.QMHardwareTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	47,00	0,00	2,00	0,00	2,00	47,00	2149,00	0,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest1/QM_0.ivml	REASONING	5	net.ssehub.easy.reasoning.core.qm.QMHardwareTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	0,00	0,00	2,00	0,00	2,00	47,00	2153,00	47,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest1/QM_0.ivml	REASONING	6	net.ssehub.easy.reasoning.core.qm.QMHardwareTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	31,00	0,00	2,00	0,00	2,00	47,00	2153,00	16,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest1/QM_0.ivml	REASONING	7	net.ssehub.easy.reasoning.core.qm.QMHardwareTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	15,00	0,00	2,00	0,00	2,00	46,00	2150,00	31,00	1648,00	46,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest1/QM_0.ivml	REASONING	8	net.ssehub.easy.reasoning.core.qm.QMHardwareTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	16,00	0,00	2,00	0,00	2,00	78,00	2149,00	62,00	1648,00	94,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest1/QM_0.ivml	REASONING	9	net.ssehub.easy.reasoning.core.qm.QMHardwareTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	31,00	0,00	2,00	0,00	2,00	31,00	2150,00	0,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest1/QM_0.ivml	REASONING	10	net.ssehub.easy.reasoning.core.qm.QMHardwareTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	0,00	0,00	2,00	0,00	2,00	31,00	2152,00	31,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest2/QM_0.ivml	REASONING	1	net.ssehub.easy.reasoning.core.qm.QMHardwareTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	30,00	0,00	1,00	0,00	1,00	46,00	2153,00	16,00	1648,00	46,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest2/QM_0.ivml	REASONING	2	net.ssehub.easy.reasoning.core.qm.QMHardwareTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	47,00	0,00	1,00	0,00	1,00	47,00	2142,00	0,00	1648,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest2/QM_0.ivml	REASONING	3	net.ssehub.easy.reasoning.core.qm.QMHardwareTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	31,00	0,00	1,00	0,00	1,00	47,00	2153,00	16,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest2/QM_0.ivml	REASONING	4	net.ssehub.easy.reasoning.core.qm.QMHardwareTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	32,00	0,00	1,00	0,00	1,00	47,00	2152,00	15,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest2/QM_0.ivml	REASONING	5	net.ssehub.easy.reasoning.core.qm.QMHardwareTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	31,00	0,00	1,00	0,00	1,00	62,00	2152,00	31,00	1648,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest2/QM_0.ivml	REASONING	6	net.ssehub.easy.reasoning.core.qm.QMHardwareTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	0,00	0,00	1,00	0,00	1,00	31,00	2145,00	31,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest2/QM_0.ivml	REASONING	7	net.ssehub.easy.reasoning.core.qm.QMHardwareTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	32,00	0,00	1,00	0,00	1,00	63,00	2146,00	31,00	1648,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest2/QM_0.ivml	REASONING	8	net.ssehub.easy.reasoning.core.qm.QMHardwareTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	46,00	0,00	1,00	0,00	1,00	62,00	2152,00	16,00	1648,00	62,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest2/QM_0.ivml	REASONING	9	net.ssehub.easy.reasoning.core.qm.QMHardwareTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	16,00	0,00	1,00	0,00	1,00	31,00	2144,00	15,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest2/QM_0.ivml	REASONING	10	net.ssehub.easy.reasoning.core.qm.QMHardwareTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	16,00	0,00	1,00	0,00	1,00	47,00	2153,00	15,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest3/QM_0.ivml	REASONING	1	net.ssehub.easy.reasoning.core.qm.QMHardwareTest3.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	0,00	0,00	1,00	0,00	1,00	47,00	2152,00	31,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest3/QM_0.ivml	REASONING	2	net.ssehub.easy.reasoning.core.qm.QMHardwareTest3.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	47,00	0,00	1,00	0,00	1,00	47,00	2150,00	0,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest3/QM_0.ivml	REASONING	3	net.ssehub.easy.reasoning.core.qm.QMHardwareTest3.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	16,00	0,00	1,00	0,00	1,00	47,00	2151,00	31,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest3/QM_0.ivml	REASONING	4	net.ssehub.easy.reasoning.core.qm.QMHardwareTest3.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	47,00	0,00	1,00	0,00	1,00	63,00	2153,00	16,00	1648,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest3/QM_0.ivml	REASONING	5	net.ssehub.easy.reasoning.core.qm.QMHardwareTest3.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	31,00	0,00	1,00	0,00	1,00	46,00	2141,00	15,00	1648,00	46,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest3/QM_0.ivml	REASONING	6	net.ssehub.easy.reasoning.core.qm.QMHardwareTest3.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	31,00	0,00	1,00	0,00	1,00	47,00	2153,00	16,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest3/QM_0.ivml	REASONING	7	net.ssehub.easy.reasoning.core.qm.QMHardwareTest3.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	0,00	0,00	1,00	0,00	1,00	32,00	2144,00	32,00	1648,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest3/QM_0.ivml	REASONING	8	net.ssehub.easy.reasoning.core.qm.QMHardwareTest3.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	15,00	0,00	1,00	0,00	1,00	31,00	2151,00	16,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest3/QM_0.ivml	REASONING	9	net.ssehub.easy.reasoning.core.qm.QMHardwareTest3.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	31,00	0,00	1,00	0,00	1,00	47,00	2150,00	16,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmHardwareTest3/QM_0.ivml	REASONING	10	net.ssehub.easy.reasoning.core.qm.QMHardwareTest3.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	0,00	0,00	1,00	0,00	1,00	32,00	2153,00	16,00	1648,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmAlgorithmsTest1/QM_0.ivml	REASONING	1	net.ssehub.easy.reasoning.core.qm.QMAlgorithmsTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	47,00	0,00	1,00	0,00	1,00	47,00	2149,00	0,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmAlgorithmsTest1/QM_0.ivml	REASONING	2	net.ssehub.easy.reasoning.core.qm.QMAlgorithmsTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	15,00	0,00	1,00	0,00	1,00	31,00	2143,00	16,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmAlgorithmsTest1/QM_0.ivml	REASONING	3	net.ssehub.easy.reasoning.core.qm.QMAlgorithmsTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	47,00	0,00	1,00	0,00	1,00	47,00	2149,00	0,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmAlgorithmsTest1/QM_0.ivml	REASONING	4	net.ssehub.easy.reasoning.core.qm.QMAlgorithmsTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	15,00	0,00	1,00	0,00	1,00	31,00	2150,00	16,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmAlgorithmsTest1/QM_0.ivml	REASONING	5	net.ssehub.easy.reasoning.core.qm.QMAlgorithmsTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	15,00	0,00	1,00	0,00	1,00	31,00	2148,00	16,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmAlgorithmsTest1/QM_0.ivml	REASONING	6	net.ssehub.easy.reasoning.core.qm.QMAlgorithmsTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	15,00	0,00	1,00	0,00	1,00	31,00	2148,00	16,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmAlgorithmsTest1/QM_0.ivml	REASONING	7	net.ssehub.easy.reasoning.core.qm.QMAlgorithmsTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	31,00	0,00	1,00	0,00	1,00	31,00	2148,00	0,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmAlgorithmsTest1/QM_0.ivml	REASONING	8	net.ssehub.easy.reasoning.core.qm.QMAlgorithmsTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	47,00	0,00	1,00	0,00	1,00	47,00	2153,00	0,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmAlgorithmsTest1/QM_0.ivml	REASONING	9	net.ssehub.easy.reasoning.core.qm.QMAlgorithmsTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	16,00	0,00	1,00	0,00	1,00	31,00	2153,00	15,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmAlgorithmsTest1/QM_0.ivml	REASONING	10	net.ssehub.easy.reasoning.core.qm.QMAlgorithmsTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	32,00	0,00	1,00	0,00	1,00	63,00	2153,00	31,00	1648,00	63,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest1/QM_0.ivml	REASONING	1	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	16,00	0,00	1,00	0,00	1,00	47,00	2151,00	31,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest1/QM_0.ivml	REASONING	2	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	15,00	0,00	1,00	0,00	1,00	31,00	2151,00	0,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest1/QM_0.ivml	REASONING	3	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	31,00	0,00	1,00	0,00	1,00	47,00	2152,00	16,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest1/QM_0.ivml	REASONING	4	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	16,00	0,00	1,00	0,00	1,00	31,00	2146,00	15,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest1/QM_0.ivml	REASONING	5	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	47,00	0,00	1,00	0,00	1,00	47,00	2151,00	0,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest1/QM_0.ivml	REASONING	6	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	16,00	0,00	1,00	0,00	1,00	32,00	2147,00	16,00	1648,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest1/QM_0.ivml	REASONING	7	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	16,00	0,00	1,00	0,00	1,00	31,00	2149,00	15,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest1/QM_0.ivml	REASONING	8	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	47,00	0,00	1,00	0,00	1,00	47,00	2145,00	0,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest1/QM_0.ivml	REASONING	9	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	16,00	0,00	1,00	0,00	1,00	31,00	2153,00	15,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest1/QM_0.ivml	REASONING	10	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest1.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	31,00	0,00	1,00	0,00	1,00	31,00	2153,00	0,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest2/QM_0.ivml	REASONING	1	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	16,00	0,00	1,00	0,00	1,00	31,00	2153,00	15,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest2/QM_0.ivml	REASONING	2	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	16,00	0,00	1,00	0,00	1,00	32,00	2146,00	16,00	1648,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest2/QM_0.ivml	REASONING	3	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	16,00	0,00	1,00	0,00	1,00	31,00	2145,00	15,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest2/QM_0.ivml	REASONING	4	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	16,00	0,00	1,00	0,00	1,00	31,00	2153,00	15,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest2/QM_0.ivml	REASONING	5	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	31,00	0,00	1,00	0,00	1,00	47,00	2151,00	16,00	1648,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest2/QM_0.ivml	REASONING	6	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	0,00	0,00	1,00	0,00	1,00	31,00	2147,00	31,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest2/QM_0.ivml	REASONING	7	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	15,00	0,00	1,00	0,00	1,00	31,00	2153,00	16,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest2/QM_0.ivml	REASONING	8	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	16,00	0,00	1,00	0,00	1,00	16,00	2151,00	0,00	1648,00	16,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest2/QM_0.ivml	REASONING	9	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	16,00	0,00	1,00	0,00	1,00	32,00	2151,00	16,00	1648,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmFamiliesTest2/QM_0.ivml	REASONING	10	net.ssehub.easy.reasoning.core.qm.QMFamiliesTest2.coreTest	681,00	1025,25	1,81	360,25	5,00	102,00	102,00	480,00	480,00	65,00	582,00	582,00	1,14	665,00	1705,00	16,00	0,00	1,00	0,00	1,00	31,00	2150,00	15,00	1648,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmPipelinesTest1/QM_0.ivml	REASONING	1	net.ssehub.easy.reasoning.core.qm.QMPipelinesTest1.coreTest	715,00	1057,75	1,76	367,75	5,00	107,00	107,00	494,00	494,00	67,00	601,00	601,00	1,15	690,00	1772,00	47,00	0,00	1,00	0,00	1,00	47,00	2223,00	0,00	1641,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmPipelinesTest1/QM_0.ivml	REASONING	2	net.ssehub.easy.reasoning.core.qm.QMPipelinesTest1.coreTest	715,00	1057,75	1,76	367,75	5,00	107,00	107,00	494,00	494,00	67,00	601,00	601,00	1,15	690,00	1772,00	32,00	0,00	1,00	0,00	1,00	32,00	2231,00	0,00	1641,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmPipelinesTest1/QM_0.ivml	REASONING	3	net.ssehub.easy.reasoning.core.qm.QMPipelinesTest1.coreTest	715,00	1057,75	1,76	367,75	5,00	107,00	107,00	494,00	494,00	67,00	601,00	601,00	1,15	690,00	1772,00	16,00	0,00	1,00	0,00	1,00	31,00	2231,00	15,00	1641,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmPipelinesTest1/QM_0.ivml	REASONING	4	net.ssehub.easy.reasoning.core.qm.QMPipelinesTest1.coreTest	715,00	1057,75	1,76	367,75	5,00	107,00	107,00	494,00	494,00	67,00	601,00	601,00	1,15	690,00	1772,00	31,00	0,00	1,00	0,00	1,00	47,00	2229,00	16,00	1641,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmPipelinesTest1/QM_0.ivml	REASONING	5	net.ssehub.easy.reasoning.core.qm.QMPipelinesTest1.coreTest	715,00	1057,75	1,76	367,75	5,00	107,00	107,00	494,00	494,00	67,00	601,00	601,00	1,15	690,00	1772,00	16,00	0,00	1,00	0,00	1,00	31,00	2231,00	15,00	1641,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmPipelinesTest1/QM_0.ivml	REASONING	6	net.ssehub.easy.reasoning.core.qm.QMPipelinesTest1.coreTest	715,00	1057,75	1,76	367,75	5,00	107,00	107,00	494,00	494,00	67,00	601,00	601,00	1,15	690,00	1772,00	15,00	0,00	1,00	0,00	1,00	47,00	2230,00	16,00	1641,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmPipelinesTest1/QM_0.ivml	REASONING	7	net.ssehub.easy.reasoning.core.qm.QMPipelinesTest1.coreTest	715,00	1057,75	1,76	367,75	5,00	107,00	107,00	494,00	494,00	67,00	601,00	601,00	1,15	690,00	1772,00	16,00	0,00	1,00	0,00	1,00	31,00	2225,00	15,00	1641,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmPipelinesTest1/QM_0.ivml	REASONING	8	net.ssehub.easy.reasoning.core.qm.QMPipelinesTest1.coreTest	715,00	1057,75	1,76	367,75	5,00	107,00	107,00	494,00	494,00	67,00	601,00	601,00	1,15	690,00	1772,00	16,00	0,00	1,00	0,00	1,00	47,00	2221,00	31,00	1641,00	47,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmPipelinesTest1/QM_0.ivml	REASONING	9	net.ssehub.easy.reasoning.core.qm.QMPipelinesTest1.coreTest	715,00	1057,75	1,76	367,75	5,00	107,00	107,00	494,00	494,00	67,00	601,00	601,00	1,15	690,00	1772,00	16,00	0,00	1,00	0,00	1,00	31,00	2231,00	15,00	1641,00	31,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmPipelinesTest1/QM_0.ivml	REASONING	10	net.ssehub.easy.reasoning.core.qm.QMPipelinesTest1.coreTest	715,00	1057,75	1,76	367,75	5,00	107,00	107,00	494,00	494,00	67,00	601,00	601,00	1,15	690,00	1772,00	31,00	0,00	1,00	0,00	1,00	47,00	2222,00	16,00	1641,00	47,00	
+HardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMHardwareTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmHardwareTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	19,00	0,00	2,00	0,00	
+HardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMHardwareTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmHardwareTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	19,00	0,00	2,00	0,00	
+HardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMHardwareTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmHardwareTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	19,00	0,00	2,00	0,00	
+HardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMHardwareTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmHardwareTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	19,00	0,00	2,00	0,00	
+HardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMHardwareTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmHardwareTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	19,00	0,00	2,00	0,00	
+HardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMHardwareTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmHardwareTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	15,00	0,00	2,00	0,00	2,00	15,00	19,00	0,00	2,00	15,00	
+HardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMHardwareTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmHardwareTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	19,00	0,00	2,00	0,00	
+HardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMHardwareTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmHardwareTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	19,00	0,00	2,00	0,00	
+HardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMHardwareTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmHardwareTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	19,00	0,00	2,00	0,00	
+HardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMHardwareTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmHardwareTest	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	19,00	0,00	2,00	0,00	
+QMFamilyAlgorithmsFieldsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMFamilyAlgorithmsFieldsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmFamilyAlgorithmsFieldsTest	0,00	87,00	3,58	43,00	0,00	2,00	2,00	34,00	34,00	7,00	36,00	36,00	1,22	44,00	11,00	0,00	0,00	1,00	0,00	1,00	0,00	11,00	0,00	5,00	0,00	
+QMFamilyAlgorithmsFieldsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMFamilyAlgorithmsFieldsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmFamilyAlgorithmsFieldsTest	0,00	87,00	3,58	43,00	0,00	2,00	2,00	34,00	34,00	7,00	36,00	36,00	1,22	44,00	11,00	0,00	0,00	1,00	0,00	1,00	0,00	11,00	0,00	5,00	0,00	
+QMFamilyAlgorithmsFieldsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMFamilyAlgorithmsFieldsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmFamilyAlgorithmsFieldsTest	0,00	87,00	3,58	43,00	0,00	2,00	2,00	34,00	34,00	7,00	36,00	36,00	1,22	44,00	11,00	0,00	0,00	1,00	0,00	1,00	0,00	11,00	0,00	5,00	0,00	
+QMFamilyAlgorithmsFieldsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMFamilyAlgorithmsFieldsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmFamilyAlgorithmsFieldsTest	0,00	87,00	3,58	43,00	0,00	2,00	2,00	34,00	34,00	7,00	36,00	36,00	1,22	44,00	11,00	0,00	0,00	1,00	0,00	1,00	0,00	11,00	0,00	5,00	0,00	
+QMFamilyAlgorithmsFieldsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMFamilyAlgorithmsFieldsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmFamilyAlgorithmsFieldsTest	0,00	87,00	3,58	43,00	0,00	2,00	2,00	34,00	34,00	7,00	36,00	36,00	1,22	44,00	11,00	0,00	0,00	1,00	0,00	1,00	16,00	11,00	16,00	5,00	16,00	
+QMFamilyAlgorithmsFieldsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMFamilyAlgorithmsFieldsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmFamilyAlgorithmsFieldsTest	0,00	87,00	3,58	43,00	0,00	2,00	2,00	34,00	34,00	7,00	36,00	36,00	1,22	44,00	11,00	0,00	0,00	1,00	0,00	1,00	0,00	11,00	0,00	5,00	0,00	
+QMFamilyAlgorithmsFieldsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMFamilyAlgorithmsFieldsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmFamilyAlgorithmsFieldsTest	0,00	87,00	3,58	43,00	0,00	2,00	2,00	34,00	34,00	7,00	36,00	36,00	1,22	44,00	11,00	0,00	0,00	1,00	0,00	1,00	0,00	11,00	0,00	5,00	0,00	
+QMFamilyAlgorithmsFieldsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMFamilyAlgorithmsFieldsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmFamilyAlgorithmsFieldsTest	0,00	87,00	3,58	43,00	0,00	2,00	2,00	34,00	34,00	7,00	36,00	36,00	1,22	44,00	11,00	0,00	0,00	1,00	0,00	1,00	0,00	11,00	0,00	5,00	0,00	
+QMFamilyAlgorithmsFieldsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMFamilyAlgorithmsFieldsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmFamilyAlgorithmsFieldsTest	0,00	87,00	3,58	43,00	0,00	2,00	2,00	34,00	34,00	7,00	36,00	36,00	1,22	44,00	11,00	0,00	0,00	1,00	0,00	1,00	0,00	11,00	0,00	5,00	0,00	
+QMFamilyAlgorithmsFieldsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/QMFamilyAlgorithmsFieldsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.qmFamilyAlgorithmsFieldsTest	0,00	87,00	3,58	43,00	0,00	2,00	2,00	34,00	34,00	7,00	36,00	36,00	1,22	44,00	11,00	0,00	0,00	1,00	0,00	1,00	0,00	11,00	0,00	5,00	0,00	
+NestedHardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/nestedHardwareTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.nestedHardwareTest	0,00	8,50	2,50	2,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	4,00	0,00	
+NestedHardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/nestedHardwareTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.nestedHardwareTest	0,00	8,50	2,50	2,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	4,00	0,00	
+NestedHardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/nestedHardwareTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.nestedHardwareTest	0,00	8,50	2,50	2,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	4,00	0,00	
+NestedHardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/nestedHardwareTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.nestedHardwareTest	0,00	8,50	2,50	2,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	4,00	0,00	
+NestedHardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/nestedHardwareTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.nestedHardwareTest	0,00	8,50	2,50	2,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	4,00	0,00	
+NestedHardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/nestedHardwareTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.nestedHardwareTest	0,00	8,50	2,50	2,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	4,00	0,00	
+NestedHardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/nestedHardwareTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.nestedHardwareTest	0,00	8,50	2,50	2,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	4,00	0,00	
+NestedHardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/nestedHardwareTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.nestedHardwareTest	0,00	8,50	2,50	2,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	4,00	0,00	
+NestedHardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/nestedHardwareTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.nestedHardwareTest	0,00	8,50	2,50	2,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	4,00	0,00	
+NestedHardwareTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmTemplates/nestedHardwareTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.qm.QMScenarioTests.nestedHardwareTest	0,00	8,50	2,50	2,50	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	4,00	0,00	
+MismatchTest		REASONING	1	net.ssehub.easy.reasoning.core.frontend.MismatchedTest.testMismatchTestFail	619,00	941,75	1,58	356,75	33,00	109,00	109,00	403,00	403,00	60,00	512,00	512,00	1,14	585,00	1198,00	15,00	0,00	2,00	0,00	2,00	47,00	1510,00	16,00	860,00	47,00	
+MismatchTest		REASONING	2	net.ssehub.easy.reasoning.core.frontend.MismatchedTest.testMismatchTestFail	619,00	941,75	1,58	356,75	33,00	109,00	109,00	403,00	403,00	60,00	512,00	512,00	1,14	585,00	1198,00	0,00	0,00	2,00	0,00	2,00	31,00	1510,00	31,00	860,00	31,00	
+MismatchTest		REASONING	3	net.ssehub.easy.reasoning.core.frontend.MismatchedTest.testMismatchTestFail	619,00	941,75	1,58	356,75	33,00	109,00	109,00	403,00	403,00	60,00	512,00	512,00	1,14	585,00	1198,00	16,00	0,00	2,00	0,00	2,00	47,00	1502,00	31,00	860,00	47,00	
+MismatchTest		REASONING	4	net.ssehub.easy.reasoning.core.frontend.MismatchedTest.testMismatchTestFail	619,00	941,75	1,58	356,75	33,00	109,00	109,00	403,00	403,00	60,00	512,00	512,00	1,14	585,00	1198,00	47,00	0,00	2,00	0,00	2,00	47,00	1502,00	0,00	860,00	47,00	
+MismatchTest		REASONING	5	net.ssehub.easy.reasoning.core.frontend.MismatchedTest.testMismatchTestFail	619,00	941,75	1,58	356,75	33,00	109,00	109,00	403,00	403,00	60,00	512,00	512,00	1,14	585,00	1198,00	31,00	0,00	2,00	0,00	2,00	47,00	1503,00	16,00	860,00	47,00	
+MismatchTest		REASONING	6	net.ssehub.easy.reasoning.core.frontend.MismatchedTest.testMismatchTestFail	619,00	941,75	1,58	356,75	33,00	109,00	109,00	403,00	403,00	60,00	512,00	512,00	1,14	585,00	1198,00	32,00	0,00	2,00	0,00	2,00	63,00	1507,00	31,00	860,00	63,00	
+MismatchTest		REASONING	7	net.ssehub.easy.reasoning.core.frontend.MismatchedTest.testMismatchTestFail	619,00	941,75	1,58	356,75	33,00	109,00	109,00	403,00	403,00	60,00	512,00	512,00	1,14	585,00	1198,00	46,00	0,00	2,00	0,00	2,00	62,00	1502,00	16,00	860,00	62,00	
+MismatchTest		REASONING	8	net.ssehub.easy.reasoning.core.frontend.MismatchedTest.testMismatchTestFail	619,00	941,75	1,58	356,75	33,00	109,00	109,00	403,00	403,00	60,00	512,00	512,00	1,14	585,00	1198,00	0,00	0,00	2,00	0,00	2,00	31,00	1504,00	0,00	860,00	31,00	
+MismatchTest		REASONING	9	net.ssehub.easy.reasoning.core.frontend.MismatchedTest.testMismatchTestFail	619,00	941,75	1,58	356,75	33,00	109,00	109,00	403,00	403,00	60,00	512,00	512,00	1,14	585,00	1198,00	32,00	0,00	2,00	0,00	2,00	32,00	1512,00	0,00	860,00	32,00	
+MismatchTest		REASONING	10	net.ssehub.easy.reasoning.core.frontend.MismatchedTest.testMismatchTestFail	619,00	941,75	1,58	356,75	33,00	109,00	109,00	403,00	403,00	60,00	512,00	512,00	1,14	585,00	1198,00	32,00	0,00	2,00	0,00	2,00	32,00	1510,00	0,00	860,00	32,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	1	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	81,00	114,50	0,36	7,50	0,00	10,00	8,00	71,00	60,00	13,00	81,00	68,00	1,32	107,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	5,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	2	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	3	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	4	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	5	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	6	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	7	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	8	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	9	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	10	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	1	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	81,00	114,50	0,36	7,50	0,00	10,00	8,00	71,00	60,00	13,00	81,00	68,00	1,32	107,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	5,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	2	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	3	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	4	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	5	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	6	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	7	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	8	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	9	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+QM	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/qmMonTest/QM.ivml	REASONING	10	net.ssehub.easy.reasoning.core.qm.QMMonTest.monTest	68,00	101,50	0,36	7,50	0,00	8,00	8,00	60,00	60,00	13,00	68,00	68,00	1,38	94,00	2,00	0,00	0,00	0,00	0,00	0,00	16,00	2,00	0,00	2,00	16,00	
+ProjectP2		REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EvaluationIntegrityTest.testResolveOfIntegers	0,00	7,75	0,63	3,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	8,00	0,00	
+ProjectP2		REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EvaluationIntegrityTest.testResolveOfIntegers	0,00	7,75	0,63	3,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	8,00	0,00	
+ProjectP2		REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EvaluationIntegrityTest.testResolveOfIntegers	0,00	7,75	0,63	3,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	8,00	0,00	
+ProjectP2		REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EvaluationIntegrityTest.testResolveOfIntegers	0,00	7,75	0,63	3,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	8,00	0,00	
+ProjectP2		REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EvaluationIntegrityTest.testResolveOfIntegers	0,00	7,75	0,63	3,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	8,00	0,00	
+ProjectP2		REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EvaluationIntegrityTest.testResolveOfIntegers	0,00	7,75	0,63	3,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	8,00	0,00	
+ProjectP2		REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EvaluationIntegrityTest.testResolveOfIntegers	0,00	7,75	0,63	3,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	8,00	0,00	
+ProjectP2		REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EvaluationIntegrityTest.testResolveOfIntegers	0,00	7,75	0,63	3,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	8,00	0,00	
+ProjectP2		REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EvaluationIntegrityTest.testResolveOfIntegers	0,00	7,75	0,63	3,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	8,00	0,00	
+ProjectP2		REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EvaluationIntegrityTest.testResolveOfIntegers	0,00	7,75	0,63	3,75	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	8,00	0,00	
+internalConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InternalConstraintTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintTest	0,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+internalConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InternalConstraintTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintTest	0,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+internalConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InternalConstraintTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintTest	0,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+internalConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InternalConstraintTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintTest	0,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+internalConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InternalConstraintTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintTest	0,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+internalConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InternalConstraintTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintTest	0,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+internalConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InternalConstraintTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintTest	0,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+internalConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InternalConstraintTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintTest	0,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+internalConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InternalConstraintTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintTest	0,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+internalConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InternalConstraintTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintTest	0,00	3,50	1,50	1,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+NullTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullTest	0,00	9,00	0,44	4,00	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	13,00	0,00	5,00	0,00	
+NullTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullTest	0,00	9,00	0,44	4,00	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	13,00	0,00	5,00	0,00	
+NullTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullTest	0,00	9,00	0,44	4,00	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	13,00	0,00	5,00	0,00	
+NullTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullTest	0,00	9,00	0,44	4,00	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	13,00	0,00	5,00	0,00	
+NullTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullTest	0,00	9,00	0,44	4,00	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	13,00	0,00	5,00	0,00	
+NullTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullTest	0,00	9,00	0,44	4,00	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	13,00	0,00	5,00	0,00	
+NullTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullTest	0,00	9,00	0,44	4,00	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	13,00	0,00	5,00	0,00	
+NullTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullTest	0,00	9,00	0,44	4,00	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	13,00	0,00	5,00	0,00	
+NullTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullTest	0,00	9,00	0,44	4,00	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	13,00	0,00	5,00	0,00	
+NullTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullTest	0,00	9,00	0,44	4,00	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	13,00	0,00	5,00	0,00	
+refByCompoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/refByCompoundCollectionEqualityTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refByCompoundCollectionEqualityTest	0,00	14,75	0,29	1,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+refByCompoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/refByCompoundCollectionEqualityTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refByCompoundCollectionEqualityTest	0,00	14,75	0,29	1,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+refByCompoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/refByCompoundCollectionEqualityTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refByCompoundCollectionEqualityTest	0,00	14,75	0,29	1,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+refByCompoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/refByCompoundCollectionEqualityTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refByCompoundCollectionEqualityTest	0,00	14,75	0,29	1,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+refByCompoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/refByCompoundCollectionEqualityTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refByCompoundCollectionEqualityTest	0,00	14,75	0,29	1,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+refByCompoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/refByCompoundCollectionEqualityTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refByCompoundCollectionEqualityTest	0,00	14,75	0,29	1,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+refByCompoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/refByCompoundCollectionEqualityTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refByCompoundCollectionEqualityTest	0,00	14,75	0,29	1,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+refByCompoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/refByCompoundCollectionEqualityTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refByCompoundCollectionEqualityTest	0,00	14,75	0,29	1,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+refByCompoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/refByCompoundCollectionEqualityTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refByCompoundCollectionEqualityTest	0,00	14,75	0,29	1,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+refByCompoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/refByCompoundCollectionEqualityTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refByCompoundCollectionEqualityTest	0,00	14,75	0,29	1,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+compoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/compoundCollectionEqualityTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundCollectionEqualityTest	0,00	15,75	0,46	2,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+compoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/compoundCollectionEqualityTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundCollectionEqualityTest	0,00	15,75	0,46	2,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+compoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/compoundCollectionEqualityTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundCollectionEqualityTest	0,00	15,75	0,46	2,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+compoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/compoundCollectionEqualityTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundCollectionEqualityTest	0,00	15,75	0,46	2,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+compoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/compoundCollectionEqualityTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundCollectionEqualityTest	0,00	15,75	0,46	2,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+compoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/compoundCollectionEqualityTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundCollectionEqualityTest	0,00	15,75	0,46	2,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+compoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/compoundCollectionEqualityTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundCollectionEqualityTest	0,00	15,75	0,46	2,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+compoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/compoundCollectionEqualityTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundCollectionEqualityTest	0,00	15,75	0,46	2,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+compoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/compoundCollectionEqualityTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundCollectionEqualityTest	0,00	15,75	0,46	2,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+compoundCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/compoundCollectionEqualityTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundCollectionEqualityTest	0,00	15,75	0,46	2,75	0,00	0,00	0,00	8,00	8,00	5,00	8,00	8,00	1,63	13,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+ConstrainedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstrainedCompoundTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constrainedCompoundTest	0,00	10,75	0,25	0,75	0,00	0,00	0,00	7,00	7,00	1,00	7,00	7,00	1,43	10,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	11,00	0,00	7,00	0,00	
+ConstrainedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstrainedCompoundTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constrainedCompoundTest	0,00	10,75	0,25	0,75	0,00	0,00	0,00	7,00	7,00	1,00	7,00	7,00	1,43	10,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	11,00	0,00	7,00	0,00	
+ConstrainedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstrainedCompoundTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constrainedCompoundTest	0,00	10,75	0,25	0,75	0,00	0,00	0,00	7,00	7,00	1,00	7,00	7,00	1,43	10,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	11,00	0,00	7,00	0,00	
+ConstrainedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstrainedCompoundTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constrainedCompoundTest	0,00	10,75	0,25	0,75	0,00	0,00	0,00	7,00	7,00	1,00	7,00	7,00	1,43	10,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	11,00	0,00	7,00	0,00	
+ConstrainedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstrainedCompoundTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constrainedCompoundTest	0,00	10,75	0,25	0,75	0,00	0,00	0,00	7,00	7,00	1,00	7,00	7,00	1,43	10,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	11,00	0,00	7,00	0,00	
+ConstrainedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstrainedCompoundTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constrainedCompoundTest	0,00	10,75	0,25	0,75	0,00	0,00	0,00	7,00	7,00	1,00	7,00	7,00	1,43	10,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	11,00	0,00	7,00	0,00	
+ConstrainedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstrainedCompoundTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constrainedCompoundTest	0,00	10,75	0,25	0,75	0,00	0,00	0,00	7,00	7,00	1,00	7,00	7,00	1,43	10,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	11,00	0,00	7,00	0,00	
+ConstrainedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstrainedCompoundTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constrainedCompoundTest	0,00	10,75	0,25	0,75	0,00	0,00	0,00	7,00	7,00	1,00	7,00	7,00	1,43	10,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	11,00	0,00	7,00	0,00	
+ConstrainedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstrainedCompoundTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constrainedCompoundTest	0,00	10,75	0,25	0,75	0,00	0,00	0,00	7,00	7,00	1,00	7,00	7,00	1,43	10,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	11,00	0,00	7,00	0,00	
+ConstrainedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstrainedCompoundTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constrainedCompoundTest	0,00	10,75	0,25	0,75	0,00	0,00	0,00	7,00	7,00	1,00	7,00	7,00	1,43	10,00	9,00	0,00	0,00	3,00	0,00	3,00	0,00	11,00	0,00	7,00	0,00	
+NestedVariableReplaceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/nestedVariableReplaceTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nestedVariableReplaceTest	0,00	8,25	0,63	1,25	0,00	0,00	0,00	5,00	5,00	2,00	5,00	5,00	1,40	7,00	4,00	15,00	0,00	1,00	0,00	1,00	15,00	4,00	0,00	3,00	15,00	
+NestedVariableReplaceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/nestedVariableReplaceTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nestedVariableReplaceTest	0,00	8,25	0,63	1,25	0,00	0,00	0,00	5,00	5,00	2,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+NestedVariableReplaceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/nestedVariableReplaceTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nestedVariableReplaceTest	0,00	8,25	0,63	1,25	0,00	0,00	0,00	5,00	5,00	2,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+NestedVariableReplaceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/nestedVariableReplaceTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nestedVariableReplaceTest	0,00	8,25	0,63	1,25	0,00	0,00	0,00	5,00	5,00	2,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+NestedVariableReplaceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/nestedVariableReplaceTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nestedVariableReplaceTest	0,00	8,25	0,63	1,25	0,00	0,00	0,00	5,00	5,00	2,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+NestedVariableReplaceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/nestedVariableReplaceTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nestedVariableReplaceTest	0,00	8,25	0,63	1,25	0,00	0,00	0,00	5,00	5,00	2,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+NestedVariableReplaceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/nestedVariableReplaceTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nestedVariableReplaceTest	0,00	8,25	0,63	1,25	0,00	0,00	0,00	5,00	5,00	2,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+NestedVariableReplaceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/nestedVariableReplaceTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nestedVariableReplaceTest	0,00	8,25	0,63	1,25	0,00	0,00	0,00	5,00	5,00	2,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+NestedVariableReplaceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/nestedVariableReplaceTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nestedVariableReplaceTest	0,00	8,25	0,63	1,25	0,00	0,00	0,00	5,00	5,00	2,00	5,00	5,00	1,40	7,00	4,00	16,00	0,00	1,00	0,00	1,00	16,00	4,00	0,00	3,00	16,00	
+NestedVariableReplaceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/nestedVariableReplaceTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nestedVariableReplaceTest	0,00	8,25	0,63	1,25	0,00	0,00	0,00	5,00	5,00	2,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+stringCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/stringCollectionEqualityTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.stringCollectionEqualityTest	0,00	10,00	0,33	2,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+stringCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/stringCollectionEqualityTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.stringCollectionEqualityTest	0,00	10,00	0,33	2,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+stringCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/stringCollectionEqualityTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.stringCollectionEqualityTest	0,00	10,00	0,33	2,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+stringCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/stringCollectionEqualityTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.stringCollectionEqualityTest	0,00	10,00	0,33	2,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+stringCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/stringCollectionEqualityTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.stringCollectionEqualityTest	0,00	10,00	0,33	2,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+stringCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/stringCollectionEqualityTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.stringCollectionEqualityTest	0,00	10,00	0,33	2,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+stringCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/stringCollectionEqualityTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.stringCollectionEqualityTest	0,00	10,00	0,33	2,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+stringCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/stringCollectionEqualityTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.stringCollectionEqualityTest	0,00	10,00	0,33	2,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+stringCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/stringCollectionEqualityTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.stringCollectionEqualityTest	0,00	10,00	0,33	2,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+stringCollectionEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/stringCollectionEqualityTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.stringCollectionEqualityTest	0,00	10,00	0,33	2,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	2,00	8,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+AttributeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationInitialTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationInitialTest	12,00	7,25	0,25	0,25	0,00	0,00	0,00	6,00	6,00	3,00	6,00	6,00	1,17	7,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+AttributeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationInitialTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationInitialTest	12,00	7,25	0,25	0,25	0,00	0,00	0,00	6,00	6,00	3,00	6,00	6,00	1,17	7,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+AttributeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationInitialTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationInitialTest	12,00	7,25	0,25	0,25	0,00	0,00	0,00	6,00	6,00	3,00	6,00	6,00	1,17	7,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+AttributeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationInitialTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationInitialTest	12,00	7,25	0,25	0,25	0,00	0,00	0,00	6,00	6,00	3,00	6,00	6,00	1,17	7,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+AttributeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationInitialTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationInitialTest	12,00	7,25	0,25	0,25	0,00	0,00	0,00	6,00	6,00	3,00	6,00	6,00	1,17	7,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+AttributeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationInitialTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationInitialTest	12,00	7,25	0,25	0,25	0,00	0,00	0,00	6,00	6,00	3,00	6,00	6,00	1,17	7,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+AttributeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationInitialTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationInitialTest	12,00	7,25	0,25	0,25	0,00	0,00	0,00	6,00	6,00	3,00	6,00	6,00	1,17	7,00	7,00	0,00	0,00	0,00	0,00	0,00	15,00	7,00	15,00	0,00	15,00	
+AttributeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationInitialTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationInitialTest	12,00	7,25	0,25	0,25	0,00	0,00	0,00	6,00	6,00	3,00	6,00	6,00	1,17	7,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+AttributeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationInitialTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationInitialTest	12,00	7,25	0,25	0,25	0,00	0,00	0,00	6,00	6,00	3,00	6,00	6,00	1,17	7,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+AttributeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationInitialTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationInitialTest	12,00	7,25	0,25	0,25	0,00	0,00	0,00	6,00	6,00	3,00	6,00	6,00	1,17	7,00	7,00	0,00	0,00	0,00	0,00	0,00	0,00	7,00	0,00	0,00	0,00	
+ConstraintVariableTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstraintVariableTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constraintVariablesTest	0,00	10,50	0,42	2,50	0,00	2,00	2,00	5,00	5,00	4,00	7,00	7,00	1,14	8,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	11,00	0,00	5,00	0,00	
+ConstraintVariableTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstraintVariableTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constraintVariablesTest	0,00	10,50	0,42	2,50	0,00	2,00	2,00	5,00	5,00	4,00	7,00	7,00	1,14	8,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	11,00	0,00	5,00	0,00	
+ConstraintVariableTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstraintVariableTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constraintVariablesTest	0,00	10,50	0,42	2,50	0,00	2,00	2,00	5,00	5,00	4,00	7,00	7,00	1,14	8,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	11,00	0,00	5,00	0,00	
+ConstraintVariableTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstraintVariableTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constraintVariablesTest	0,00	10,50	0,42	2,50	0,00	2,00	2,00	5,00	5,00	4,00	7,00	7,00	1,14	8,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	11,00	0,00	5,00	0,00	
+ConstraintVariableTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstraintVariableTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constraintVariablesTest	0,00	10,50	0,42	2,50	0,00	2,00	2,00	5,00	5,00	4,00	7,00	7,00	1,14	8,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	11,00	0,00	5,00	0,00	
+ConstraintVariableTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstraintVariableTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constraintVariablesTest	0,00	10,50	0,42	2,50	0,00	2,00	2,00	5,00	5,00	4,00	7,00	7,00	1,14	8,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	11,00	0,00	5,00	0,00	
+ConstraintVariableTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstraintVariableTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constraintVariablesTest	0,00	10,50	0,42	2,50	0,00	2,00	2,00	5,00	5,00	4,00	7,00	7,00	1,14	8,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	11,00	0,00	5,00	0,00	
+ConstraintVariableTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstraintVariableTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constraintVariablesTest	0,00	10,50	0,42	2,50	0,00	2,00	2,00	5,00	5,00	4,00	7,00	7,00	1,14	8,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	11,00	0,00	5,00	0,00	
+ConstraintVariableTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstraintVariableTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constraintVariablesTest	0,00	10,50	0,42	2,50	0,00	2,00	2,00	5,00	5,00	4,00	7,00	7,00	1,14	8,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	11,00	0,00	5,00	0,00	
+ConstraintVariableTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ConstraintVariableTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.constraintVariablesTest	0,00	10,50	0,42	2,50	0,00	2,00	2,00	5,00	5,00	4,00	7,00	7,00	1,14	8,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	11,00	0,00	5,00	0,00	
+CompoundEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/CompoundEqualityTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundEqualityTest	0,00	10,75	0,38	0,75	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,25	10,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/CompoundEqualityTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundEqualityTest	0,00	10,75	0,38	0,75	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,25	10,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/CompoundEqualityTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundEqualityTest	0,00	10,75	0,38	0,75	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,25	10,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/CompoundEqualityTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundEqualityTest	0,00	10,75	0,38	0,75	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,25	10,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/CompoundEqualityTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundEqualityTest	0,00	10,75	0,38	0,75	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,25	10,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/CompoundEqualityTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundEqualityTest	0,00	10,75	0,38	0,75	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,25	10,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/CompoundEqualityTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundEqualityTest	0,00	10,75	0,38	0,75	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,25	10,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/CompoundEqualityTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundEqualityTest	0,00	10,75	0,38	0,75	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,25	10,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/CompoundEqualityTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundEqualityTest	0,00	10,75	0,38	0,75	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,25	10,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundEqualityTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/CompoundEqualityTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.compoundEqualityTest	0,00	10,75	0,38	0,75	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,25	10,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+internalConstraintInheritedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+internalConstraintInheritedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+internalConstraintInheritedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+internalConstraintInheritedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+internalConstraintInheritedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+internalConstraintInheritedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+internalConstraintInheritedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+internalConstraintInheritedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+internalConstraintInheritedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+internalConstraintInheritedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	1,00	0,00	
+DefaultConstraintReevaluationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/DefaultConstraintReevaluationTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.defaultConstraintReevaluationTest	0,00	3,25	0,42	1,25	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+DefaultConstraintReevaluationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/DefaultConstraintReevaluationTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.defaultConstraintReevaluationTest	0,00	3,25	0,42	1,25	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+DefaultConstraintReevaluationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/DefaultConstraintReevaluationTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.defaultConstraintReevaluationTest	0,00	3,25	0,42	1,25	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+DefaultConstraintReevaluationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/DefaultConstraintReevaluationTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.defaultConstraintReevaluationTest	0,00	3,25	0,42	1,25	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+DefaultConstraintReevaluationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/DefaultConstraintReevaluationTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.defaultConstraintReevaluationTest	0,00	3,25	0,42	1,25	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+DefaultConstraintReevaluationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/DefaultConstraintReevaluationTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.defaultConstraintReevaluationTest	0,00	3,25	0,42	1,25	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+DefaultConstraintReevaluationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/DefaultConstraintReevaluationTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.defaultConstraintReevaluationTest	0,00	3,25	0,42	1,25	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+DefaultConstraintReevaluationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/DefaultConstraintReevaluationTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.defaultConstraintReevaluationTest	0,00	3,25	0,42	1,25	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	15,00	0,00	1,00	0,00	1,00	15,00	6,00	0,00	2,00	15,00	
+DefaultConstraintReevaluationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/DefaultConstraintReevaluationTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.defaultConstraintReevaluationTest	0,00	3,25	0,42	1,25	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+DefaultConstraintReevaluationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/DefaultConstraintReevaluationTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.defaultConstraintReevaluationTest	0,00	3,25	0,42	1,25	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+HasDuplicatesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/HasDuplicatesTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.hasDuplicatesTestTest	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+HasDuplicatesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/HasDuplicatesTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.hasDuplicatesTestTest	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+HasDuplicatesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/HasDuplicatesTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.hasDuplicatesTestTest	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+HasDuplicatesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/HasDuplicatesTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.hasDuplicatesTestTest	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+HasDuplicatesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/HasDuplicatesTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.hasDuplicatesTestTest	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+HasDuplicatesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/HasDuplicatesTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.hasDuplicatesTestTest	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+HasDuplicatesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/HasDuplicatesTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.hasDuplicatesTestTest	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+HasDuplicatesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/HasDuplicatesTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.hasDuplicatesTestTest	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+HasDuplicatesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/HasDuplicatesTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.hasDuplicatesTestTest	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+HasDuplicatesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/HasDuplicatesTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.hasDuplicatesTestTest	0,00	2,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+internalConstraintCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionTest	0,00	5,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	3,00	0,00	
+internalConstraintCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionTest	0,00	5,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	3,00	0,00	
+internalConstraintCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionTest	0,00	5,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	3,00	0,00	
+internalConstraintCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionTest	0,00	5,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	3,00	0,00	
+internalConstraintCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionTest	0,00	5,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	3,00	0,00	
+internalConstraintCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionTest	0,00	5,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	3,00	0,00	
+internalConstraintCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionTest	0,00	5,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	3,00	0,00	
+internalConstraintCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionTest	0,00	5,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	6,00	16,00	0,00	2,00	0,00	2,00	16,00	10,00	0,00	3,00	16,00	
+internalConstraintCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionTest	0,00	5,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	3,00	0,00	
+internalConstraintCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionTest	0,00	5,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	2,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	10,00	0,00	3,00	0,00	
+ImportCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportCore.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importCoreTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	4,00	0,00	
+ImportCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportCore.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importCoreTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	4,00	0,00	
+ImportCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportCore.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importCoreTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	4,00	0,00	
+ImportCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportCore.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importCoreTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	4,00	0,00	
+ImportCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportCore.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importCoreTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	4,00	0,00	
+ImportCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportCore.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importCoreTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	4,00	0,00	
+ImportCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportCore.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importCoreTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	4,00	0,00	
+ImportCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportCore.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importCoreTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	4,00	0,00	
+ImportCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportCore.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importCoreTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	4,00	0,00	
+ImportCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportCore.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importCoreTest	0,00	4,00	0,50	2,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	4,00	0,00	
+ClearConfigCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ClearConfigCore.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.clearConfigTest	2,00	3,50	0,38	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+ClearConfigCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ClearConfigCore.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.clearConfigTest	2,00	3,50	0,38	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+ClearConfigCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ClearConfigCore.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.clearConfigTest	2,00	3,50	0,38	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+ClearConfigCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ClearConfigCore.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.clearConfigTest	2,00	3,50	0,38	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+ClearConfigCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ClearConfigCore.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.clearConfigTest	2,00	3,50	0,38	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+ClearConfigCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ClearConfigCore.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.clearConfigTest	2,00	3,50	0,38	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+ClearConfigCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ClearConfigCore.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.clearConfigTest	2,00	3,50	0,38	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+ClearConfigCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ClearConfigCore.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.clearConfigTest	2,00	3,50	0,38	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+ClearConfigCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ClearConfigCore.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.clearConfigTest	2,00	3,50	0,38	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+ClearConfigCore	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ClearConfigCore.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.clearConfigTest	2,00	3,50	0,38	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	0,00	0,00	
+PreCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/PreCollectionTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.preCollectionTest	0,00	13,00	0,50	1,00	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	4,00	0,00	
+PreCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/PreCollectionTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.preCollectionTest	0,00	13,00	0,50	1,00	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	4,00	0,00	
+PreCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/PreCollectionTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.preCollectionTest	0,00	13,00	0,50	1,00	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	4,00	0,00	
+PreCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/PreCollectionTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.preCollectionTest	0,00	13,00	0,50	1,00	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	4,00	0,00	
+PreCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/PreCollectionTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.preCollectionTest	0,00	13,00	0,50	1,00	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	4,00	0,00	
+PreCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/PreCollectionTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.preCollectionTest	0,00	13,00	0,50	1,00	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	4,00	0,00	
+PreCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/PreCollectionTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.preCollectionTest	0,00	13,00	0,50	1,00	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	4,00	0,00	
+PreCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/PreCollectionTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.preCollectionTest	0,00	13,00	0,50	1,00	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	4,00	0,00	
+PreCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/PreCollectionTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.preCollectionTest	0,00	13,00	0,50	1,00	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	4,00	0,00	
+PreCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/PreCollectionTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.preCollectionTest	0,00	13,00	0,50	1,00	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	4,00	0,00	
+FreezeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeTest	0,00	4,25	0,63	1,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+FreezeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeTest	0,00	4,25	0,63	1,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+FreezeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeTest	0,00	4,25	0,63	1,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+FreezeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeTest	0,00	4,25	0,63	1,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+FreezeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeTest	0,00	4,25	0,63	1,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+FreezeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeTest	0,00	4,25	0,63	1,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+FreezeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeTest	0,00	4,25	0,63	1,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+FreezeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeTest	0,00	4,25	0,63	1,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+FreezeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeTest	0,00	4,25	0,63	1,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+FreezeTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeTest	0,00	4,25	0,63	1,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationAssignedToDifferentCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationAssignedToDifferentCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationAssignedToDifferentCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationAssignedToDifferentCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationAssignedToDifferentCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationAssignedToDifferentCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationAssignedToDifferentCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationAssignedToDifferentCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationAssignedToDifferentCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+annotationAssignedToDifferentCompoundSlotsValid	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/AnnotationAssignedToDifferentCompoundSlotsValid.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.annotationAssignedToDifferentCompoundSlotsValid	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	0,00	0,00	
+NullImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullImportTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullImportTest	0,00	11,00	0,45	5,00	0,00	4,00	4,00	2,00	2,00	6,00	6,00	6,00	1,00	6,00	11,00	0,00	0,00	4,00	0,00	4,00	0,00	16,00	0,00	11,00	0,00	
+NullImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullImportTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullImportTest	0,00	11,00	0,45	5,00	0,00	4,00	4,00	2,00	2,00	6,00	6,00	6,00	1,00	6,00	11,00	0,00	0,00	4,00	0,00	4,00	0,00	16,00	0,00	11,00	0,00	
+NullImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullImportTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullImportTest	0,00	11,00	0,45	5,00	0,00	4,00	4,00	2,00	2,00	6,00	6,00	6,00	1,00	6,00	11,00	0,00	0,00	4,00	0,00	4,00	0,00	16,00	0,00	11,00	0,00	
+NullImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullImportTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullImportTest	0,00	11,00	0,45	5,00	0,00	4,00	4,00	2,00	2,00	6,00	6,00	6,00	1,00	6,00	11,00	0,00	0,00	4,00	0,00	4,00	0,00	16,00	0,00	11,00	0,00	
+NullImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullImportTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullImportTest	0,00	11,00	0,45	5,00	0,00	4,00	4,00	2,00	2,00	6,00	6,00	6,00	1,00	6,00	11,00	0,00	0,00	4,00	0,00	4,00	0,00	16,00	0,00	11,00	0,00	
+NullImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullImportTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullImportTest	0,00	11,00	0,45	5,00	0,00	4,00	4,00	2,00	2,00	6,00	6,00	6,00	1,00	6,00	11,00	0,00	0,00	4,00	0,00	4,00	0,00	16,00	0,00	11,00	0,00	
+NullImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullImportTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullImportTest	0,00	11,00	0,45	5,00	0,00	4,00	4,00	2,00	2,00	6,00	6,00	6,00	1,00	6,00	11,00	0,00	0,00	4,00	0,00	4,00	0,00	16,00	0,00	11,00	0,00	
+NullImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullImportTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullImportTest	0,00	11,00	0,45	5,00	0,00	4,00	4,00	2,00	2,00	6,00	6,00	6,00	1,00	6,00	11,00	0,00	0,00	4,00	0,00	4,00	0,00	16,00	0,00	11,00	0,00	
+NullImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullImportTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullImportTest	0,00	11,00	0,45	5,00	0,00	4,00	4,00	2,00	2,00	6,00	6,00	6,00	1,00	6,00	11,00	0,00	0,00	4,00	0,00	4,00	0,00	16,00	0,00	11,00	0,00	
+NullImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/NullImportTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.nullImportTest	0,00	11,00	0,45	5,00	0,00	4,00	4,00	2,00	2,00	6,00	6,00	6,00	1,00	6,00	11,00	0,00	0,00	4,00	0,00	4,00	0,00	16,00	0,00	11,00	0,00	
+internalConstraintCollectionInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionInCompoundTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionInCompoundTest	0,00	6,25	0,25	0,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+internalConstraintCollectionInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionInCompoundTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionInCompoundTest	0,00	6,25	0,25	0,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+internalConstraintCollectionInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionInCompoundTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionInCompoundTest	0,00	6,25	0,25	0,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+internalConstraintCollectionInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionInCompoundTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionInCompoundTest	0,00	6,25	0,25	0,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+internalConstraintCollectionInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionInCompoundTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionInCompoundTest	0,00	6,25	0,25	0,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+internalConstraintCollectionInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionInCompoundTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionInCompoundTest	0,00	6,25	0,25	0,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+internalConstraintCollectionInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionInCompoundTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionInCompoundTest	0,00	6,25	0,25	0,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+internalConstraintCollectionInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionInCompoundTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionInCompoundTest	0,00	6,25	0,25	0,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+internalConstraintCollectionInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionInCompoundTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionInCompoundTest	0,00	6,25	0,25	0,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+internalConstraintCollectionInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintCollectionInCompoundTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintCollectionInCompoundTest	0,00	6,25	0,25	0,25	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	2,00	6,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefinedCompoundTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refinedCompoundTest	0,00	22,00	0,50	5,00	5,00	0,00	0,00	12,00	12,00	4,00	12,00	12,00	1,42	17,00	9,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	0,00	0,00	
+RefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefinedCompoundTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refinedCompoundTest	0,00	22,00	0,50	5,00	5,00	0,00	0,00	12,00	12,00	4,00	12,00	12,00	1,42	17,00	9,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	0,00	0,00	
+RefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefinedCompoundTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refinedCompoundTest	0,00	22,00	0,50	5,00	5,00	0,00	0,00	12,00	12,00	4,00	12,00	12,00	1,42	17,00	9,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	0,00	0,00	
+RefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefinedCompoundTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refinedCompoundTest	0,00	22,00	0,50	5,00	5,00	0,00	0,00	12,00	12,00	4,00	12,00	12,00	1,42	17,00	9,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	0,00	0,00	
+RefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefinedCompoundTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refinedCompoundTest	0,00	22,00	0,50	5,00	5,00	0,00	0,00	12,00	12,00	4,00	12,00	12,00	1,42	17,00	9,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	0,00	0,00	
+RefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefinedCompoundTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refinedCompoundTest	0,00	22,00	0,50	5,00	5,00	0,00	0,00	12,00	12,00	4,00	12,00	12,00	1,42	17,00	9,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	0,00	0,00	
+RefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefinedCompoundTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refinedCompoundTest	0,00	22,00	0,50	5,00	5,00	0,00	0,00	12,00	12,00	4,00	12,00	12,00	1,42	17,00	9,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	0,00	0,00	
+RefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefinedCompoundTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refinedCompoundTest	0,00	22,00	0,50	5,00	5,00	0,00	0,00	12,00	12,00	4,00	12,00	12,00	1,42	17,00	9,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	0,00	0,00	
+RefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefinedCompoundTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refinedCompoundTest	0,00	22,00	0,50	5,00	5,00	0,00	0,00	12,00	12,00	4,00	12,00	12,00	1,42	17,00	9,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	0,00	0,00	
+RefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefinedCompoundTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refinedCompoundTest	0,00	22,00	0,50	5,00	5,00	0,00	0,00	12,00	12,00	4,00	12,00	12,00	1,42	17,00	9,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	0,00	0,00	
+ImportChild	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportChild.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importChildTest	0,00	3,50	0,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+ImportChild	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportChild.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importChildTest	0,00	3,50	0,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+ImportChild	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportChild.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importChildTest	0,00	3,50	0,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+ImportChild	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportChild.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importChildTest	0,00	3,50	0,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+ImportChild	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportChild.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importChildTest	0,00	3,50	0,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+ImportChild	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportChild.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importChildTest	0,00	3,50	0,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+ImportChild	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportChild.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importChildTest	0,00	3,50	0,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+ImportChild	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportChild.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importChildTest	0,00	3,50	0,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+ImportChild	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportChild.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importChildTest	0,00	3,50	0,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+ImportChild	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/ImportChild.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.importChildTest	0,00	3,50	0,50	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+TraceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/TraceTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.traceTest	0,00	11,00	1,33	4,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,75	7,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	4,00	0,00	
+TraceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/TraceTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.traceTest	0,00	11,00	1,33	4,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,75	7,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	4,00	0,00	
+TraceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/TraceTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.traceTest	0,00	11,00	1,33	4,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,75	7,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	4,00	0,00	
+TraceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/TraceTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.traceTest	0,00	11,00	1,33	4,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,75	7,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	4,00	0,00	
+TraceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/TraceTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.traceTest	0,00	11,00	1,33	4,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,75	7,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	4,00	0,00	
+TraceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/TraceTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.traceTest	0,00	11,00	1,33	4,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,75	7,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	4,00	0,00	
+TraceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/TraceTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.traceTest	0,00	11,00	1,33	4,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,75	7,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	4,00	0,00	
+TraceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/TraceTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.traceTest	0,00	11,00	1,33	4,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,75	7,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	4,00	0,00	
+TraceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/TraceTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.traceTest	0,00	11,00	1,33	4,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,75	7,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	4,00	0,00	
+TraceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/TraceTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.traceTest	0,00	11,00	1,33	4,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,75	7,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	4,00	0,00	
+VariableAssignmentFailTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/VariableAssignmentFailTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.variableAssignmentFailTest	0,00	8,25	0,53	4,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	3,00	0,00	
+VariableAssignmentFailTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/VariableAssignmentFailTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.variableAssignmentFailTest	0,00	8,25	0,53	4,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	3,00	0,00	
+VariableAssignmentFailTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/VariableAssignmentFailTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.variableAssignmentFailTest	0,00	8,25	0,53	4,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	3,00	0,00	
+VariableAssignmentFailTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/VariableAssignmentFailTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.variableAssignmentFailTest	0,00	8,25	0,53	4,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	3,00	0,00	
+VariableAssignmentFailTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/VariableAssignmentFailTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.variableAssignmentFailTest	0,00	8,25	0,53	4,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	3,00	0,00	
+VariableAssignmentFailTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/VariableAssignmentFailTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.variableAssignmentFailTest	0,00	8,25	0,53	4,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	3,00	0,00	
+VariableAssignmentFailTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/VariableAssignmentFailTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.variableAssignmentFailTest	0,00	8,25	0,53	4,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	3,00	0,00	
+VariableAssignmentFailTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/VariableAssignmentFailTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.variableAssignmentFailTest	0,00	8,25	0,53	4,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	3,00	0,00	
+VariableAssignmentFailTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/VariableAssignmentFailTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.variableAssignmentFailTest	0,00	8,25	0,53	4,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	3,00	0,00	
+VariableAssignmentFailTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/VariableAssignmentFailTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.variableAssignmentFailTest	0,00	8,25	0,53	4,25	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	3,00	0,00	
+InitialTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InitialTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.initialTest	0,00	6,75	0,46	2,75	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+InitialTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InitialTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.initialTest	0,00	6,75	0,46	2,75	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+InitialTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InitialTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.initialTest	0,00	6,75	0,46	2,75	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+InitialTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InitialTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.initialTest	0,00	6,75	0,46	2,75	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+InitialTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InitialTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.initialTest	0,00	6,75	0,46	2,75	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+InitialTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InitialTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.initialTest	0,00	6,75	0,46	2,75	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+InitialTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InitialTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.initialTest	0,00	6,75	0,46	2,75	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+InitialTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InitialTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.initialTest	0,00	6,75	0,46	2,75	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+InitialTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InitialTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.initialTest	0,00	6,75	0,46	2,75	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+InitialTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/InitialTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.initialTest	0,00	6,75	0,46	2,75	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+RefToCompoundInSequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefToCompoundInSequenceTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refToCompoundInSequenceTest	0,00	10,25	0,31	1,25	0,00	0,00	0,00	6,00	6,00	4,00	6,00	6,00	1,50	9,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+RefToCompoundInSequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefToCompoundInSequenceTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refToCompoundInSequenceTest	0,00	10,25	0,31	1,25	0,00	0,00	0,00	6,00	6,00	4,00	6,00	6,00	1,50	9,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+RefToCompoundInSequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefToCompoundInSequenceTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refToCompoundInSequenceTest	0,00	10,25	0,31	1,25	0,00	0,00	0,00	6,00	6,00	4,00	6,00	6,00	1,50	9,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+RefToCompoundInSequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefToCompoundInSequenceTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refToCompoundInSequenceTest	0,00	10,25	0,31	1,25	0,00	0,00	0,00	6,00	6,00	4,00	6,00	6,00	1,50	9,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+RefToCompoundInSequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefToCompoundInSequenceTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refToCompoundInSequenceTest	0,00	10,25	0,31	1,25	0,00	0,00	0,00	6,00	6,00	4,00	6,00	6,00	1,50	9,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+RefToCompoundInSequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefToCompoundInSequenceTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refToCompoundInSequenceTest	0,00	10,25	0,31	1,25	0,00	0,00	0,00	6,00	6,00	4,00	6,00	6,00	1,50	9,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+RefToCompoundInSequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefToCompoundInSequenceTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refToCompoundInSequenceTest	0,00	10,25	0,31	1,25	0,00	0,00	0,00	6,00	6,00	4,00	6,00	6,00	1,50	9,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+RefToCompoundInSequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefToCompoundInSequenceTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refToCompoundInSequenceTest	0,00	10,25	0,31	1,25	0,00	0,00	0,00	6,00	6,00	4,00	6,00	6,00	1,50	9,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+RefToCompoundInSequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefToCompoundInSequenceTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refToCompoundInSequenceTest	0,00	10,25	0,31	1,25	0,00	0,00	0,00	6,00	6,00	4,00	6,00	6,00	1,50	9,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+RefToCompoundInSequenceTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/RefToCompoundInSequenceTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.refToCompoundInSequenceTest	0,00	10,25	0,31	1,25	0,00	0,00	0,00	6,00	6,00	4,00	6,00	6,00	1,50	9,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+IsDefinedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedTest	0,00	22,75	0,25	6,75	0,00	4,00	4,00	12,00	12,00	16,00	16,00	16,00	1,00	16,00	27,00	0,00	0,00	10,00	0,00	10,00	0,00	27,00	0,00	16,00	0,00	
+IsDefinedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedTest	0,00	22,75	0,25	6,75	0,00	4,00	4,00	12,00	12,00	16,00	16,00	16,00	1,00	16,00	27,00	0,00	0,00	10,00	0,00	10,00	0,00	27,00	0,00	16,00	0,00	
+IsDefinedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedTest	0,00	22,75	0,25	6,75	0,00	4,00	4,00	12,00	12,00	16,00	16,00	16,00	1,00	16,00	27,00	0,00	0,00	10,00	0,00	10,00	0,00	27,00	0,00	16,00	0,00	
+IsDefinedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedTest	0,00	22,75	0,25	6,75	0,00	4,00	4,00	12,00	12,00	16,00	16,00	16,00	1,00	16,00	27,00	0,00	0,00	10,00	0,00	10,00	0,00	27,00	0,00	16,00	0,00	
+IsDefinedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedTest	0,00	22,75	0,25	6,75	0,00	4,00	4,00	12,00	12,00	16,00	16,00	16,00	1,00	16,00	27,00	0,00	0,00	10,00	0,00	10,00	0,00	27,00	0,00	16,00	0,00	
+IsDefinedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedTest	0,00	22,75	0,25	6,75	0,00	4,00	4,00	12,00	12,00	16,00	16,00	16,00	1,00	16,00	27,00	0,00	0,00	10,00	0,00	10,00	0,00	27,00	0,00	16,00	0,00	
+IsDefinedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedTest	0,00	22,75	0,25	6,75	0,00	4,00	4,00	12,00	12,00	16,00	16,00	16,00	1,00	16,00	27,00	0,00	0,00	10,00	0,00	10,00	0,00	27,00	0,00	16,00	0,00	
+IsDefinedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedTest	0,00	22,75	0,25	6,75	0,00	4,00	4,00	12,00	12,00	16,00	16,00	16,00	1,00	16,00	27,00	0,00	0,00	10,00	0,00	10,00	0,00	27,00	0,00	16,00	0,00	
+IsDefinedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedTest	0,00	22,75	0,25	6,75	0,00	4,00	4,00	12,00	12,00	16,00	16,00	16,00	1,00	16,00	27,00	0,00	0,00	10,00	0,00	10,00	0,00	27,00	0,00	16,00	0,00	
+IsDefinedTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedTest	0,00	22,75	0,25	6,75	0,00	4,00	4,00	12,00	12,00	16,00	16,00	16,00	1,00	16,00	27,00	0,00	0,00	10,00	0,00	10,00	0,00	27,00	0,00	16,00	0,00	
+IsDefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedCompoundTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedCompoundTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+IsDefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedCompoundTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedCompoundTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+IsDefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedCompoundTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedCompoundTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+IsDefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedCompoundTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedCompoundTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+IsDefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedCompoundTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedCompoundTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+IsDefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedCompoundTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedCompoundTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+IsDefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedCompoundTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedCompoundTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+IsDefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedCompoundTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedCompoundTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+IsDefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedCompoundTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedCompoundTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+IsDefinedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/IsDefinedCompoundTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.isDefinedCompoundTest	0,00	1,25	0,25	0,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	1,00	0,00	
+internalConstraintInheritedInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedInCompoundTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedInCompoundTest	0,00	3,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	2,00	0,00	
+internalConstraintInheritedInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedInCompoundTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedInCompoundTest	0,00	3,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	2,00	0,00	
+internalConstraintInheritedInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedInCompoundTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedInCompoundTest	0,00	3,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	2,00	0,00	
+internalConstraintInheritedInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedInCompoundTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedInCompoundTest	0,00	3,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	2,00	0,00	
+internalConstraintInheritedInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedInCompoundTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedInCompoundTest	0,00	3,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	2,00	0,00	
+internalConstraintInheritedInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedInCompoundTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedInCompoundTest	0,00	3,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	2,00	0,00	
+internalConstraintInheritedInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedInCompoundTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedInCompoundTest	0,00	3,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	2,00	0,00	
+internalConstraintInheritedInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedInCompoundTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedInCompoundTest	0,00	3,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	2,00	0,00	
+internalConstraintInheritedInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedInCompoundTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedInCompoundTest	0,00	3,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	2,00	0,00	
+internalConstraintInheritedInCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintInheritedInCompoundTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintInheritedInCompoundTest	0,00	3,50	0,25	0,50	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,50	3,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	2,00	0,00	
+internalConstraintStringPaternTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintStringPaternTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintStringPaternTest	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+internalConstraintStringPaternTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintStringPaternTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintStringPaternTest	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+internalConstraintStringPaternTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintStringPaternTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintStringPaternTest	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+internalConstraintStringPaternTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintStringPaternTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintStringPaternTest	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+internalConstraintStringPaternTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintStringPaternTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintStringPaternTest	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+internalConstraintStringPaternTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintStringPaternTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintStringPaternTest	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+internalConstraintStringPaternTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintStringPaternTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintStringPaternTest	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+internalConstraintStringPaternTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintStringPaternTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintStringPaternTest	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+internalConstraintStringPaternTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintStringPaternTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintStringPaternTest	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+internalConstraintStringPaternTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/internalConstraintStringPaternTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.internalConstraintStringPaternTest	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+FreezeImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeImportTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeImportTest	0,00	5,25	0,56	2,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	1,00	0,00	0,00	5,00	0,00	4,00	0,00	
+FreezeImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeImportTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeImportTest	0,00	5,25	0,56	2,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	1,00	0,00	0,00	5,00	0,00	4,00	0,00	
+FreezeImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeImportTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeImportTest	0,00	5,25	0,56	2,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	1,00	0,00	0,00	5,00	0,00	4,00	0,00	
+FreezeImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeImportTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeImportTest	0,00	5,25	0,56	2,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	1,00	0,00	0,00	5,00	0,00	4,00	0,00	
+FreezeImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeImportTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeImportTest	0,00	5,25	0,56	2,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	1,00	0,00	0,00	5,00	0,00	4,00	0,00	
+FreezeImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeImportTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeImportTest	0,00	5,25	0,56	2,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	1,00	0,00	0,00	5,00	0,00	4,00	0,00	
+FreezeImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeImportTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeImportTest	0,00	5,25	0,56	2,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	1,00	0,00	0,00	5,00	0,00	4,00	0,00	
+FreezeImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeImportTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeImportTest	0,00	5,25	0,56	2,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	1,00	0,00	0,00	5,00	0,00	4,00	0,00	
+FreezeImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeImportTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeImportTest	0,00	5,25	0,56	2,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	1,00	0,00	0,00	5,00	0,00	4,00	0,00	
+FreezeImportTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/operationsTemplates/FreezeImportTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ReasoningScenarioTests.freezeImportTest	0,00	5,25	0,56	2,25	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	1,00	1,00	0,00	0,00	5,00	0,00	4,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.1.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.1.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.1.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.1.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.1.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.1.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.1.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.1.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.1.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.1.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	1,25	0,25	0,25	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.2.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.2.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.2.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.2.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.2.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.2.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.2.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.2.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.2.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanDefault	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanDefault.2.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanDefault	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+NullSize	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/NullSize.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testNullSize	0,00	3,00	0,50	1,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+NullSize	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/NullSize.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testNullSize	0,00	3,00	0,50	1,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+NullSize	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/NullSize.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testNullSize	0,00	3,00	0,50	1,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+NullSize	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/NullSize.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testNullSize	0,00	3,00	0,50	1,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+NullSize	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/NullSize.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testNullSize	0,00	3,00	0,50	1,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+NullSize	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/NullSize.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testNullSize	0,00	3,00	0,50	1,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+NullSize	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/NullSize.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testNullSize	0,00	3,00	0,50	1,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+NullSize	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/NullSize.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testNullSize	0,00	3,00	0,50	1,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+NullSize	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/NullSize.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testNullSize	0,00	3,00	0,50	1,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+NullSize	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/NullSize.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testNullSize	0,00	3,00	0,50	1,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+PropagationSyntax1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/PropagationSyntax1.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testPropagationSyntax	0,00	5,00	1,00	3,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+PropagationSyntax1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/PropagationSyntax1.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testPropagationSyntax	0,00	5,00	1,00	3,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+PropagationSyntax1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/PropagationSyntax1.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testPropagationSyntax	0,00	5,00	1,00	3,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+PropagationSyntax1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/PropagationSyntax1.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testPropagationSyntax	0,00	5,00	1,00	3,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+PropagationSyntax1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/PropagationSyntax1.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testPropagationSyntax	0,00	5,00	1,00	3,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+PropagationSyntax1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/PropagationSyntax1.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testPropagationSyntax	0,00	5,00	1,00	3,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+PropagationSyntax1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/PropagationSyntax1.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testPropagationSyntax	0,00	5,00	1,00	3,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+PropagationSyntax1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/PropagationSyntax1.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testPropagationSyntax	0,00	5,00	1,00	3,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+PropagationSyntax1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/PropagationSyntax1.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testPropagationSyntax	0,00	5,00	1,00	3,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+PropagationSyntax1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/PropagationSyntax1.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testPropagationSyntax	0,00	5,00	1,00	3,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	8,00	0,00	2,00	0,00	
+UndefinedVariableConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariableConstraints.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariableConstraints	0,00	6,00	0,50	5,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	1,00	0,00	
+UndefinedVariableConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariableConstraints.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariableConstraints	0,00	6,00	0,50	5,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	1,00	0,00	
+UndefinedVariableConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariableConstraints.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariableConstraints	0,00	6,00	0,50	5,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	1,00	0,00	
+UndefinedVariableConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariableConstraints.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariableConstraints	0,00	6,00	0,50	5,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	1,00	0,00	
+UndefinedVariableConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariableConstraints.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariableConstraints	0,00	6,00	0,50	5,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	1,00	0,00	
+UndefinedVariableConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariableConstraints.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariableConstraints	0,00	6,00	0,50	5,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	1,00	0,00	
+UndefinedVariableConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariableConstraints.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariableConstraints	0,00	6,00	0,50	5,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	1,00	0,00	
+UndefinedVariableConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariableConstraints.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariableConstraints	0,00	6,00	0,50	5,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	1,00	0,00	
+UndefinedVariableConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariableConstraints.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariableConstraints	0,00	6,00	0,50	5,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	1,00	0,00	
+UndefinedVariableConstraints	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariableConstraints.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariableConstraints	0,00	6,00	0,50	5,00	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	10,00	0,00	0,00	0,00	0,00	0,00	0,00	10,00	0,00	1,00	0,00	
+ConstraintDefault1Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.1-fail.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault1Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.1-fail.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault1Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.1-fail.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault1Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.1-fail.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault1Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.1-fail.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault1Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.1-fail.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault1Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.1-fail.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault1Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.1-fail.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault1Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.1-fail.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault1Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.1-fail.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	2,00	1,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault2Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.2-fail.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	1,00	0,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault2Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.2-fail.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	1,00	0,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault2Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.2-fail.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	1,00	0,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault2Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.2-fail.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	1,00	0,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault2Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.2-fail.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	1,00	0,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault2Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.2-fail.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	1,00	0,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault2Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.2-fail.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	1,00	0,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault2Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.2-fail.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	1,00	0,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault2Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.2-fail.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	1,00	0,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault2Fail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintDefault.2-fail.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaultsFail	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	1,00	0,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintDefault1		REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	15,00	4,00	0,00	1,00	15,00	
+ConstraintDefault1		REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault1		REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault1		REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault1		REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault1		REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault1		REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault1		REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault1		REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault1		REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault2		REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault2		REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault2		REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault2		REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault2		REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault2		REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault2		REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault2		REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault2		REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+ConstraintDefault2		REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintDefaults	0,00	1,75	0,38	0,75	0,00	1,00	1,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	1,00	0,00	
+UndefinedIf	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedIf.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testIfWithUndefinedValues	0,00	4,50	0,83	2,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+UndefinedIf	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedIf.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testIfWithUndefinedValues	0,00	4,50	0,83	2,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+UndefinedIf	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedIf.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testIfWithUndefinedValues	0,00	4,50	0,83	2,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+UndefinedIf	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedIf.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testIfWithUndefinedValues	0,00	4,50	0,83	2,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+UndefinedIf	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedIf.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testIfWithUndefinedValues	0,00	4,50	0,83	2,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+UndefinedIf	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedIf.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testIfWithUndefinedValues	0,00	4,50	0,83	2,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+UndefinedIf	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedIf.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testIfWithUndefinedValues	0,00	4,50	0,83	2,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+UndefinedIf	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedIf.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testIfWithUndefinedValues	0,00	4,50	0,83	2,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+UndefinedIf	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedIf.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testIfWithUndefinedValues	0,00	4,50	0,83	2,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+UndefinedIf	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedIf.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testIfWithUndefinedValues	0,00	4,50	0,83	2,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	2,00	0,00	
+BooleanImplies	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanImplies.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanImplies	0,00	3,25	0,42	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImplies	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanImplies.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanImplies	0,00	3,25	0,42	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImplies	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanImplies.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanImplies	0,00	3,25	0,42	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImplies	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanImplies.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanImplies	0,00	3,25	0,42	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImplies	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanImplies.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanImplies	0,00	3,25	0,42	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImplies	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanImplies.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanImplies	0,00	3,25	0,42	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImplies	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanImplies.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanImplies	0,00	3,25	0,42	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImplies	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanImplies.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanImplies	0,00	3,25	0,42	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImplies	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanImplies.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanImplies	0,00	3,25	0,42	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImplies	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/BooleanImplies.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testBooleanImplies	0,00	3,25	0,42	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+OutOfBoundsIndex	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/OutOfBoundsIndex.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testOutOfBoundsIndex	0,00	3,25	0,63	1,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+OutOfBoundsIndex	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/OutOfBoundsIndex.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testOutOfBoundsIndex	0,00	3,25	0,63	1,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+OutOfBoundsIndex	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/OutOfBoundsIndex.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testOutOfBoundsIndex	0,00	3,25	0,63	1,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+OutOfBoundsIndex	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/OutOfBoundsIndex.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testOutOfBoundsIndex	0,00	3,25	0,63	1,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+OutOfBoundsIndex	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/OutOfBoundsIndex.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testOutOfBoundsIndex	0,00	3,25	0,63	1,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+OutOfBoundsIndex	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/OutOfBoundsIndex.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testOutOfBoundsIndex	0,00	3,25	0,63	1,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+OutOfBoundsIndex	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/OutOfBoundsIndex.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testOutOfBoundsIndex	0,00	3,25	0,63	1,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+OutOfBoundsIndex	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/OutOfBoundsIndex.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testOutOfBoundsIndex	0,00	3,25	0,63	1,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+OutOfBoundsIndex	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/OutOfBoundsIndex.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testOutOfBoundsIndex	0,00	3,25	0,63	1,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+OutOfBoundsIndex	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/OutOfBoundsIndex.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testOutOfBoundsIndex	0,00	3,25	0,63	1,25	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	1,00	0,00	
+CompoundRefineConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundRefineConstraints.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundRefineConstraints	0,00	5,00	0,50	1,00	1,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundRefineConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundRefineConstraints.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundRefineConstraints	0,00	5,00	0,50	1,00	1,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundRefineConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundRefineConstraints.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundRefineConstraints	0,00	5,00	0,50	1,00	1,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundRefineConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundRefineConstraints.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundRefineConstraints	0,00	5,00	0,50	1,00	1,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundRefineConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundRefineConstraints.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundRefineConstraints	0,00	5,00	0,50	1,00	1,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundRefineConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundRefineConstraints.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundRefineConstraints	0,00	5,00	0,50	1,00	1,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundRefineConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundRefineConstraints.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundRefineConstraints	0,00	5,00	0,50	1,00	1,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundRefineConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundRefineConstraints.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundRefineConstraints	0,00	5,00	0,50	1,00	1,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundRefineConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundRefineConstraints.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundRefineConstraints	0,00	5,00	0,50	1,00	1,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+CompoundRefineConstraint	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundRefineConstraints.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundRefineConstraints	0,00	5,00	0,50	1,00	1,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	2,00	0,00	2,00	0,00	
+ConstantInCustomOperation	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstantInCustomOperation.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstantInCustomOperation	0,00	0,75	0,38	0,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+ConstantInCustomOperation	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstantInCustomOperation.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstantInCustomOperation	0,00	0,75	0,38	0,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+ConstantInCustomOperation	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstantInCustomOperation.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstantInCustomOperation	0,00	0,75	0,38	0,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+ConstantInCustomOperation	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstantInCustomOperation.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstantInCustomOperation	0,00	0,75	0,38	0,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+ConstantInCustomOperation	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstantInCustomOperation.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstantInCustomOperation	0,00	0,75	0,38	0,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+ConstantInCustomOperation	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstantInCustomOperation.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstantInCustomOperation	0,00	0,75	0,38	0,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+ConstantInCustomOperation	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstantInCustomOperation.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstantInCustomOperation	0,00	0,75	0,38	0,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+ConstantInCustomOperation	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstantInCustomOperation.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstantInCustomOperation	0,00	0,75	0,38	0,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+ConstantInCustomOperation	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstantInCustomOperation.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstantInCustomOperation	0,00	0,75	0,38	0,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+ConstantInCustomOperation	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstantInCustomOperation.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstantInCustomOperation	0,00	0,75	0,38	0,75	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	0,00	0,00	
+ConstraintEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintEval.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintEvaluation	0,00	3,25	0,63	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintEval.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintEvaluation	0,00	3,25	0,63	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintEval.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintEvaluation	0,00	3,25	0,63	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintEval.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintEvaluation	0,00	3,25	0,63	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintEval.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintEvaluation	0,00	3,25	0,63	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintEval.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintEvaluation	0,00	3,25	0,63	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintEval.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintEvaluation	0,00	3,25	0,63	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	15,00	
+ConstraintEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintEval.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintEvaluation	0,00	3,25	0,63	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintEval.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintEvaluation	0,00	3,25	0,63	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+ConstraintEval	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/ConstraintEval.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testConstraintEvaluation	0,00	3,25	0,63	1,25	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	0,00	0,00	
+SetAndSequenceTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SetAndSequenceTypedef.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	0,00	2,00	0,00	12,00	0,00	4,00	0,00	
+SetAndSequenceTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SetAndSequenceTypedef.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	0,00	2,00	0,00	12,00	0,00	4,00	0,00	
+SetAndSequenceTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SetAndSequenceTypedef.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	0,00	2,00	0,00	12,00	0,00	4,00	0,00	
+SetAndSequenceTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SetAndSequenceTypedef.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	0,00	2,00	0,00	12,00	0,00	4,00	0,00	
+SetAndSequenceTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SetAndSequenceTypedef.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	0,00	2,00	0,00	12,00	0,00	4,00	0,00	
+SetAndSequenceTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SetAndSequenceTypedef.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	0,00	2,00	0,00	12,00	0,00	4,00	0,00	
+SetAndSequenceTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SetAndSequenceTypedef.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	0,00	2,00	0,00	12,00	0,00	4,00	0,00	
+SetAndSequenceTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SetAndSequenceTypedef.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	0,00	2,00	0,00	12,00	0,00	4,00	0,00	
+SetAndSequenceTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SetAndSequenceTypedef.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	0,00	2,00	0,00	12,00	0,00	4,00	0,00	
+SetAndSequenceTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SetAndSequenceTypedef.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	8,00	0,50	4,00	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	8,00	0,00	0,00	2,00	0,00	2,00	0,00	12,00	0,00	4,00	0,00	
+SequenceTypedefWith	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SequenceTypedefWith.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SequenceTypedefWith	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SequenceTypedefWith.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SequenceTypedefWith	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SequenceTypedefWith.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SequenceTypedefWith	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SequenceTypedefWith.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SequenceTypedefWith	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SequenceTypedefWith.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SequenceTypedefWith	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SequenceTypedefWith.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SequenceTypedefWith	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SequenceTypedefWith.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SequenceTypedefWith	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SequenceTypedefWith.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SequenceTypedefWith	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SequenceTypedefWith.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SequenceTypedefWith	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/SequenceTypedefWith.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testSetAndSequenceTypedef	0,00	3,00	0,50	1,00	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.1.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	5,00	1,50	3,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.1.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	5,00	1,50	3,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.1.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	5,00	1,50	3,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.1.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	5,00	1,50	3,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.1.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	5,00	1,50	3,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.1.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	5,00	1,50	3,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.1.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	5,00	1,50	3,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.1.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	5,00	1,50	3,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.1.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	5,00	1,50	3,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.1.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	5,00	1,50	3,00	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	0,00	0,00	0,00	0,00	3,00	0,00	2,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.2.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	7,00	1,50	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,00	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.2.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	7,00	1,50	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,00	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.2.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	7,00	1,50	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,00	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.2.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	7,00	1,50	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,00	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.2.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	7,00	1,50	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,00	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.2.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	7,00	1,50	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,00	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.2.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	7,00	1,50	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,00	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.2.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	7,00	1,50	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,00	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.2.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	7,00	1,50	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,00	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+CompoundTypedef	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/CompoundTypedef.2.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testCompoundTypedef	0,00	7,00	1,50	3,00	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,00	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+TypedefConstraintSequence	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/TypedefConstraintSequence.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testTypedefConstraintsInSequences	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+TypedefConstraintSequence	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/TypedefConstraintSequence.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testTypedefConstraintsInSequences	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+TypedefConstraintSequence	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/TypedefConstraintSequence.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testTypedefConstraintsInSequences	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+TypedefConstraintSequence	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/TypedefConstraintSequence.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testTypedefConstraintsInSequences	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+TypedefConstraintSequence	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/TypedefConstraintSequence.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testTypedefConstraintsInSequences	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+TypedefConstraintSequence	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/TypedefConstraintSequence.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testTypedefConstraintsInSequences	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+TypedefConstraintSequence	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/TypedefConstraintSequence.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testTypedefConstraintsInSequences	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+TypedefConstraintSequence	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/TypedefConstraintSequence.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testTypedefConstraintsInSequences	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+TypedefConstraintSequence	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/TypedefConstraintSequence.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testTypedefConstraintsInSequences	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+TypedefConstraintSequence	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/TypedefConstraintSequence.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testTypedefConstraintsInSequences	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+UndefinedVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariables.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariables	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+UndefinedVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariables.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariables	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+UndefinedVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariables.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariables	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+UndefinedVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariables.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariables	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+UndefinedVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariables.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariables	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+UndefinedVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariables.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariables	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+UndefinedVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariables.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariables	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+UndefinedVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariables.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariables	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+UndefinedVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariables.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariables	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+UndefinedVariables	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/stresstest/UndefinedVariables.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StressTest.testUndefinedVariables	0,00	3,50	0,75	1,50	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	2,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+test		REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+test		REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+test		REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+test		REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+test		REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+test		REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+test		REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+test		REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+test		REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+test		REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	0,00	0,00	
+test		REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+test		REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+test		REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+test		REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+test		REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+test		REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+test		REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+test		REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+test		REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+test		REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CodedTests.freezeCompoundTest	3,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	0,00	
+BooleanIplicationTest		REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CodedTests.testBooleanIplication	0,00	3,00	1,00	1,00	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	2,00	0,00	2,00	0,00	
+BooleanIplicationTest		REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CodedTests.testBooleanIplication	0,00	3,00	1,00	1,00	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	2,00	0,00	
+BooleanIplicationTest		REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CodedTests.testBooleanIplication	0,00	3,00	1,00	1,00	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	2,00	0,00	
+BooleanIplicationTest		REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CodedTests.testBooleanIplication	0,00	3,00	1,00	1,00	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	2,00	0,00	
+BooleanIplicationTest		REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CodedTests.testBooleanIplication	0,00	3,00	1,00	1,00	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	2,00	0,00	
+BooleanIplicationTest		REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CodedTests.testBooleanIplication	0,00	3,00	1,00	1,00	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	2,00	0,00	
+BooleanIplicationTest		REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CodedTests.testBooleanIplication	0,00	3,00	1,00	1,00	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	2,00	0,00	
+BooleanIplicationTest		REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CodedTests.testBooleanIplication	0,00	3,00	1,00	1,00	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	2,00	0,00	
+BooleanIplicationTest		REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CodedTests.testBooleanIplication	0,00	3,00	1,00	1,00	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	2,00	0,00	
+BooleanIplicationTest		REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CodedTests.testBooleanIplication	0,00	3,00	1,00	1,00	0,00	1,00	1,00	1,00	1,00	2,00	2,00	2,00	1,00	2,00	1,00	0,00	0,00	0,00	0,00	0,00	0,00	1,00	0,00	2,00	0,00	
+BooleanDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanDefaultsTest	0,00	6,00	0,60	3,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanDefaultsTest	0,00	6,00	0,60	3,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanDefaultsTest	0,00	6,00	0,60	3,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanDefaultsTest	0,00	6,00	0,60	3,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanDefaultsTest	0,00	6,00	0,60	3,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanDefaultsTest	0,00	6,00	0,60	3,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanDefaultsTest	0,00	6,00	0,60	3,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanDefaultsTest	0,00	6,00	0,60	3,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanDefaultsTest	0,00	6,00	0,60	3,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanDefaultsTest	0,00	6,00	0,60	3,00	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanRefAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+BooleanRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanRefAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+BooleanRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanRefAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+BooleanRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanRefAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+BooleanRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanRefAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+BooleanRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanRefAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+BooleanRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanRefAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+BooleanRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanRefAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+BooleanRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanRefAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+BooleanRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanRefAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	2,00	2,00	2,00	2,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAssignTest	0,00	6,50	0,70	3,50	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAssignTest	0,00	6,50	0,70	3,50	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAssignTest	0,00	6,50	0,70	3,50	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAssignTest	0,00	6,50	0,70	3,50	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAssignTest	0,00	6,50	0,70	3,50	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAssignTest	0,00	6,50	0,70	3,50	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAssignTest	0,00	6,50	0,70	3,50	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAssignTest	0,00	6,50	0,70	3,50	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAssignTest	0,00	6,50	0,70	3,50	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAssignTest	0,00	6,50	0,70	3,50	0,00	3,00	3,00	0,00	0,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	3,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionAssignTest	0,00	18,75	2,75	13,75	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionAssignTest	0,00	18,75	2,75	13,75	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionAssignTest	0,00	18,75	2,75	13,75	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionAssignTest	0,00	18,75	2,75	13,75	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionAssignTest	0,00	18,75	2,75	13,75	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionAssignTest	0,00	18,75	2,75	13,75	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionAssignTest	0,00	18,75	2,75	13,75	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionAssignTest	0,00	18,75	2,75	13,75	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionAssignTest	0,00	18,75	2,75	13,75	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionAssignTest	0,00	18,75	2,75	13,75	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundDefaultsTest	0,00	5,75	0,25	0,75	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+BooleanInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundDefaultsTest	0,00	5,75	0,25	0,75	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+BooleanInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundDefaultsTest	0,00	5,75	0,25	0,75	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+BooleanInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundDefaultsTest	0,00	5,75	0,25	0,75	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+BooleanInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundDefaultsTest	0,00	5,75	0,25	0,75	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+BooleanInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundDefaultsTest	0,00	5,75	0,25	0,75	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+BooleanInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundDefaultsTest	0,00	5,75	0,25	0,75	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+BooleanInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundDefaultsTest	0,00	5,75	0,25	0,75	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+BooleanInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundDefaultsTest	0,00	5,75	0,25	0,75	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+BooleanInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundDefaultsTest	0,00	5,75	0,25	0,75	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	4,00	0,00	
+BooleanInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionDefaultsTest	0,00	18,25	2,65	13,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionDefaultsTest	0,00	18,25	2,65	13,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionDefaultsTest	0,00	18,25	2,65	13,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionDefaultsTest	0,00	18,25	2,65	13,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionDefaultsTest	0,00	18,25	2,65	13,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	16,00	
+BooleanInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionDefaultsTest	0,00	18,25	2,65	13,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionDefaultsTest	0,00	18,25	2,65	13,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionDefaultsTest	0,00	18,25	2,65	13,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionDefaultsTest	0,00	18,25	2,65	13,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCollectionDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCollectionDefaultsTest	0,00	18,25	2,65	13,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+CarExample	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/CarExample.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.carExampleTest	0,00	7,25	0,54	3,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	2,00	1,00	1,00	0,00	8,00	0,00	3,00	0,00	
+CarExample	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/CarExample.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.carExampleTest	0,00	7,25	0,54	3,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	2,00	1,00	1,00	0,00	8,00	0,00	3,00	0,00	
+CarExample	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/CarExample.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.carExampleTest	0,00	7,25	0,54	3,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	2,00	1,00	1,00	0,00	8,00	0,00	3,00	0,00	
+CarExample	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/CarExample.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.carExampleTest	0,00	7,25	0,54	3,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	2,00	1,00	1,00	0,00	8,00	0,00	3,00	0,00	
+CarExample	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/CarExample.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.carExampleTest	0,00	7,25	0,54	3,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	2,00	1,00	1,00	0,00	8,00	0,00	3,00	0,00	
+CarExample	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/CarExample.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.carExampleTest	0,00	7,25	0,54	3,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	2,00	1,00	1,00	0,00	8,00	0,00	3,00	0,00	
+CarExample	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/CarExample.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.carExampleTest	0,00	7,25	0,54	3,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	2,00	1,00	1,00	0,00	8,00	0,00	3,00	0,00	
+CarExample	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/CarExample.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.carExampleTest	0,00	7,25	0,54	3,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	2,00	1,00	1,00	0,00	8,00	0,00	3,00	0,00	
+CarExample	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/CarExample.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.carExampleTest	0,00	7,25	0,54	3,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	2,00	1,00	1,00	0,00	8,00	0,00	3,00	0,00	
+CarExample	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/CarExample.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.carExampleTest	0,00	7,25	0,54	3,25	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,33	4,00	7,00	0,00	0,00	2,00	1,00	1,00	0,00	8,00	0,00	3,00	0,00	
+BooleanImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanImpliesTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanImpliesTest	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanImpliesTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanImpliesTest	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanImpliesTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanImpliesTest	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanImpliesTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanImpliesTest	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanImpliesTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanImpliesTest	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanImpliesTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanImpliesTest	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanImpliesTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanImpliesTest	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanImpliesTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanImpliesTest	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanImpliesTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanImpliesTest	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanImpliesTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanImpliesTest	0,00	3,25	0,42	1,25	0,00	2,00	2,00	0,00	0,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+BooleanInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	3,00	3,00	1,00	1,00	1,00	4,00	4,00	1,25	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+BooleanAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAnnotationTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+BooleanAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAnnotationTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+BooleanAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAnnotationTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+BooleanAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAnnotationTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+BooleanAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAnnotationTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+BooleanAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAnnotationTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+BooleanAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAnnotationTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+BooleanAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAnnotationTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+BooleanAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAnnotationTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+BooleanAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanAnnotationTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+BooleanInCompoundImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundImpliesTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundImpliesTest	0,00	4,75	0,25	0,75	0,00	2,00	2,00	1,00	1,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+BooleanInCompoundImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundImpliesTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundImpliesTest	0,00	4,75	0,25	0,75	0,00	2,00	2,00	1,00	1,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+BooleanInCompoundImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundImpliesTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundImpliesTest	0,00	4,75	0,25	0,75	0,00	2,00	2,00	1,00	1,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+BooleanInCompoundImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundImpliesTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundImpliesTest	0,00	4,75	0,25	0,75	0,00	2,00	2,00	1,00	1,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+BooleanInCompoundImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundImpliesTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundImpliesTest	0,00	4,75	0,25	0,75	0,00	2,00	2,00	1,00	1,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+BooleanInCompoundImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundImpliesTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundImpliesTest	0,00	4,75	0,25	0,75	0,00	2,00	2,00	1,00	1,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+BooleanInCompoundImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundImpliesTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundImpliesTest	0,00	4,75	0,25	0,75	0,00	2,00	2,00	1,00	1,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+BooleanInCompoundImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundImpliesTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundImpliesTest	0,00	4,75	0,25	0,75	0,00	2,00	2,00	1,00	1,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+BooleanInCompoundImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundImpliesTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundImpliesTest	0,00	4,75	0,25	0,75	0,00	2,00	2,00	1,00	1,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+BooleanInCompoundImpliesTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/boolean/BooleanInCompoundImpliesTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.BooleanTests.booleanInCompoundImpliesTest	0,00	4,75	0,25	0,75	0,00	2,00	2,00	1,00	1,00	1,00	3,00	3,00	1,33	4,00	4,00	0,00	0,00	1,00	0,00	1,00	0,00	4,00	0,00	3,00	0,00	
+RealRefAssignTest		REASONING	1	net.ssehub.easy.reasoning.core.reasoner.RealTests.testConstraintDefaults	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealRefAssignTest		REASONING	2	net.ssehub.easy.reasoning.core.reasoner.RealTests.testConstraintDefaults	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealRefAssignTest		REASONING	3	net.ssehub.easy.reasoning.core.reasoner.RealTests.testConstraintDefaults	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealRefAssignTest		REASONING	4	net.ssehub.easy.reasoning.core.reasoner.RealTests.testConstraintDefaults	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealRefAssignTest		REASONING	5	net.ssehub.easy.reasoning.core.reasoner.RealTests.testConstraintDefaults	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealRefAssignTest		REASONING	6	net.ssehub.easy.reasoning.core.reasoner.RealTests.testConstraintDefaults	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealRefAssignTest		REASONING	7	net.ssehub.easy.reasoning.core.reasoner.RealTests.testConstraintDefaults	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealRefAssignTest		REASONING	8	net.ssehub.easy.reasoning.core.reasoner.RealTests.testConstraintDefaults	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealRefAssignTest		REASONING	9	net.ssehub.easy.reasoning.core.reasoner.RealTests.testConstraintDefaults	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealRefAssignTest		REASONING	10	net.ssehub.easy.reasoning.core.reasoner.RealTests.testConstraintDefaults	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAnnotationTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+RealAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAnnotationTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+RealAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAnnotationTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+RealAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAnnotationTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+RealAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAnnotationTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+RealAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAnnotationTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	16,00	0,00	10,00	0,00	10,00	16,00	33,00	0,00	19,00	16,00	
+RealAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAnnotationTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+RealAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAnnotationTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+RealAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAnnotationTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+RealAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAnnotationTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.RealTests.realDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.RealTests.realDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.RealTests.realDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.RealTests.realDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.RealTests.realDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.RealTests.realDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.RealTests.realDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.RealTests.realDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.RealTests.realDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	15,00	5,00	15,00	3,00	15,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.RealTests.realDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+ReferenceDerivedRealTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/ReferenceDerivedRealTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.RealTests.referenceDerivedRealTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedRealTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/ReferenceDerivedRealTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.RealTests.referenceDerivedRealTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedRealTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/ReferenceDerivedRealTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.RealTests.referenceDerivedRealTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedRealTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/ReferenceDerivedRealTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.RealTests.referenceDerivedRealTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedRealTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/ReferenceDerivedRealTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.RealTests.referenceDerivedRealTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedRealTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/ReferenceDerivedRealTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.RealTests.referenceDerivedRealTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedRealTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/ReferenceDerivedRealTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.RealTests.referenceDerivedRealTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	16,00	
+ReferenceDerivedRealTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/ReferenceDerivedRealTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.RealTests.referenceDerivedRealTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedRealTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/ReferenceDerivedRealTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.RealTests.referenceDerivedRealTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedRealTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/ReferenceDerivedRealTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.RealTests.referenceDerivedRealTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+RealAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.RealTests.realAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+RealRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealRefAssignTestFail.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.RealTests.realReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	6,00	0,00	2,00	0,00	
+RealRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealRefAssignTestFail.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.RealTests.realReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	6,00	0,00	2,00	0,00	
+RealRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealRefAssignTestFail.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.RealTests.realReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	6,00	0,00	2,00	0,00	
+RealRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealRefAssignTestFail.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.RealTests.realReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	6,00	0,00	2,00	0,00	
+RealRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealRefAssignTestFail.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.RealTests.realReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	6,00	0,00	2,00	0,00	
+RealRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealRefAssignTestFail.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.RealTests.realReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	6,00	0,00	2,00	0,00	
+RealRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealRefAssignTestFail.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.RealTests.realReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	6,00	0,00	2,00	0,00	
+RealRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealRefAssignTestFail.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.RealTests.realReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	6,00	0,00	2,00	0,00	
+RealRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealRefAssignTestFail.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.RealTests.realReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	6,00	0,00	2,00	0,00	
+RealRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealRefAssignTestFail.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.RealTests.realReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	6,00	0,00	2,00	0,00	
+RealInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	16,00	0,00	0,00	0,00	0,00	16,00	6,00	0,00	4,00	16,00	
+RealInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCompoundDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+RealDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/real/RealInCollectionDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.RealTests.realInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	16,00	6,00	16,00	4,00	16,00	
+StringInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCollectionAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+StringInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringInCompoundDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+StringRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringRefAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+StringRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringRefAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+StringRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringRefAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+StringRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringRefAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+StringRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringRefAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+StringRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringRefAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+StringRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringRefAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+StringRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringRefAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+StringRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringRefAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+StringRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringRefAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+StringAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAnnotationTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+StringAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAnnotationTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+StringAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAnnotationTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+StringAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAnnotationTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+StringAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAnnotationTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+StringAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAnnotationTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+StringAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAnnotationTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+StringAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAnnotationTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+StringAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAnnotationTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+StringAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAnnotationTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+StringDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	15,00	0,00	0,00	0,00	0,00	15,00	5,00	0,00	3,00	15,00	
+StringDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+StringAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/StringAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StringTests.stringAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+ReferenceDerivedStringTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/ReferenceDerivedStringTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.StringTests.referenceDerivedStringTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedStringTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/ReferenceDerivedStringTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.StringTests.referenceDerivedStringTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedStringTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/ReferenceDerivedStringTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.StringTests.referenceDerivedStringTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedStringTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/ReferenceDerivedStringTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.StringTests.referenceDerivedStringTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedStringTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/ReferenceDerivedStringTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.StringTests.referenceDerivedStringTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedStringTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/ReferenceDerivedStringTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.StringTests.referenceDerivedStringTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedStringTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/ReferenceDerivedStringTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.StringTests.referenceDerivedStringTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedStringTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/ReferenceDerivedStringTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.StringTests.referenceDerivedStringTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedStringTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/ReferenceDerivedStringTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.StringTests.referenceDerivedStringTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedStringTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/string/ReferenceDerivedStringTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.StringTests.referenceDerivedStringTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedIntegerTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/ReferenceDerivedIntegerTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.referenceDerivedIntegerTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedIntegerTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/ReferenceDerivedIntegerTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.referenceDerivedIntegerTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedIntegerTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/ReferenceDerivedIntegerTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.referenceDerivedIntegerTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedIntegerTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/ReferenceDerivedIntegerTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.referenceDerivedIntegerTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedIntegerTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/ReferenceDerivedIntegerTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.referenceDerivedIntegerTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedIntegerTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/ReferenceDerivedIntegerTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.referenceDerivedIntegerTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedIntegerTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/ReferenceDerivedIntegerTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.referenceDerivedIntegerTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedIntegerTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/ReferenceDerivedIntegerTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.referenceDerivedIntegerTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedIntegerTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/ReferenceDerivedIntegerTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.referenceDerivedIntegerTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+ReferenceDerivedIntegerTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/ReferenceDerivedIntegerTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.referenceDerivedIntegerTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	7,00	0,00	0,00	4,00	0,00	4,00	0,00	7,00	0,00	3,00	0,00	
+IntegerDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	16,00	5,00	0,00	3,00	16,00	
+IntegerDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerDefaultsTest	0,00	5,25	0,56	2,25	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAssignTest	0,00	5,75	0,69	2,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+IntegerRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerRefAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+IntegerRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerRefAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+IntegerRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerRefAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+IntegerRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerRefAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+IntegerRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerRefAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+IntegerRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerRefAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+IntegerRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerRefAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+IntegerRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerRefAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+IntegerRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerRefAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+IntegerRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerRefAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+IntegerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAnnotationTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+IntegerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAnnotationTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+IntegerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAnnotationTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+IntegerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAnnotationTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+IntegerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAnnotationTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+IntegerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAnnotationTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+IntegerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAnnotationTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+IntegerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAnnotationTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+IntegerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAnnotationTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+IntegerAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerAnnotationTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+VariableFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/VariableFailTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.variableFailTest	0,00	1,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+VariableFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/VariableFailTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.variableFailTest	0,00	1,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+VariableFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/VariableFailTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.variableFailTest	0,00	1,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+VariableFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/VariableFailTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.variableFailTest	0,00	1,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+VariableFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/VariableFailTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.variableFailTest	0,00	1,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+VariableFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/VariableFailTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.variableFailTest	0,00	1,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+VariableFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/VariableFailTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.variableFailTest	0,00	1,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+VariableFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/VariableFailTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.variableFailTest	0,00	1,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+VariableFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/VariableFailTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.variableFailTest	0,00	1,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+VariableFail	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/VariableFailTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.variableFailTest	0,00	1,75	0,38	0,75	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	1,00	1,00	2,00	0,00	0,00	1,00	1,00	0,00	0,00	2,00	0,00	0,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCollectionDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+IntegerInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+IntegerInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/integer/IntegerInCompoundAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.IntegerTests.integerInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumRefAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+OrderedEnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumRefAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+OrderedEnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumRefAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+OrderedEnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumRefAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+OrderedEnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumRefAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+OrderedEnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumRefAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+OrderedEnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumRefAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+OrderedEnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumRefAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+OrderedEnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumRefAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+OrderedEnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumRefAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAnnotationTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAnnotationTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAnnotationTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAnnotationTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAnnotationTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAnnotationTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAnnotationTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAnnotationTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAnnotationTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAnnotationTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCollectionDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+ReferenceDerivedEnumTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/ReferenceDerivedEnumTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EnumTests.referenceDerivedEnumTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	3,00	0,00	3,00	0,00	6,00	0,00	2,00	0,00	
+ReferenceDerivedEnumTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/ReferenceDerivedEnumTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EnumTests.referenceDerivedEnumTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	3,00	0,00	3,00	0,00	6,00	0,00	2,00	0,00	
+ReferenceDerivedEnumTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/ReferenceDerivedEnumTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EnumTests.referenceDerivedEnumTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	3,00	0,00	3,00	0,00	6,00	0,00	2,00	0,00	
+ReferenceDerivedEnumTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/ReferenceDerivedEnumTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EnumTests.referenceDerivedEnumTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	3,00	0,00	3,00	0,00	6,00	0,00	2,00	0,00	
+ReferenceDerivedEnumTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/ReferenceDerivedEnumTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EnumTests.referenceDerivedEnumTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	3,00	0,00	3,00	0,00	6,00	0,00	2,00	0,00	
+ReferenceDerivedEnumTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/ReferenceDerivedEnumTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EnumTests.referenceDerivedEnumTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	3,00	0,00	3,00	0,00	6,00	0,00	2,00	0,00	
+ReferenceDerivedEnumTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/ReferenceDerivedEnumTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EnumTests.referenceDerivedEnumTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	3,00	0,00	3,00	0,00	6,00	0,00	2,00	0,00	
+ReferenceDerivedEnumTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/ReferenceDerivedEnumTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EnumTests.referenceDerivedEnumTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	3,00	0,00	3,00	0,00	6,00	0,00	2,00	0,00	
+ReferenceDerivedEnumTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/ReferenceDerivedEnumTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EnumTests.referenceDerivedEnumTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	3,00	0,00	3,00	0,00	6,00	0,00	2,00	0,00	
+ReferenceDerivedEnumTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/ReferenceDerivedEnumTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EnumTests.referenceDerivedEnumTest	0,00	4,75	0,35	1,75	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	6,00	0,00	0,00	3,00	0,00	3,00	0,00	6,00	0,00	2,00	0,00	
+EnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionAssignTest	0,00	19,00	2,80	14,00	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+OrderedEnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumInCompoundDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundDefaultsTest	0,00	5,50	0,25	0,50	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+EnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumRefAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+EnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumRefAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+EnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumRefAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+EnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumRefAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+EnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumRefAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+EnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumRefAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+EnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumRefAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+EnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumRefAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+EnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumRefAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+EnumRefAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumRefAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumReferenceAssignTest	0,00	6,50	0,42	2,50	0,00	0,00	0,00	4,00	4,00	4,00	4,00	4,00	1,00	4,00	6,00	0,00	0,00	2,00	2,00	0,00	0,00	8,00	0,00	2,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+EnumInCollectionDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCollectionDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCollectionDefaultsTest	0,00	18,50	2,70	13,50	0,00	1,00	1,00	2,00	2,00	3,00	3,00	3,00	1,67	5,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+OrderedEnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumDefaultsTest	0,00	5,00	0,50	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumDefaultsTest	0,00	5,00	0,50	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumDefaultsTest	0,00	5,00	0,50	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumDefaultsTest	0,00	5,00	0,50	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumDefaultsTest	0,00	5,00	0,50	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumDefaultsTest	0,00	5,00	0,50	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumDefaultsTest	0,00	5,00	0,50	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumDefaultsTest	0,00	5,00	0,50	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumDefaultsTest	0,00	5,00	0,50	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumDefaultsTest	0,00	5,00	0,50	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+EnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAssignTest	0,00	5,00	0,67	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAssignTest	0,00	5,00	0,67	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAssignTest	0,00	5,00	0,67	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAssignTest	0,00	5,00	0,67	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAssignTest	0,00	5,00	0,67	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAssignTest	0,00	5,00	0,67	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAssignTest	0,00	5,00	0,67	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAssignTest	0,00	5,00	0,67	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAssignTest	0,00	5,00	0,67	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumAssignTest	0,00	5,00	0,67	2,00	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumDefaultsTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumDefaultsTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumDefaultsTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumDefaultsTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumDefaultsTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumDefaultsTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumDefaultsTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumDefaultsTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumDefaultsTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumDefaultsTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumDefaultsTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumDefaultsTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumDefaultsTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumDefaultsTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumDefaultsTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumDefaultsTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumDefaultsTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumDefaultsTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+EnumDefaultsTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumDefaultsTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumDefaultsTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+OrderedEnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+OrderedEnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumInCompoundAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	6,00	0,00	4,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAnnotationTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderdEnumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAnnotationTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderdEnumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAnnotationTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderdEnumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAnnotationTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderdEnumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAnnotationTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderdEnumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAnnotationTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderdEnumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAnnotationTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderdEnumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAnnotationTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderdEnumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAnnotationTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderdEnumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAnnotationTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderdEnumAnnotationTest	11,00	29,25	0,81	16,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	33,00	0,00	0,00	10,00	0,00	10,00	0,00	33,00	0,00	19,00	0,00	
+EnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+EnumInCompoundAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/EnumInCompoundAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EnumTests.enumInCompoundAssignTest	0,00	5,00	0,00	0,00	0,00	0,00	0,00	4,00	4,00	1,00	4,00	4,00	1,25	5,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	4,00	0,00	
+OrderedEnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAssignTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumAssignTest	0,00	5,50	0,63	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAssignTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumAssignTest	0,00	5,50	0,63	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAssignTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumAssignTest	0,00	5,50	0,63	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAssignTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumAssignTest	0,00	5,50	0,63	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAssignTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumAssignTest	0,00	5,50	0,63	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAssignTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumAssignTest	0,00	5,50	0,63	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAssignTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumAssignTest	0,00	5,50	0,63	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAssignTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumAssignTest	0,00	5,50	0,63	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAssignTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumAssignTest	0,00	5,50	0,63	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+OrderedEnumAssignTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/enums/OrderedEnumAssignTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.EnumTests.orderedEnumAssignTest	0,00	5,50	0,63	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	4,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	3,00	0,00	
+CompoundAnnotationTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest2.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest2	4,00	6,25	0,25	0,25	0,00	1,00	1,00	3,00	3,00	1,00	4,00	4,00	1,50	6,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+CompoundAnnotationTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest2.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest2	4,00	6,25	0,25	0,25	0,00	1,00	1,00	3,00	3,00	1,00	4,00	4,00	1,50	6,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+CompoundAnnotationTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest2.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest2	4,00	6,25	0,25	0,25	0,00	1,00	1,00	3,00	3,00	1,00	4,00	4,00	1,50	6,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+CompoundAnnotationTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest2.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest2	4,00	6,25	0,25	0,25	0,00	1,00	1,00	3,00	3,00	1,00	4,00	4,00	1,50	6,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+CompoundAnnotationTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest2.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest2	4,00	6,25	0,25	0,25	0,00	1,00	1,00	3,00	3,00	1,00	4,00	4,00	1,50	6,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+CompoundAnnotationTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest2.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest2	4,00	6,25	0,25	0,25	0,00	1,00	1,00	3,00	3,00	1,00	4,00	4,00	1,50	6,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+CompoundAnnotationTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest2.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest2	4,00	6,25	0,25	0,25	0,00	1,00	1,00	3,00	3,00	1,00	4,00	4,00	1,50	6,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+CompoundAnnotationTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest2.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest2	4,00	6,25	0,25	0,25	0,00	1,00	1,00	3,00	3,00	1,00	4,00	4,00	1,50	6,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+CompoundAnnotationTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest2.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest2	4,00	6,25	0,25	0,25	0,00	1,00	1,00	3,00	3,00	1,00	4,00	4,00	1,50	6,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+CompoundAnnotationTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest2.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest2	4,00	6,25	0,25	0,25	0,00	1,00	1,00	3,00	3,00	1,00	4,00	4,00	1,50	6,00	5,00	0,00	0,00	0,00	0,00	0,00	0,00	5,00	0,00	0,00	0,00	
+changingValuesBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/changingValues/changingValuesBase.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	14,00	0,25	2,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	11,00	0,00	0,00	3,00	0,00	3,00	0,00	12,00	0,00	4,00	0,00	
+changingValuesBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/changingValues/changingValuesBase.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	14,00	0,25	2,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	11,00	0,00	0,00	3,00	0,00	3,00	0,00	12,00	0,00	4,00	0,00	
+changingValuesBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/changingValues/changingValuesBase.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	14,00	0,25	2,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	11,00	0,00	0,00	3,00	0,00	3,00	0,00	12,00	0,00	4,00	0,00	
+changingValuesBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/changingValues/changingValuesBase.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	14,00	0,25	2,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	11,00	0,00	0,00	3,00	0,00	3,00	0,00	12,00	0,00	4,00	0,00	
+changingValuesBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/changingValues/changingValuesBase.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	14,00	0,25	2,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	11,00	0,00	0,00	3,00	0,00	3,00	0,00	12,00	0,00	4,00	0,00	
+changingValuesBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/changingValues/changingValuesBase.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	14,00	0,25	2,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	11,00	0,00	0,00	3,00	0,00	3,00	0,00	12,00	0,00	4,00	0,00	
+changingValuesBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/changingValues/changingValuesBase.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	14,00	0,25	2,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	11,00	0,00	0,00	3,00	0,00	3,00	0,00	12,00	0,00	4,00	0,00	
+changingValuesBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/changingValues/changingValuesBase.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	14,00	0,25	2,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	11,00	0,00	0,00	3,00	0,00	3,00	0,00	12,00	0,00	4,00	0,00	
+changingValuesBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/changingValues/changingValuesBase.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	14,00	0,25	2,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	11,00	0,00	0,00	3,00	0,00	3,00	0,00	12,00	0,00	4,00	0,00	
+changingValuesBase	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/changingValues/changingValuesBase.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	14,00	0,25	2,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	11,00	0,00	0,00	3,00	0,00	3,00	0,00	12,00	0,00	4,00	0,00	
+changingValues		REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	16,00	0,33	4,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	16,00	0,00	0,00	0,00	0,00	0,00	0,00	20,00	0,00	8,00	0,00	
+changingValues		REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	16,00	0,33	4,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	16,00	0,00	0,00	0,00	0,00	0,00	0,00	20,00	0,00	8,00	0,00	
+changingValues		REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	16,00	0,33	4,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	16,00	0,00	0,00	0,00	0,00	0,00	0,00	20,00	0,00	8,00	0,00	
+changingValues		REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	16,00	0,33	4,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	16,00	0,00	0,00	0,00	0,00	0,00	0,00	20,00	0,00	8,00	0,00	
+changingValues		REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	16,00	0,33	4,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	16,00	0,00	0,00	0,00	0,00	0,00	0,00	20,00	0,00	8,00	0,00	
+changingValues		REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	16,00	0,33	4,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	16,00	0,00	0,00	0,00	0,00	0,00	0,00	20,00	0,00	8,00	0,00	
+changingValues		REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	16,00	0,33	4,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	16,00	0,00	0,00	0,00	0,00	0,00	0,00	20,00	0,00	8,00	0,00	
+changingValues		REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	16,00	0,33	4,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	16,00	0,00	0,00	0,00	0,00	0,00	0,00	20,00	0,00	8,00	0,00	
+changingValues		REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	16,00	0,33	4,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	16,00	0,00	0,00	0,00	0,00	0,00	0,00	20,00	0,00	8,00	0,00	
+changingValues		REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.changingValuesTest	0,00	16,00	0,33	4,00	0,00	0,00	0,00	8,00	8,00	4,00	8,00	8,00	1,50	12,00	16,00	0,00	0,00	0,00	0,00	0,00	0,00	20,00	0,00	8,00	0,00	
+CompoundCompoundTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest1.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest1	0,00	16,50	1,13	4,50	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	5,00	0,00	
+CompoundCompoundTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest1.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest1	0,00	16,50	1,13	4,50	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	5,00	0,00	
+CompoundCompoundTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest1.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest1	0,00	16,50	1,13	4,50	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	5,00	0,00	
+CompoundCompoundTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest1.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest1	0,00	16,50	1,13	4,50	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	5,00	0,00	
+CompoundCompoundTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest1.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest1	0,00	16,50	1,13	4,50	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	5,00	0,00	
+CompoundCompoundTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest1.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest1	0,00	16,50	1,13	4,50	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	6,00	16,00	0,00	2,00	0,00	2,00	16,00	6,00	0,00	5,00	16,00	
+CompoundCompoundTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest1.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest1	0,00	16,50	1,13	4,50	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	5,00	0,00	
+CompoundCompoundTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest1.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest1	0,00	16,50	1,13	4,50	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	5,00	0,00	
+CompoundCompoundTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest1.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest1	0,00	16,50	1,13	4,50	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	5,00	0,00	
+CompoundCompoundTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest1.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest1	0,00	16,50	1,13	4,50	0,00	0,00	0,00	8,00	8,00	2,00	8,00	8,00	1,50	12,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	5,00	0,00	
+CompoundCompoundTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest2.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest2	0,00	10,50	1,13	4,50	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,50	6,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	3,00	0,00	
+CompoundCompoundTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest2.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest2	0,00	10,50	1,13	4,50	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,50	6,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	3,00	0,00	
+CompoundCompoundTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest2.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest2	0,00	10,50	1,13	4,50	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,50	6,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	3,00	0,00	
+CompoundCompoundTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest2.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest2	0,00	10,50	1,13	4,50	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,50	6,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	3,00	0,00	
+CompoundCompoundTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest2.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest2	0,00	10,50	1,13	4,50	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,50	6,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	3,00	0,00	
+CompoundCompoundTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest2.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest2	0,00	10,50	1,13	4,50	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,50	6,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	3,00	0,00	
+CompoundCompoundTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest2.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest2	0,00	10,50	1,13	4,50	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,50	6,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	3,00	0,00	
+CompoundCompoundTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest2.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest2	0,00	10,50	1,13	4,50	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,50	6,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	3,00	0,00	
+CompoundCompoundTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest2.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest2	0,00	10,50	1,13	4,50	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,50	6,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	3,00	0,00	
+CompoundCompoundTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundCompoundTest2.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundCompoundTest2	0,00	10,50	1,13	4,50	0,00	0,00	0,00	4,00	4,00	2,00	4,00	4,00	1,50	6,00	6,00	0,00	0,00	2,00	0,00	2,00	0,00	6,00	0,00	3,00	0,00	
+CompoundRefAssignTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest1.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest1	0,00	12,75	0,96	6,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	7,00	0,00	0,00	2,00	2,00	0,00	0,00	9,00	0,00	3,00	0,00	
+CompoundRefAssignTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest1.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest1	0,00	12,75	0,96	6,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	7,00	0,00	0,00	2,00	2,00	0,00	0,00	9,00	0,00	3,00	0,00	
+CompoundRefAssignTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest1.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest1	0,00	12,75	0,96	6,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	7,00	0,00	0,00	2,00	2,00	0,00	0,00	9,00	0,00	3,00	0,00	
+CompoundRefAssignTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest1.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest1	0,00	12,75	0,96	6,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	7,00	0,00	0,00	2,00	2,00	0,00	0,00	9,00	0,00	3,00	0,00	
+CompoundRefAssignTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest1.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest1	0,00	12,75	0,96	6,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	7,00	0,00	0,00	2,00	2,00	0,00	0,00	9,00	0,00	3,00	0,00	
+CompoundRefAssignTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest1.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest1	0,00	12,75	0,96	6,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	7,00	0,00	0,00	2,00	2,00	0,00	0,00	9,00	0,00	3,00	0,00	
+CompoundRefAssignTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest1.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest1	0,00	12,75	0,96	6,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	7,00	0,00	0,00	2,00	2,00	0,00	0,00	9,00	0,00	3,00	0,00	
+CompoundRefAssignTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest1.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest1	0,00	12,75	0,96	6,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	7,00	0,00	0,00	2,00	2,00	0,00	0,00	9,00	0,00	3,00	0,00	
+CompoundRefAssignTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest1.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest1	0,00	12,75	0,96	6,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	7,00	0,00	0,00	2,00	2,00	0,00	0,00	9,00	0,00	3,00	0,00	
+CompoundRefAssignTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest1.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest1	0,00	12,75	0,96	6,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	7,00	0,00	0,00	2,00	2,00	0,00	0,00	9,00	0,00	3,00	0,00	
+CompoundRefAssignTest3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest3.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest3	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest3.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest3	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest3.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest3	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest3.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest3	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest3.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest3	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest3.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest3	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest3.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest3	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest3.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest3	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest3.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest3	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest3	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest3.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest3	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+ReferenceDerivedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceDerivedCompoundTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceDerivedCompoundTest	0,00	9,50	0,79	5,50	0,00	0,00	0,00	4,00	4,00	3,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	5,00	0,00	5,00	0,00	9,00	0,00	4,00	0,00	
+ReferenceDerivedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceDerivedCompoundTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceDerivedCompoundTest	0,00	9,50	0,79	5,50	0,00	0,00	0,00	4,00	4,00	3,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	5,00	0,00	5,00	0,00	9,00	0,00	4,00	0,00	
+ReferenceDerivedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceDerivedCompoundTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceDerivedCompoundTest	0,00	9,50	0,79	5,50	0,00	0,00	0,00	4,00	4,00	3,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	5,00	0,00	5,00	0,00	9,00	0,00	4,00	0,00	
+ReferenceDerivedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceDerivedCompoundTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceDerivedCompoundTest	0,00	9,50	0,79	5,50	0,00	0,00	0,00	4,00	4,00	3,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	5,00	0,00	5,00	0,00	9,00	0,00	4,00	0,00	
+ReferenceDerivedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceDerivedCompoundTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceDerivedCompoundTest	0,00	9,50	0,79	5,50	0,00	0,00	0,00	4,00	4,00	3,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	5,00	0,00	5,00	0,00	9,00	0,00	4,00	0,00	
+ReferenceDerivedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceDerivedCompoundTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceDerivedCompoundTest	0,00	9,50	0,79	5,50	0,00	0,00	0,00	4,00	4,00	3,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	5,00	0,00	5,00	0,00	9,00	0,00	4,00	0,00	
+ReferenceDerivedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceDerivedCompoundTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceDerivedCompoundTest	0,00	9,50	0,79	5,50	0,00	0,00	0,00	4,00	4,00	3,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	5,00	0,00	5,00	0,00	9,00	0,00	4,00	0,00	
+ReferenceDerivedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceDerivedCompoundTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceDerivedCompoundTest	0,00	9,50	0,79	5,50	0,00	0,00	0,00	4,00	4,00	3,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	5,00	0,00	5,00	0,00	9,00	0,00	4,00	0,00	
+ReferenceDerivedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceDerivedCompoundTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceDerivedCompoundTest	0,00	9,50	0,79	5,50	0,00	0,00	0,00	4,00	4,00	3,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	5,00	0,00	5,00	0,00	9,00	0,00	4,00	0,00	
+ReferenceDerivedCompoundTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceDerivedCompoundTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceDerivedCompoundTest	0,00	9,50	0,79	5,50	0,00	0,00	0,00	4,00	4,00	3,00	4,00	4,00	1,00	4,00	9,00	0,00	0,00	5,00	0,00	5,00	0,00	9,00	0,00	4,00	0,00	
+CompoundShadowTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundShadowTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundShadowingTest	0,00	12,75	0,25	1,75	0,00	0,00	0,00	7,00	7,00	2,00	7,00	7,00	1,57	11,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	5,00	0,00	
+CompoundShadowTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundShadowTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundShadowingTest	0,00	12,75	0,25	1,75	0,00	0,00	0,00	7,00	7,00	2,00	7,00	7,00	1,57	11,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	5,00	0,00	
+CompoundShadowTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundShadowTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundShadowingTest	0,00	12,75	0,25	1,75	0,00	0,00	0,00	7,00	7,00	2,00	7,00	7,00	1,57	11,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	5,00	0,00	
+CompoundShadowTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundShadowTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundShadowingTest	0,00	12,75	0,25	1,75	0,00	0,00	0,00	7,00	7,00	2,00	7,00	7,00	1,57	11,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	5,00	0,00	
+CompoundShadowTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundShadowTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundShadowingTest	0,00	12,75	0,25	1,75	0,00	0,00	0,00	7,00	7,00	2,00	7,00	7,00	1,57	11,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	5,00	0,00	
+CompoundShadowTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundShadowTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundShadowingTest	0,00	12,75	0,25	1,75	0,00	0,00	0,00	7,00	7,00	2,00	7,00	7,00	1,57	11,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	5,00	0,00	
+CompoundShadowTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundShadowTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundShadowingTest	0,00	12,75	0,25	1,75	0,00	0,00	0,00	7,00	7,00	2,00	7,00	7,00	1,57	11,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	5,00	0,00	
+CompoundShadowTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundShadowTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundShadowingTest	0,00	12,75	0,25	1,75	0,00	0,00	0,00	7,00	7,00	2,00	7,00	7,00	1,57	11,00	9,00	15,00	0,00	2,00	0,00	2,00	15,00	9,00	0,00	5,00	15,00	
+CompoundShadowTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundShadowTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundShadowingTest	0,00	12,75	0,25	1,75	0,00	0,00	0,00	7,00	7,00	2,00	7,00	7,00	1,57	11,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	5,00	0,00	
+CompoundShadowTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundShadowTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundShadowingTest	0,00	12,75	0,25	1,75	0,00	0,00	0,00	7,00	7,00	2,00	7,00	7,00	1,57	11,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	5,00	0,00	
+CompoundContainerTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest1.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest1	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	6,00	0,00	
+CompoundContainerTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest1.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest1	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	6,00	0,00	
+CompoundContainerTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest1.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest1	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	9,00	16,00	0,00	2,00	0,00	2,00	16,00	9,00	0,00	6,00	16,00	
+CompoundContainerTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest1.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest1	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	6,00	0,00	
+CompoundContainerTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest1.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest1	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	6,00	0,00	
+CompoundContainerTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest1.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest1	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	6,00	0,00	
+CompoundContainerTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest1.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest1	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	6,00	0,00	
+CompoundContainerTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest1.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest1	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	6,00	0,00	
+CompoundContainerTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest1.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest1	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	6,00	0,00	
+CompoundContainerTest1	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest1.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest1	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	9,00	0,00	0,00	2,00	0,00	2,00	0,00	9,00	0,00	6,00	0,00	
+CompoundContainerTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest2.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest2	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	21,00	0,00	0,00	3,00	0,00	3,00	0,00	21,00	0,00	8,00	0,00	
+CompoundContainerTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest2.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest2	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	21,00	0,00	0,00	3,00	0,00	3,00	0,00	21,00	0,00	8,00	0,00	
+CompoundContainerTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest2.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest2	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	21,00	16,00	0,00	3,00	0,00	3,00	16,00	21,00	0,00	8,00	16,00	
+CompoundContainerTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest2.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest2	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	21,00	0,00	0,00	3,00	0,00	3,00	0,00	21,00	0,00	8,00	0,00	
+CompoundContainerTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest2.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest2	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	21,00	0,00	0,00	3,00	0,00	3,00	0,00	21,00	0,00	8,00	0,00	
+CompoundContainerTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest2.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest2	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	21,00	0,00	0,00	3,00	0,00	3,00	0,00	21,00	0,00	8,00	0,00	
+CompoundContainerTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest2.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest2	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	21,00	15,00	0,00	3,00	0,00	3,00	15,00	21,00	0,00	8,00	15,00	
+CompoundContainerTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest2.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest2	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	21,00	0,00	0,00	3,00	0,00	3,00	0,00	21,00	0,00	8,00	0,00	
+CompoundContainerTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest2.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest2	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	21,00	0,00	0,00	3,00	0,00	3,00	0,00	21,00	0,00	8,00	0,00	
+CompoundContainerTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundContainerTest2.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundContainerTest2	0,00	18,75	0,25	0,75	0,00	0,00	0,00	9,00	9,00	3,00	9,00	9,00	2,00	18,00	21,00	0,00	0,00	3,00	0,00	3,00	0,00	21,00	0,00	8,00	0,00	
+DerivedCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/DerivedCompoundAnnotationTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.derivedCompoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	53,00	15,00	0,00	10,00	0,00	10,00	15,00	53,00	0,00	21,00	15,00	
+DerivedCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/DerivedCompoundAnnotationTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.derivedCompoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	53,00	0,00	0,00	10,00	0,00	10,00	0,00	53,00	0,00	21,00	0,00	
+DerivedCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/DerivedCompoundAnnotationTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.derivedCompoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	53,00	0,00	0,00	10,00	0,00	10,00	0,00	53,00	0,00	21,00	0,00	
+DerivedCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/DerivedCompoundAnnotationTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.derivedCompoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	53,00	0,00	0,00	10,00	0,00	10,00	0,00	53,00	0,00	21,00	0,00	
+DerivedCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/DerivedCompoundAnnotationTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.derivedCompoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	53,00	0,00	0,00	10,00	0,00	10,00	0,00	53,00	0,00	21,00	0,00	
+DerivedCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/DerivedCompoundAnnotationTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.derivedCompoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	53,00	0,00	0,00	10,00	0,00	10,00	0,00	53,00	0,00	21,00	0,00	
+DerivedCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/DerivedCompoundAnnotationTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.derivedCompoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	53,00	0,00	0,00	10,00	0,00	10,00	0,00	53,00	0,00	21,00	0,00	
+DerivedCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/DerivedCompoundAnnotationTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.derivedCompoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	53,00	0,00	0,00	10,00	0,00	10,00	0,00	53,00	0,00	21,00	0,00	
+DerivedCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/DerivedCompoundAnnotationTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.derivedCompoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	53,00	0,00	0,00	10,00	0,00	10,00	0,00	53,00	0,00	21,00	0,00	
+DerivedCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/DerivedCompoundAnnotationTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.derivedCompoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	53,00	0,00	0,00	10,00	0,00	10,00	0,00	53,00	0,00	21,00	0,00	
+CompoundRefAssignTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest2.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest2Fail	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest2.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest2Fail	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest2.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest2Fail	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest2.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest2Fail	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest2.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest2Fail	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest2.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest2Fail	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest2.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest2Fail	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest2.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest2Fail	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest2.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest2Fail	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundRefAssignTest2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundRefAssignTest2.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundReferenceAssignTest2Fail	0,00	17,75	2,69	10,75	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,40	7,00	4,00	0,00	0,00	2,00	0,00	2,00	0,00	4,00	0,00	5,00	0,00	
+CompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	43,00	0,00	0,00	10,00	0,00	10,00	0,00	43,00	0,00	20,00	0,00	
+CompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	43,00	0,00	0,00	10,00	0,00	10,00	0,00	43,00	0,00	20,00	0,00	
+CompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	43,00	0,00	0,00	10,00	0,00	10,00	16,00	43,00	16,00	20,00	16,00	
+CompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	43,00	0,00	0,00	10,00	0,00	10,00	0,00	43,00	0,00	20,00	0,00	
+CompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	43,00	0,00	0,00	10,00	0,00	10,00	0,00	43,00	0,00	20,00	0,00	
+CompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	43,00	0,00	0,00	10,00	0,00	10,00	0,00	43,00	0,00	20,00	0,00	
+CompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	43,00	0,00	0,00	10,00	0,00	10,00	0,00	43,00	0,00	20,00	0,00	
+CompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	43,00	0,00	0,00	10,00	0,00	10,00	0,00	43,00	0,00	20,00	0,00	
+CompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	43,00	0,00	0,00	10,00	0,00	10,00	0,00	43,00	0,00	20,00	0,00	
+CompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundAnnotationTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundAnnotationTest	11,00	38,25	1,26	25,25	0,00	2,00	2,00	9,00	9,00	9,00	11,00	11,00	1,18	13,00	43,00	0,00	0,00	10,00	0,00	10,00	0,00	43,00	0,00	20,00	0,00	
+ReferenceCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceCompoundAnnotationTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceCompoundAnnotationTest	13,00	41,75	1,17	25,75	0,00	2,00	2,00	11,00	11,00	10,00	13,00	13,00	1,23	16,00	37,00	0,00	0,00	10,00	0,00	10,00	0,00	37,00	0,00	20,00	0,00	
+ReferenceCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceCompoundAnnotationTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceCompoundAnnotationTest	13,00	41,75	1,17	25,75	0,00	2,00	2,00	11,00	11,00	10,00	13,00	13,00	1,23	16,00	37,00	0,00	0,00	10,00	0,00	10,00	0,00	37,00	0,00	20,00	0,00	
+ReferenceCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceCompoundAnnotationTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceCompoundAnnotationTest	13,00	41,75	1,17	25,75	0,00	2,00	2,00	11,00	11,00	10,00	13,00	13,00	1,23	16,00	37,00	0,00	0,00	10,00	0,00	10,00	0,00	37,00	0,00	20,00	0,00	
+ReferenceCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceCompoundAnnotationTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceCompoundAnnotationTest	13,00	41,75	1,17	25,75	0,00	2,00	2,00	11,00	11,00	10,00	13,00	13,00	1,23	16,00	37,00	0,00	0,00	10,00	0,00	10,00	0,00	37,00	0,00	20,00	0,00	
+ReferenceCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceCompoundAnnotationTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceCompoundAnnotationTest	13,00	41,75	1,17	25,75	0,00	2,00	2,00	11,00	11,00	10,00	13,00	13,00	1,23	16,00	37,00	0,00	0,00	10,00	0,00	10,00	0,00	37,00	0,00	20,00	0,00	
+ReferenceCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceCompoundAnnotationTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceCompoundAnnotationTest	13,00	41,75	1,17	25,75	0,00	2,00	2,00	11,00	11,00	10,00	13,00	13,00	1,23	16,00	37,00	0,00	0,00	10,00	0,00	10,00	0,00	37,00	0,00	20,00	0,00	
+ReferenceCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceCompoundAnnotationTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceCompoundAnnotationTest	13,00	41,75	1,17	25,75	0,00	2,00	2,00	11,00	11,00	10,00	13,00	13,00	1,23	16,00	37,00	0,00	0,00	10,00	0,00	10,00	0,00	37,00	0,00	20,00	0,00	
+ReferenceCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceCompoundAnnotationTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceCompoundAnnotationTest	13,00	41,75	1,17	25,75	0,00	2,00	2,00	11,00	11,00	10,00	13,00	13,00	1,23	16,00	37,00	0,00	0,00	10,00	0,00	10,00	0,00	37,00	0,00	20,00	0,00	
+ReferenceCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceCompoundAnnotationTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceCompoundAnnotationTest	13,00	41,75	1,17	25,75	0,00	2,00	2,00	11,00	11,00	10,00	13,00	13,00	1,23	16,00	37,00	0,00	0,00	10,00	0,00	10,00	0,00	37,00	0,00	20,00	0,00	
+ReferenceCompoundAnnotationTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/ReferenceCompoundAnnotationTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.referenceCompoundAnnotationTest	13,00	41,75	1,17	25,75	0,00	2,00	2,00	11,00	11,00	10,00	13,00	13,00	1,23	16,00	37,00	0,00	0,00	10,00	0,00	10,00	0,00	37,00	0,00	20,00	0,00	
+Cfg		REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.slotReassignmentTest	5,00	7,25	0,25	1,25	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	5,00	0,00	
+Cfg		REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.slotReassignmentTest	5,00	7,25	0,25	1,25	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	5,00	0,00	
+Cfg		REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.slotReassignmentTest	5,00	7,25	0,25	1,25	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	5,00	0,00	
+Cfg		REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.slotReassignmentTest	5,00	7,25	0,25	1,25	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	5,00	0,00	
+Cfg		REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.slotReassignmentTest	5,00	7,25	0,25	1,25	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	5,00	0,00	
+Cfg		REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.slotReassignmentTest	5,00	7,25	0,25	1,25	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	5,00	0,00	
+Cfg		REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.slotReassignmentTest	5,00	7,25	0,25	1,25	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	5,00	0,00	
+Cfg		REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.slotReassignmentTest	5,00	7,25	0,25	1,25	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	5,00	0,00	
+Cfg		REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.slotReassignmentTest	5,00	7,25	0,25	1,25	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	5,00	0,00	
+Cfg		REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.slotReassignmentTest	5,00	7,25	0,25	1,25	0,00	0,00	0,00	5,00	5,00	1,00	5,00	5,00	1,20	6,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	13,00	0,00	5,00	0,00	
+CompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundConstraintTest.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundConstraintTest	0,00	10,00	0,67	2,00	0,00	0,00	0,00	6,00	6,00	2,00	6,00	6,00	1,33	8,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+CompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundConstraintTest.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundConstraintTest	0,00	10,00	0,67	2,00	0,00	0,00	0,00	6,00	6,00	2,00	6,00	6,00	1,33	8,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+CompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundConstraintTest.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundConstraintTest	0,00	10,00	0,67	2,00	0,00	0,00	0,00	6,00	6,00	2,00	6,00	6,00	1,33	8,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+CompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundConstraintTest.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundConstraintTest	0,00	10,00	0,67	2,00	0,00	0,00	0,00	6,00	6,00	2,00	6,00	6,00	1,33	8,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+CompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundConstraintTest.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundConstraintTest	0,00	10,00	0,67	2,00	0,00	0,00	0,00	6,00	6,00	2,00	6,00	6,00	1,33	8,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+CompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundConstraintTest.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundConstraintTest	0,00	10,00	0,67	2,00	0,00	0,00	0,00	6,00	6,00	2,00	6,00	6,00	1,33	8,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+CompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundConstraintTest.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundConstraintTest	0,00	10,00	0,67	2,00	0,00	0,00	0,00	6,00	6,00	2,00	6,00	6,00	1,33	8,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+CompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundConstraintTest.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundConstraintTest	0,00	10,00	0,67	2,00	0,00	0,00	0,00	6,00	6,00	2,00	6,00	6,00	1,33	8,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+CompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundConstraintTest.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundConstraintTest	0,00	10,00	0,67	2,00	0,00	0,00	0,00	6,00	6,00	2,00	6,00	6,00	1,33	8,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+CompoundConstraintTest	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/compounds/CompoundConstraintTest.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.CompoundTests.compoundConstraintTest	0,00	10,00	0,67	2,00	0,00	0,00	0,00	6,00	6,00	2,00	6,00	6,00	1,33	8,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	5,00	0,00	4,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Unfrozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Unfrozen.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Unfrozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Unfrozen.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Unfrozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Unfrozen.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Unfrozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Unfrozen.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Unfrozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Unfrozen.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Unfrozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Unfrozen.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Unfrozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Unfrozen.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Unfrozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Unfrozen.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Unfrozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Unfrozen.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Unfrozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Unfrozen.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.unfrozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Basis	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Basis.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	4,50	0,50	1,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	3,00	0,00	0,00	0,00	0,00	0,00	0,00	4,00	0,00	3,00	0,00	
+Frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Frozen.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Frozen.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Frozen.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Frozen.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Frozen.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Frozen.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Frozen.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Frozen.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Frozen.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+Frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/interfaces/Frozen.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.InterfaceTests.frozenTest	0,00	5,50	0,50	2,50	0,00	0,00	0,00	3,00	3,00	3,00	3,00	3,00	1,00	3,00	5,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	6,00	0,00	
+PL_SimElevator_frozen_orig	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_orig.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTestFail	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	1,00	1,00	0,00	0,00	37,00	0,00	3,00	0,00	
+PL_SimElevator_frozen_orig	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_orig.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTestFail	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	1,00	1,00	0,00	0,00	37,00	0,00	3,00	0,00	
+PL_SimElevator_frozen_orig	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_orig.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTestFail	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	1,00	1,00	0,00	0,00	37,00	0,00	3,00	0,00	
+PL_SimElevator_frozen_orig	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_orig.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTestFail	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	1,00	1,00	0,00	0,00	37,00	0,00	3,00	0,00	
+PL_SimElevator_frozen_orig	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_orig.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTestFail	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	1,00	1,00	0,00	0,00	37,00	0,00	3,00	0,00	
+PL_SimElevator_frozen_orig	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_orig.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTestFail	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	1,00	1,00	0,00	0,00	37,00	0,00	3,00	0,00	
+PL_SimElevator_frozen_orig	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_orig.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTestFail	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	1,00	1,00	0,00	0,00	37,00	0,00	3,00	0,00	
+PL_SimElevator_frozen_orig	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_orig.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTestFail	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	1,00	1,00	0,00	0,00	37,00	0,00	3,00	0,00	
+PL_SimElevator_frozen_orig	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_orig.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTestFail	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	1,00	1,00	0,00	0,00	37,00	0,00	3,00	0,00	
+PL_SimElevator_frozen_orig	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_orig.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTestFail	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	1,00	1,00	0,00	0,00	37,00	0,00	3,00	0,00	
+PL_SimElevator_frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_0.ivml	REASONING	1	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTest	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	39,00	0,00	6,00	0,00	
+PL_SimElevator_frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_0.ivml	REASONING	2	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTest	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	39,00	0,00	6,00	0,00	
+PL_SimElevator_frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_0.ivml	REASONING	3	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTest	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	39,00	0,00	6,00	0,00	
+PL_SimElevator_frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_0.ivml	REASONING	4	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTest	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	39,00	0,00	6,00	0,00	
+PL_SimElevator_frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_0.ivml	REASONING	5	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTest	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	39,00	0,00	6,00	0,00	
+PL_SimElevator_frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_0.ivml	REASONING	6	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTest	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	39,00	0,00	6,00	0,00	
+PL_SimElevator_frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_0.ivml	REASONING	7	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTest	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	39,00	0,00	6,00	0,00	
+PL_SimElevator_frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_0.ivml	REASONING	8	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTest	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	39,00	0,00	6,00	0,00	
+PL_SimElevator_frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_0.ivml	REASONING	9	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTest	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	39,00	0,00	6,00	0,00	
+PL_SimElevator_frozen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/applications/PL_SimElevator_frozen_0.ivml	REASONING	10	net.ssehub.easy.reasoning.core.reasoner.ApplicationsTests.plSimElevatorTest	0,00	31,50	0,40	14,50	0,00	13,00	13,00	4,00	4,00	17,00	17,00	17,00	1,00	17,00	36,00	0,00	0,00	0,00	0,00	0,00	0,00	39,00	0,00	6,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignments.ivml	REASONING	1	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignments	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignments.ivml	REASONING	2	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignments	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignments.ivml	REASONING	3	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignments	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignments.ivml	REASONING	4	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignments	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignments.ivml	REASONING	5	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignments	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignments.ivml	REASONING	6	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignments	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignments.ivml	REASONING	7	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignments	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignments.ivml	REASONING	8	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignments	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignments.ivml	REASONING	9	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignments	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignments.ivml	REASONING	10	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignments	0,00	4,00	0,00	0,00	0,00	0,00	0,00	3,00	3,00	1,00	3,00	3,00	1,33	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	3,00	0,00	
+TypedefCollections	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollections.ivml	REASONING	1	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollections	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+TypedefCollections	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollections.ivml	REASONING	2	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollections	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+TypedefCollections	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollections.ivml	REASONING	3	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollections	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+TypedefCollections	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollections.ivml	REASONING	4	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollections	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+TypedefCollections	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollections.ivml	REASONING	5	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollections	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+TypedefCollections	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollections.ivml	REASONING	6	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollections	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+TypedefCollections	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollections.ivml	REASONING	7	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollections	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+TypedefCollections	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollections.ivml	REASONING	8	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollections	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+TypedefCollections	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollections.ivml	REASONING	9	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollections	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+TypedefCollections	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollections.ivml	REASONING	10	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollections	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	5,00	0,00	2,00	0,00	
+CompoundConstraintsInCollection	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollection.ivml	REASONING	1	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollection	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+CompoundConstraintsInCollection	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollection.ivml	REASONING	2	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollection	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+CompoundConstraintsInCollection	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollection.ivml	REASONING	3	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollection	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+CompoundConstraintsInCollection	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollection.ivml	REASONING	4	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollection	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+CompoundConstraintsInCollection	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollection.ivml	REASONING	5	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollection	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+CompoundConstraintsInCollection	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollection.ivml	REASONING	6	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollection	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+CompoundConstraintsInCollection	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollection.ivml	REASONING	7	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollection	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+CompoundConstraintsInCollection	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollection.ivml	REASONING	8	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollection	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+CompoundConstraintsInCollection	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollection.ivml	REASONING	9	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollection	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+CompoundConstraintsInCollection	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollection.ivml	REASONING	10	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollection	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	2,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignmentsWithConstraintVars.ivml	REASONING	1	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignmentsWithConstraintVar	0,00	8,75	0,58	1,75	0,00	3,00	3,00	3,00	3,00	1,00	6,00	6,00	1,17	7,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	3,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignmentsWithConstraintVars.ivml	REASONING	2	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignmentsWithConstraintVar	0,00	8,75	0,58	1,75	0,00	3,00	3,00	3,00	3,00	1,00	6,00	6,00	1,17	7,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	3,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignmentsWithConstraintVars.ivml	REASONING	3	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignmentsWithConstraintVar	0,00	8,75	0,58	1,75	0,00	3,00	3,00	3,00	3,00	1,00	6,00	6,00	1,17	7,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	3,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignmentsWithConstraintVars.ivml	REASONING	4	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignmentsWithConstraintVar	0,00	8,75	0,58	1,75	0,00	3,00	3,00	3,00	3,00	1,00	6,00	6,00	1,17	7,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	3,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignmentsWithConstraintVars.ivml	REASONING	5	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignmentsWithConstraintVar	0,00	8,75	0,58	1,75	0,00	3,00	3,00	3,00	3,00	1,00	6,00	6,00	1,17	7,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	3,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignmentsWithConstraintVars.ivml	REASONING	6	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignmentsWithConstraintVar	0,00	8,75	0,58	1,75	0,00	3,00	3,00	3,00	3,00	1,00	6,00	6,00	1,17	7,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	3,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignmentsWithConstraintVars.ivml	REASONING	7	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignmentsWithConstraintVar	0,00	8,75	0,58	1,75	0,00	3,00	3,00	3,00	3,00	1,00	6,00	6,00	1,17	7,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	3,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignmentsWithConstraintVars.ivml	REASONING	8	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignmentsWithConstraintVar	0,00	8,75	0,58	1,75	0,00	3,00	3,00	3,00	3,00	1,00	6,00	6,00	1,17	7,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	3,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignmentsWithConstraintVars.ivml	REASONING	9	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignmentsWithConstraintVar	0,00	8,75	0,58	1,75	0,00	3,00	3,00	3,00	3,00	1,00	6,00	6,00	1,17	7,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	3,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundSimpleAssignmentsWithConstraintVars.ivml	REASONING	10	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundSimpleAssignmentsWithConstraintVar	0,00	8,75	0,58	1,75	0,00	3,00	3,00	3,00	3,00	1,00	6,00	6,00	1,17	7,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	10,00	0,00	3,00	0,00	
+TypedefCollectionsInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollectionsInCompound.ivml	REASONING	1	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollectionsInCompound	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+TypedefCollectionsInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollectionsInCompound.ivml	REASONING	2	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollectionsInCompound	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+TypedefCollectionsInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollectionsInCompound.ivml	REASONING	3	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollectionsInCompound	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+TypedefCollectionsInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollectionsInCompound.ivml	REASONING	4	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollectionsInCompound	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+TypedefCollectionsInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollectionsInCompound.ivml	REASONING	5	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollectionsInCompound	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+TypedefCollectionsInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollectionsInCompound.ivml	REASONING	6	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollectionsInCompound	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+TypedefCollectionsInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollectionsInCompound.ivml	REASONING	7	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollectionsInCompound	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+TypedefCollectionsInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollectionsInCompound.ivml	REASONING	8	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollectionsInCompound	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+TypedefCollectionsInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollectionsInCompound.ivml	REASONING	9	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollectionsInCompound	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+TypedefCollectionsInCompound	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/TypedefCollectionsInCompound.ivml	REASONING	10	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.typedefCollectionsInCompound	0,00	4,25	0,25	0,25	0,00	0,00	0,00	2,00	2,00	1,00	2,00	2,00	2,00	4,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	3,00	0,00	3,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignments.ivml	REASONING	1	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignments	0,00	3,75	0,58	1,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignments.ivml	REASONING	2	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignments	0,00	3,75	0,58	1,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignments.ivml	REASONING	3	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignments	0,00	3,75	0,58	1,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignments.ivml	REASONING	4	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignments	0,00	3,75	0,58	1,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignments.ivml	REASONING	5	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignments	0,00	3,75	0,58	1,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignments.ivml	REASONING	6	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignments	0,00	3,75	0,58	1,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignments.ivml	REASONING	7	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignments	0,00	3,75	0,58	1,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignments.ivml	REASONING	8	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignments	0,00	3,75	0,58	1,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignments.ivml	REASONING	9	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignments	0,00	3,75	0,58	1,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SimpleAssignments	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignments.ivml	REASONING	10	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignments	0,00	3,75	0,58	1,75	0,00	0,00	0,00	2,00	2,00	2,00	2,00	2,00	1,00	2,00	3,00	0,00	0,00	1,00	0,00	1,00	0,00	6,00	0,00	2,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignmentsWithConstraintVars.ivml	REASONING	1	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignmentsWithConstraintVar	0,00	6,75	0,58	1,75	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	2,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignmentsWithConstraintVars.ivml	REASONING	2	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignmentsWithConstraintVar	0,00	6,75	0,58	1,75	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	2,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignmentsWithConstraintVars.ivml	REASONING	3	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignmentsWithConstraintVar	0,00	6,75	0,58	1,75	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	2,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignmentsWithConstraintVars.ivml	REASONING	4	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignmentsWithConstraintVar	0,00	6,75	0,58	1,75	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	2,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignmentsWithConstraintVars.ivml	REASONING	5	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignmentsWithConstraintVar	0,00	6,75	0,58	1,75	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	2,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignmentsWithConstraintVars.ivml	REASONING	6	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignmentsWithConstraintVar	0,00	6,75	0,58	1,75	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	2,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignmentsWithConstraintVars.ivml	REASONING	7	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignmentsWithConstraintVar	0,00	6,75	0,58	1,75	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	2,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignmentsWithConstraintVars.ivml	REASONING	8	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignmentsWithConstraintVar	0,00	6,75	0,58	1,75	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	2,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignmentsWithConstraintVars.ivml	REASONING	9	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignmentsWithConstraintVar	0,00	6,75	0,58	1,75	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	2,00	0,00	
+SimpleAssignmentsWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/SimpleAssignmentsWithConstraintVars.ivml	REASONING	10	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.simpleAssignmentsWithConstraintVar	0,00	6,75	0,58	1,75	0,00	3,00	3,00	2,00	2,00	5,00	5,00	5,00	1,00	5,00	6,00	0,00	0,00	1,00	0,00	1,00	0,00	9,00	0,00	2,00	0,00	
+CompoundConstraintsInCollectionWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollectionWithConstraintVars.ivml	REASONING	1	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollectionWithConstraintVars	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	15,00	0,00	2,00	0,00	
+CompoundConstraintsInCollectionWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollectionWithConstraintVars.ivml	REASONING	2	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollectionWithConstraintVars	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	15,00	0,00	2,00	0,00	
+CompoundConstraintsInCollectionWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollectionWithConstraintVars.ivml	REASONING	3	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollectionWithConstraintVars	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	15,00	0,00	2,00	0,00	
+CompoundConstraintsInCollectionWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollectionWithConstraintVars.ivml	REASONING	4	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollectionWithConstraintVars	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	15,00	0,00	2,00	0,00	
+CompoundConstraintsInCollectionWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollectionWithConstraintVars.ivml	REASONING	5	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollectionWithConstraintVars	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	15,00	0,00	2,00	0,00	
+CompoundConstraintsInCollectionWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollectionWithConstraintVars.ivml	REASONING	6	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollectionWithConstraintVars	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	15,00	0,00	2,00	0,00	
+CompoundConstraintsInCollectionWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollectionWithConstraintVars.ivml	REASONING	7	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollectionWithConstraintVars	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	15,00	0,00	2,00	0,00	
+CompoundConstraintsInCollectionWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollectionWithConstraintVars.ivml	REASONING	8	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollectionWithConstraintVars	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	15,00	0,00	2,00	0,00	
+CompoundConstraintsInCollectionWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollectionWithConstraintVars.ivml	REASONING	9	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollectionWithConstraintVars	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	15,00	0,00	2,00	0,00	
+CompoundConstraintsInCollectionWithConstraintVars	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/performanceModels/CompoundConstraintsInCollectionWithConstraintVars.ivml	REASONING	10	net.ssehub.easy.reasoning.core.performance.CaseStudyStats.compoundConstraintsInCollectionWithConstraintVars	0,00	2,50	0,50	0,50	0,00	0,00	0,00	1,00	1,00	1,00	1,00	1,00	2,00	2,00	5,00	0,00	0,00	2,00	0,00	2,00	0,00	15,00	0,00	2,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	1	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	15,00	0,00	150,00	0,00	150,00	15,00	400,00	0,00	100,00	15,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	2	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	0,00	400,00	0,00	100,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	3	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	0,00	400,00	0,00	100,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	4	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	0,00	400,00	0,00	100,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	5	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	0,00	400,00	0,00	100,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	6	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	0,00	400,00	0,00	100,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	7	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	0,00	400,00	0,00	100,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	8	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	0,00	400,00	0,00	100,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	9	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	0,00	400,00	0,00	100,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	10	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	0,00	400,00	0,00	100,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	1	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	0,00	400,00	0,00	100,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	2	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	0,00	400,00	0,00	100,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	3	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	0,00	400,00	0,00	100,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	4	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	15,00	400,00	15,00	100,00	15,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	5	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	0,00	400,00	0,00	100,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	6	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	0,00	400,00	0,00	100,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	7	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	0,00	400,00	0,00	100,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	8	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	0,00	400,00	0,00	100,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	9	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	0,00	400,00	0,00	100,00	0,00	
+gr1_1_v100_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v100_c300_b_l2_0.ivml	REASONING	10	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	350,00	0,63	250,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	400,00	0,00	0,00	150,00	0,00	150,00	16,00	400,00	16,00	100,00	16,00	
+gr1_1_v300_c900_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v300_c900_b_l2_0.ivml	REASONING	1	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1050,00	0,63	750,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	1200,00	0,00	0,00	438,00	0,00	438,00	0,00	1200,00	0,00	300,00	0,00	
+gr1_1_v300_c900_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v300_c900_b_l2_0.ivml	REASONING	2	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1050,00	0,63	750,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	1200,00	0,00	0,00	438,00	0,00	438,00	15,00	1200,00	15,00	300,00	15,00	
+gr1_1_v300_c900_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v300_c900_b_l2_0.ivml	REASONING	3	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1050,00	0,63	750,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	1200,00	0,00	0,00	438,00	0,00	438,00	16,00	1200,00	16,00	300,00	16,00	
+gr1_1_v300_c900_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v300_c900_b_l2_0.ivml	REASONING	4	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1050,00	0,63	750,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	1200,00	16,00	0,00	438,00	0,00	438,00	16,00	1200,00	0,00	300,00	16,00	
+gr1_1_v300_c900_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v300_c900_b_l2_0.ivml	REASONING	5	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1050,00	0,63	750,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	1200,00	15,00	0,00	438,00	0,00	438,00	15,00	1200,00	0,00	300,00	15,00	
+gr1_1_v300_c900_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v300_c900_b_l2_0.ivml	REASONING	6	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1050,00	0,63	750,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	1200,00	0,00	0,00	438,00	0,00	438,00	0,00	1200,00	0,00	300,00	0,00	
+gr1_1_v300_c900_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v300_c900_b_l2_0.ivml	REASONING	7	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1050,00	0,63	750,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	1200,00	16,00	0,00	438,00	0,00	438,00	16,00	1200,00	0,00	300,00	16,00	
+gr1_1_v300_c900_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v300_c900_b_l2_0.ivml	REASONING	8	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1050,00	0,63	750,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	1200,00	0,00	0,00	438,00	0,00	438,00	0,00	1200,00	0,00	300,00	0,00	
+gr1_1_v300_c900_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v300_c900_b_l2_0.ivml	REASONING	9	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1050,00	0,63	750,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	1200,00	0,00	0,00	438,00	0,00	438,00	0,00	1200,00	0,00	300,00	0,00	
+gr1_1_v300_c900_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v300_c900_b_l2_0.ivml	REASONING	10	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1050,00	0,63	750,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	1200,00	15,00	0,00	438,00	0,00	438,00	15,00	1200,00	0,00	300,00	15,00	
+gr1_1_v500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v500_c1500_b_l2_0.ivml	REASONING	1	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1750,00	0,63	1250,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	2000,00	0,00	0,00	726,00	0,00	726,00	0,00	2000,00	0,00	500,00	0,00	
+gr1_1_v500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v500_c1500_b_l2_0.ivml	REASONING	2	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1750,00	0,63	1250,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	2000,00	15,00	0,00	726,00	0,00	726,00	15,00	2000,00	0,00	500,00	15,00	
+gr1_1_v500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v500_c1500_b_l2_0.ivml	REASONING	3	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1750,00	0,63	1250,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	2000,00	16,00	0,00	726,00	0,00	726,00	16,00	2000,00	0,00	500,00	16,00	
+gr1_1_v500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v500_c1500_b_l2_0.ivml	REASONING	4	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1750,00	0,63	1250,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	2000,00	15,00	0,00	726,00	0,00	726,00	15,00	2000,00	0,00	500,00	15,00	
+gr1_1_v500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v500_c1500_b_l2_0.ivml	REASONING	5	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1750,00	0,63	1250,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	2000,00	16,00	0,00	726,00	0,00	726,00	16,00	2000,00	0,00	500,00	16,00	
+gr1_1_v500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v500_c1500_b_l2_0.ivml	REASONING	6	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1750,00	0,63	1250,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	2000,00	0,00	0,00	726,00	0,00	726,00	16,00	2000,00	16,00	500,00	16,00	
+gr1_1_v500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v500_c1500_b_l2_0.ivml	REASONING	7	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1750,00	0,63	1250,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	2000,00	0,00	0,00	726,00	0,00	726,00	15,00	2000,00	15,00	500,00	15,00	
+gr1_1_v500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v500_c1500_b_l2_0.ivml	REASONING	8	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1750,00	0,63	1250,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	2000,00	0,00	0,00	726,00	0,00	726,00	16,00	2000,00	16,00	500,00	16,00	
+gr1_1_v500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v500_c1500_b_l2_0.ivml	REASONING	9	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1750,00	0,63	1250,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	2000,00	0,00	0,00	726,00	0,00	726,00	16,00	2000,00	16,00	500,00	16,00	
+gr1_1_v500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v500_c1500_b_l2_0.ivml	REASONING	10	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	1750,00	0,63	1250,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	2000,00	0,00	0,00	726,00	0,00	726,00	2,00	2000,00	2,00	500,00	2,00	
+gr1_1_v1000_c3000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1000_c3000_b_l2_0.ivml	REASONING	1	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	3500,00	0,63	2500,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	4000,00	16,00	0,00	1518,00	0,00	1518,00	16,00	4000,00	0,00	999,00	16,00	
+gr1_1_v1000_c3000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1000_c3000_b_l2_0.ivml	REASONING	2	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	3500,00	0,63	2500,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	4000,00	15,00	0,00	1518,00	0,00	1518,00	15,00	4000,00	0,00	999,00	15,00	
+gr1_1_v1000_c3000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1000_c3000_b_l2_0.ivml	REASONING	3	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	3500,00	0,63	2500,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	4000,00	15,00	0,00	1518,00	0,00	1518,00	31,00	4000,00	16,00	999,00	31,00	
+gr1_1_v1000_c3000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1000_c3000_b_l2_0.ivml	REASONING	4	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	3500,00	0,63	2500,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	4000,00	16,00	0,00	1518,00	0,00	1518,00	16,00	4000,00	0,00	999,00	16,00	
+gr1_1_v1000_c3000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1000_c3000_b_l2_0.ivml	REASONING	5	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	3500,00	0,63	2500,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	4000,00	15,00	0,00	1518,00	0,00	1518,00	15,00	4000,00	0,00	999,00	15,00	
+gr1_1_v1000_c3000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1000_c3000_b_l2_0.ivml	REASONING	6	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	3500,00	0,63	2500,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	4000,00	62,00	0,00	1518,00	0,00	1518,00	78,00	4000,00	16,00	999,00	78,00	
+gr1_1_v1000_c3000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1000_c3000_b_l2_0.ivml	REASONING	7	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	3500,00	0,63	2500,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	4000,00	0,00	0,00	1518,00	0,00	1518,00	32,00	4000,00	16,00	999,00	32,00	
+gr1_1_v1000_c3000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1000_c3000_b_l2_0.ivml	REASONING	8	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	3500,00	0,63	2500,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	4000,00	15,00	0,00	1518,00	0,00	1518,00	15,00	4000,00	0,00	999,00	15,00	
+gr1_1_v1000_c3000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1000_c3000_b_l2_0.ivml	REASONING	9	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	3500,00	0,63	2500,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	4000,00	15,00	0,00	1518,00	0,00	1518,00	31,00	4000,00	16,00	999,00	31,00	
+gr1_1_v1000_c3000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1000_c3000_b_l2_0.ivml	REASONING	10	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	3500,00	0,63	2500,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	4000,00	16,00	0,00	1518,00	0,00	1518,00	16,00	4000,00	0,00	999,00	16,00	
+gr1_1_v1500_c4500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1500_c4500_b_l2_0.ivml	REASONING	1	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	5250,00	0,63	3750,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	6000,00	31,00	0,00	2236,00	0,00	2236,00	109,00	6000,00	0,00	1500,00	109,00	
+gr1_1_v1500_c4500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1500_c4500_b_l2_0.ivml	REASONING	2	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	5250,00	0,63	3750,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	6000,00	31,00	0,00	2236,00	0,00	2236,00	47,00	6000,00	16,00	1500,00	47,00	
+gr1_1_v1500_c4500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1500_c4500_b_l2_0.ivml	REASONING	3	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	5250,00	0,63	3750,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	6000,00	16,00	0,00	2236,00	0,00	2236,00	32,00	6000,00	16,00	1500,00	32,00	
+gr1_1_v1500_c4500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1500_c4500_b_l2_0.ivml	REASONING	4	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	5250,00	0,63	3750,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	6000,00	16,00	0,00	2236,00	0,00	2236,00	31,00	6000,00	15,00	1500,00	31,00	
+gr1_1_v1500_c4500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1500_c4500_b_l2_0.ivml	REASONING	5	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	5250,00	0,63	3750,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	6000,00	16,00	0,00	2236,00	0,00	2236,00	32,00	6000,00	0,00	1500,00	32,00	
+gr1_1_v1500_c4500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1500_c4500_b_l2_0.ivml	REASONING	6	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	5250,00	0,63	3750,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	6000,00	31,00	0,00	2236,00	0,00	2236,00	31,00	6000,00	0,00	1500,00	31,00	
+gr1_1_v1500_c4500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1500_c4500_b_l2_0.ivml	REASONING	7	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	5250,00	0,63	3750,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	6000,00	15,00	0,00	2236,00	0,00	2236,00	31,00	6000,00	16,00	1500,00	31,00	
+gr1_1_v1500_c4500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1500_c4500_b_l2_0.ivml	REASONING	8	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	5250,00	0,63	3750,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	6000,00	15,00	0,00	2236,00	0,00	2236,00	31,00	6000,00	16,00	1500,00	31,00	
+gr1_1_v1500_c4500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1500_c4500_b_l2_0.ivml	REASONING	9	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	5250,00	0,63	3750,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	6000,00	31,00	0,00	2236,00	0,00	2236,00	31,00	6000,00	0,00	1500,00	31,00	
+gr1_1_v1500_c4500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_1_v1500_c4500_b_l2_0.ivml	REASONING	10	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr11	0,00	5250,00	0,63	3750,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	6000,00	16,00	0,00	2236,00	0,00	2236,00	32,00	6000,00	16,00	1500,00	32,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	1	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	0,00	200,00	0,00	98,00	0,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	2	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	0,00	200,00	0,00	98,00	0,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	3	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	0,00	200,00	0,00	98,00	0,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	4	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	0,00	200,00	0,00	98,00	0,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	5	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	0,00	200,00	0,00	98,00	0,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	6	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	15,00	0,00	46,00	0,00	46,00	15,00	200,00	0,00	98,00	15,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	7	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	0,00	200,00	0,00	98,00	0,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	8	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	0,00	200,00	0,00	98,00	0,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	9	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	0,00	200,00	0,00	98,00	0,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	10	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	0,00	200,00	0,00	98,00	0,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	1	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	15,00	200,00	0,00	98,00	15,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	2	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	0,00	200,00	0,00	98,00	0,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	3	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	0,00	200,00	0,00	98,00	0,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	4	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	0,00	200,00	0,00	98,00	0,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	5	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	0,00	200,00	0,00	98,00	0,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	6	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	0,00	200,00	0,00	98,00	0,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	7	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	16,00	200,00	16,00	98,00	16,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	8	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	0,00	200,00	0,00	98,00	0,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	9	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	0,00	200,00	0,00	98,00	0,00	
+gr1_2_v100_c100_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v100_c100_b_l2_0.ivml	REASONING	10	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	200,00	0,50	100,00	0,00	100,00	100,00	0,00	0,00	100,00	100,00	100,00	1,00	100,00	200,00	0,00	0,00	46,00	0,00	46,00	0,00	200,00	0,00	98,00	0,00	
+gr1_2_v300_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v300_c300_b_l2_0.ivml	REASONING	1	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	600,00	0,50	300,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	600,00	0,00	0,00	124,00	0,00	124,00	0,00	600,00	0,00	289,00	0,00	
+gr1_2_v300_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v300_c300_b_l2_0.ivml	REASONING	2	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	600,00	0,50	300,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	600,00	0,00	0,00	124,00	0,00	124,00	15,00	600,00	15,00	289,00	15,00	
+gr1_2_v300_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v300_c300_b_l2_0.ivml	REASONING	3	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	600,00	0,50	300,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	600,00	0,00	0,00	124,00	0,00	124,00	0,00	600,00	0,00	289,00	0,00	
+gr1_2_v300_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v300_c300_b_l2_0.ivml	REASONING	4	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	600,00	0,50	300,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	600,00	0,00	0,00	124,00	0,00	124,00	0,00	600,00	0,00	289,00	0,00	
+gr1_2_v300_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v300_c300_b_l2_0.ivml	REASONING	5	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	600,00	0,50	300,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	600,00	16,00	0,00	124,00	0,00	124,00	16,00	600,00	0,00	289,00	16,00	
+gr1_2_v300_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v300_c300_b_l2_0.ivml	REASONING	6	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	600,00	0,50	300,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	600,00	0,00	0,00	124,00	0,00	124,00	0,00	600,00	0,00	289,00	0,00	
+gr1_2_v300_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v300_c300_b_l2_0.ivml	REASONING	7	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	600,00	0,50	300,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	600,00	0,00	0,00	124,00	0,00	124,00	0,00	600,00	0,00	289,00	0,00	
+gr1_2_v300_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v300_c300_b_l2_0.ivml	REASONING	8	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	600,00	0,50	300,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	600,00	16,00	0,00	124,00	0,00	124,00	16,00	600,00	0,00	289,00	16,00	
+gr1_2_v300_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v300_c300_b_l2_0.ivml	REASONING	9	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	600,00	0,50	300,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	600,00	0,00	0,00	124,00	0,00	124,00	0,00	600,00	0,00	289,00	0,00	
+gr1_2_v300_c300_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v300_c300_b_l2_0.ivml	REASONING	10	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	600,00	0,50	300,00	0,00	300,00	300,00	0,00	0,00	300,00	300,00	300,00	1,00	300,00	600,00	0,00	0,00	124,00	0,00	124,00	0,00	600,00	0,00	289,00	0,00	
+gr1_2_v500_c500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v500_c500_b_l2_0.ivml	REASONING	1	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	1000,00	0,50	500,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	1000,00	0,00	0,00	266,00	0,00	266,00	0,00	1000,00	0,00	481,00	0,00	
+gr1_2_v500_c500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v500_c500_b_l2_0.ivml	REASONING	2	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	1000,00	0,50	500,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	1000,00	0,00	0,00	266,00	0,00	266,00	0,00	1000,00	0,00	481,00	0,00	
+gr1_2_v500_c500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v500_c500_b_l2_0.ivml	REASONING	3	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	1000,00	0,50	500,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	1000,00	0,00	0,00	266,00	0,00	266,00	0,00	1000,00	0,00	481,00	0,00	
+gr1_2_v500_c500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v500_c500_b_l2_0.ivml	REASONING	4	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	1000,00	0,50	500,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	1000,00	0,00	0,00	266,00	0,00	266,00	0,00	1000,00	0,00	481,00	0,00	
+gr1_2_v500_c500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v500_c500_b_l2_0.ivml	REASONING	5	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	1000,00	0,50	500,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	1000,00	0,00	0,00	266,00	0,00	266,00	0,00	1000,00	0,00	481,00	0,00	
+gr1_2_v500_c500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v500_c500_b_l2_0.ivml	REASONING	6	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	1000,00	0,50	500,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	1000,00	0,00	0,00	266,00	0,00	266,00	0,00	1000,00	0,00	481,00	0,00	
+gr1_2_v500_c500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v500_c500_b_l2_0.ivml	REASONING	7	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	1000,00	0,50	500,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	1000,00	0,00	0,00	266,00	0,00	266,00	15,00	1000,00	15,00	481,00	15,00	
+gr1_2_v500_c500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v500_c500_b_l2_0.ivml	REASONING	8	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	1000,00	0,50	500,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	1000,00	0,00	0,00	266,00	0,00	266,00	0,00	1000,00	0,00	481,00	0,00	
+gr1_2_v500_c500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v500_c500_b_l2_0.ivml	REASONING	9	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	1000,00	0,50	500,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	1000,00	16,00	0,00	266,00	0,00	266,00	16,00	1000,00	0,00	481,00	16,00	
+gr1_2_v500_c500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v500_c500_b_l2_0.ivml	REASONING	10	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	1000,00	0,50	500,00	0,00	500,00	500,00	0,00	0,00	500,00	500,00	500,00	1,00	500,00	1000,00	0,00	0,00	266,00	0,00	266,00	0,00	1000,00	0,00	481,00	0,00	
+gr1_2_v1000_c1000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1000_c1000_b_l2_0.ivml	REASONING	1	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	2000,00	0,50	1000,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	2000,00	0,00	0,00	504,00	0,00	504,00	0,00	2000,00	0,00	951,00	0,00	
+gr1_2_v1000_c1000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1000_c1000_b_l2_0.ivml	REASONING	2	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	2000,00	0,50	1000,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	2000,00	0,00	0,00	504,00	0,00	504,00	15,00	2000,00	15,00	951,00	15,00	
+gr1_2_v1000_c1000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1000_c1000_b_l2_0.ivml	REASONING	3	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	2000,00	0,50	1000,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	2000,00	16,00	0,00	504,00	0,00	504,00	16,00	2000,00	0,00	951,00	16,00	
+gr1_2_v1000_c1000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1000_c1000_b_l2_0.ivml	REASONING	4	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	2000,00	0,50	1000,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	2000,00	16,00	0,00	504,00	0,00	504,00	16,00	2000,00	0,00	951,00	16,00	
+gr1_2_v1000_c1000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1000_c1000_b_l2_0.ivml	REASONING	5	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	2000,00	0,50	1000,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	2000,00	15,00	0,00	504,00	0,00	504,00	15,00	2000,00	0,00	951,00	15,00	
+gr1_2_v1000_c1000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1000_c1000_b_l2_0.ivml	REASONING	6	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	2000,00	0,50	1000,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	2000,00	0,00	0,00	504,00	0,00	504,00	0,00	2000,00	0,00	951,00	0,00	
+gr1_2_v1000_c1000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1000_c1000_b_l2_0.ivml	REASONING	7	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	2000,00	0,50	1000,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	2000,00	0,00	0,00	504,00	0,00	504,00	0,00	2000,00	0,00	951,00	0,00	
+gr1_2_v1000_c1000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1000_c1000_b_l2_0.ivml	REASONING	8	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	2000,00	0,50	1000,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	2000,00	0,00	0,00	504,00	0,00	504,00	15,00	2000,00	15,00	951,00	15,00	
+gr1_2_v1000_c1000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1000_c1000_b_l2_0.ivml	REASONING	9	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	2000,00	0,50	1000,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	2000,00	16,00	0,00	504,00	0,00	504,00	16,00	2000,00	0,00	951,00	16,00	
+gr1_2_v1000_c1000_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1000_c1000_b_l2_0.ivml	REASONING	10	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	2000,00	0,50	1000,00	0,00	1000,00	1000,00	0,00	0,00	1000,00	1000,00	1000,00	1,00	1000,00	2000,00	16,00	0,00	504,00	0,00	504,00	16,00	2000,00	0,00	951,00	16,00	
+gr1_2_v1500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1500_c1500_b_l2_0.ivml	REASONING	1	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	3000,00	0,50	1500,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	3000,00	15,00	0,00	739,00	0,00	739,00	15,00	3000,00	0,00	1419,00	15,00	
+gr1_2_v1500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1500_c1500_b_l2_0.ivml	REASONING	2	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	3000,00	0,50	1500,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	3000,00	16,00	0,00	739,00	0,00	739,00	16,00	3000,00	0,00	1419,00	16,00	
+gr1_2_v1500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1500_c1500_b_l2_0.ivml	REASONING	3	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	3000,00	0,50	1500,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	3000,00	0,00	0,00	739,00	0,00	739,00	16,00	3000,00	16,00	1419,00	16,00	
+gr1_2_v1500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1500_c1500_b_l2_0.ivml	REASONING	4	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	3000,00	0,50	1500,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	3000,00	0,00	0,00	739,00	0,00	739,00	15,00	3000,00	15,00	1419,00	15,00	
+gr1_2_v1500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1500_c1500_b_l2_0.ivml	REASONING	5	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	3000,00	0,50	1500,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	3000,00	15,00	0,00	739,00	0,00	739,00	15,00	3000,00	0,00	1419,00	15,00	
+gr1_2_v1500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1500_c1500_b_l2_0.ivml	REASONING	6	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	3000,00	0,50	1500,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	3000,00	16,00	0,00	739,00	0,00	739,00	16,00	3000,00	0,00	1419,00	16,00	
+gr1_2_v1500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1500_c1500_b_l2_0.ivml	REASONING	7	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	3000,00	0,50	1500,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	3000,00	0,00	0,00	739,00	0,00	739,00	16,00	3000,00	16,00	1419,00	16,00	
+gr1_2_v1500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1500_c1500_b_l2_0.ivml	REASONING	8	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	3000,00	0,50	1500,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	3000,00	0,00	0,00	739,00	0,00	739,00	15,00	3000,00	15,00	1419,00	15,00	
+gr1_2_v1500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1500_c1500_b_l2_0.ivml	REASONING	9	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	3000,00	0,50	1500,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	3000,00	16,00	0,00	739,00	0,00	739,00	16,00	3000,00	0,00	1419,00	16,00	
+gr1_2_v1500_c1500_b_l2	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/ssePerformance/gr1_2_v1500_c1500_b_l2_0.ivml	REASONING	10	test.net.ssehub.easy.reasoning.sseReasoner.performance.GeneratedStats.gr12	0,00	3000,00	0,50	1500,00	0,00	1500,00	1500,00	0,00	0,00	1500,00	1500,00	1500,00	1,00	1500,00	3000,00	15,00	0,00	739,00	0,00	739,00	15,00	3000,00	0,00	1419,00	15,00	
+Project_gen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/historyPerformance/d2d_v10_c1_bir_l1_0.ivml	REASONING	1	test.net.ssehub.easy.reasoning.sseReasoner.performance.HistoryStats.historyStatsTest	0,00	13,00	0,27	3,00	0,00	4,00	4,00	6,00	6,00	10,00	10,00	10,00	1,00	10,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	2,00	0,00	
+Project_gen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/historyPerformance/d2d_v10_c1_bir_l1_0.ivml	REASONING	2	test.net.ssehub.easy.reasoning.sseReasoner.performance.HistoryStats.historyStatsTest	0,00	13,00	0,27	3,00	0,00	4,00	4,00	6,00	6,00	10,00	10,00	10,00	1,00	10,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	2,00	0,00	
+Project_gen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/historyPerformance/d2d_v10_c1_bir_l1_0.ivml	REASONING	3	test.net.ssehub.easy.reasoning.sseReasoner.performance.HistoryStats.historyStatsTest	0,00	13,00	0,27	3,00	0,00	4,00	4,00	6,00	6,00	10,00	10,00	10,00	1,00	10,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	2,00	0,00	
+Project_gen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/historyPerformance/d2d_v10_c1_bir_l1_0.ivml	REASONING	4	test.net.ssehub.easy.reasoning.sseReasoner.performance.HistoryStats.historyStatsTest	0,00	13,00	0,27	3,00	0,00	4,00	4,00	6,00	6,00	10,00	10,00	10,00	1,00	10,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	2,00	0,00	
+Project_gen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/historyPerformance/d2d_v10_c1_bir_l1_0.ivml	REASONING	5	test.net.ssehub.easy.reasoning.sseReasoner.performance.HistoryStats.historyStatsTest	0,00	13,00	0,27	3,00	0,00	4,00	4,00	6,00	6,00	10,00	10,00	10,00	1,00	10,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	2,00	0,00	
+Project_gen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/historyPerformance/d2d_v10_c1_bir_l1_0.ivml	REASONING	6	test.net.ssehub.easy.reasoning.sseReasoner.performance.HistoryStats.historyStatsTest	0,00	13,00	0,27	3,00	0,00	4,00	4,00	6,00	6,00	10,00	10,00	10,00	1,00	10,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	2,00	0,00	
+Project_gen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/historyPerformance/d2d_v10_c1_bir_l1_0.ivml	REASONING	7	test.net.ssehub.easy.reasoning.sseReasoner.performance.HistoryStats.historyStatsTest	0,00	13,00	0,27	3,00	0,00	4,00	4,00	6,00	6,00	10,00	10,00	10,00	1,00	10,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	2,00	0,00	
+Project_gen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/historyPerformance/d2d_v10_c1_bir_l1_0.ivml	REASONING	8	test.net.ssehub.easy.reasoning.sseReasoner.performance.HistoryStats.historyStatsTest	0,00	13,00	0,27	3,00	0,00	4,00	4,00	6,00	6,00	10,00	10,00	10,00	1,00	10,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	2,00	0,00	
+Project_gen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/historyPerformance/d2d_v10_c1_bir_l1_0.ivml	REASONING	9	test.net.ssehub.easy.reasoning.sseReasoner.performance.HistoryStats.historyStatsTest	0,00	13,00	0,27	3,00	0,00	4,00	4,00	6,00	6,00	10,00	10,00	10,00	1,00	10,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	2,00	0,00	
+Project_gen	file:/W:/offlineFiles/git/EASyProducer/EASyProducer/Plugins/Reasoner/ReasonerCore/ReasonerCore.test/testdata/historyPerformance/d2d_v10_c1_bir_l1_0.ivml	REASONING	10	test.net.ssehub.easy.reasoning.sseReasoner.performance.HistoryStats.historyStatsTest	0,00	13,00	0,27	3,00	0,00	4,00	4,00	6,00	6,00	10,00	10,00	10,00	1,00	10,00	11,00	0,00	0,00	0,00	0,00	0,00	0,00	11,00	0,00	2,00	0,00	
Index: /reasoner/notation.tex
===================================================================
--- /reasoner/notation.tex	(revision 277)
+++ /reasoner/notation.tex	(revision 278)
@@ -129,4 +129,6 @@
 returns for model element $e$ and containing scopes the innermost annotation declaration with name $n$.
 
+In specific cases, we must also construct a project on-the-fly. We use $p \assng \newInstance{Project}{}$ to denote the creation of the new project instance (similarly for other concepts) and $add(p, v)$ to add something, here a variable $v$, to the project. 
+
 Following Section \ref{sectNotationConfigVars}, a configuration $cfg$ and its defining project $p$ are related by $p = project(cfg)$. Please note that multiple (different) configurations for the same project can exist, while in terms of IVML a configuration is typically defined through at least one own project scope.
 %
@@ -150,5 +152,5 @@
 %Similarly, we denote creating a constraint originating from a constraint variable by `$c$', e.g., $b \assng \createConstraintConstraint{\IVML{assign}(x, 25)}$ for which $\isConstraintConstraint{b} = true$ holds.
 
-Often, constraints cannot be created in a single step, i.e., a constraint must be created iteratively from sub-expressions. To indicate this, we denote the creation of an expression by $\createExpression{expr}$, e.g., $\createExpression{\IVML{add}(x, 25)}$ for the IVML expression \IVML{x + 25}. When creating container (iterator) expressions incrementally, also a notation for creating a temporary (local) IVML variable is needed. We state the creation of such a variable by $\IVMLMeta{var}(t)$ and indicate thereby the creation of a local variable\footnote{We don't care for the variable name in this report.} of type $t$. For a variable $v=\IVMLMeta{var}(t)$, $isLocal(v) = true$ holds. 
+Often, constraints cannot be created in a single step, i.e., a constraint must be created iteratively from sub-expressions. To indicate this, we denote the creation of an expression by $\createExpression{expr}$, e.g., $\createExpression{\IVML{add}(x, 25)}$ for the IVML expression \IVML{x + 25}. When creating container (iterator) expressions incrementally, also a notation for creating a temporary (local) IVML variable is needed. We state the creation of such a variable by $\IVMLMeta{var}(t)$ and indicate thereby the creation of a local variable\footnote{We don't care for the variable name in this report.} of type $t$. For a variable $v=\IVMLMeta{var}(t)$, $isLocal(v) = true$ holds. If we need an expression representing an (empty) default value for a certain type $t$, we denote $\createExpression{\IVMLMeta{val}(t)}$.
 
 Before reasoning over the constraints given in an IVML project, several kinds of constraints must be transformed, in particular to instantiate constraints defined for types through qualifying access expressions based on top-level variables. To provide an overview of the transformations performed by an algorithm, we use constraint transformation patterns. The algorithm then applies constraint and expression creations as well as variable substitutions to realize the respective transformations. 
Index: /reasoner/reasoner.tex
===================================================================
--- /reasoner/reasoner.tex	(revision 277)
+++ /reasoner/reasoner.tex	(revision 278)
@@ -43,4 +43,5 @@
 \newcommand\setSepText[0]{colon }
 \newcommand\seq[1]{[#1]}
+\newcommand\newInstance[2]{\IVMLMeta{new}\ #1(#2)}
 \newcommand\emptySeq[0]{\seq{\text{ }}}
 \newcommand\seqWith[2]{[#1:#2]}
@@ -90,4 +91,5 @@
 \input{consTranslation}
 \input{consRescheduling}
+\input{valueCreation}
 \input{ivmlCompleteness}
 \input{performance}
Index: /reasoner/valueCreation.tex
===================================================================
--- /reasoner/valueCreation.tex	(revision 278)
+++ /reasoner/valueCreation.tex	(revision 278)
@@ -0,0 +1,60 @@
+\section{On-demand Value Derivation}\label{sectValueCreation}
+
+Some use cases require the creation and assignment of configuration values after reasoning for a configuration has been completed. One particular use case is runtime adaptation, where IVML can be used to store and drive the adaptation~\cite{Eichelberger16, Eichelberger18, QMD42, QMD43, QMD44}. 
+
+In an IVML configuration, certain variables may not be frozen, e.g., through annotations. A runtime decision making mechanism can then trigger the modification of these variables to enable adaptive behavior. While some variables may have already a value assigned, others may have not and so initial values must be derived and assigned on demand. As discussed in Sections \ref{sectReasoning} and \ref{sectTranslation}, default values and constraints must be considered to derive the correct value for a variable. The actual value and, in particular the values of annotations, can then be used to correctly freeze the variable in the actual context. During the derivation of the initial value, constraints can modify annotation values and, thus, control freezing in detail. As a consequence, simply creating a value for a variable does in general not lead to a complete and correct value.
+
+\begin{algorithm}[H]
+  \SetAlgoLined
+  \KwIn{configuration $cfg$, declaration $d$, type $t$}
+%  \KwData{variable mapping $\variableMapping$, default (deferred) constraints $\defaultConstraints$ and $\deferredDefaultConstraints$, incremental flag $inc$}
+  \KwOut{value creation result $r$}
+  $r \assng \undef; t \assng \closedCases{type(d), & \text{if } d \neq \undef \\ t, &\text{else}}$\; \label{algCreateValueInit}
+  \If{$t \neq \undef$} { \label{algCreateValueMainStart}
+     $dflt \assng \createExpression{\IVMLMeta{val}(t)}$\; \label{algCreateValueProjectStart}\label{algCreateValueDfltEx}
+     $p \assng \newInstance{Project}{}$\;\label{algCreateValueTmpPrj}
+      \uIf{$d \neq \undef$} {\label{algCreateValueByVarStart}
+          $add(p, d)$\; \label{algCreateValueByVarAdd}
+          $d_a \assng d$\; \label{algCreateValueByVarActive}
+          \uIf{$default(d) = \undef$} {\label{algCreateValueByVarDefltStart}
+              $add(p, \createConstraint{\IVMLMeta{assng}(d, dflt)})$\; 
+          }\label{algCreateValueByVarDefltEnd}
+         $addConstraintsToProject(d, project(cfg), p)$\;\label{algCreateValueByVarEnd}\label{algCreateValueByVarAddRelated}
+      } \uElse {\label{algCreateValueByTypeStart}
+          $d_a \assng \IVMLMeta{var}(t)$\;\label{algCreateValueByTypeVar}
+          $add(p, d_a)$\;\label{algCreateValueByTypeAdd}
+          $setValue(d_a, dflt)$\;\label{algCreateValueByTypeDeflt}
+      } \label{algCreateValueProjectEnd}\label{algCreateValueByTypeEnd}
+      $c \assng \newInstance{Configuration}{p}$\; \label{algCreateValueCfgStart}
+      \ForAll{$v \iterAssng c$}{ \label{algCreateValueCfgTakeOverStart}
+          \uIf{$decl(v) \neq d_a$}{
+              $setValue(v, value(decision(cfg, decl(v))))$\;
+          }
+      }\label{algCreateValueCfgEnd}\label{algCreateValueCfgTakeOverEnd}
+      $s \assng resolve(c)$\; \label{algCreateValuePropagate}
+      $w \assng decision(c, d_a)$\; \label{algCreateValueResultStart}
+      \If{$\neg hasConflict(s) \wedge w \neq \undef \wedge value(w) \neq \undef$}{
+          $r \assng createValueCreationResult(w)$\;
+      }\label{algCreateValueResultEnd}
+   } \label{algCreateValueMainEnd}
+  \If{$r = \undef$} { \label{algCreateValueFallbackStart}
+      $r \assng createValueCreationResult(d, t)$\;
+  } \label{algCreateValueFallbackEnd}
+
+ \caption{Creating on-demand values through reasoning (\IVML{createValue}).}\label{algCreateValue}
+\end{algorithm}
+
+Algorithm \ref{algCreateValue} details the on-demand value creation. At a glance, it would be sufficient to inject a new default value into the configuration and to run the reasoner. However, for large projects this may imply a certain overhead as well as reasoning over constraints that currently cannot be fulfilled at that point in time, e.g., as further required values will be created afterwards in a sequence. Thus, the idea of this algorithm is to create a temporary configuration including all relevant variables, constraints and values and to reason on the temporary configuration. The result must then be enacted on $cfg$ by the caller (as $cfg$ also shall not be modified by Algorithm \ref{algCreateValue}).
+
+Algorithm \ref{algCreateValue} receives the configuration $cfg$ denoting the context for the value creation as well as a specification for what the value shall be created, either for the variable declaration $d$ or for the specific type $t$. If a variable declaration $d$ is given, it takes precedence over $t$ (line \ref{algCreateValueInit}) and also indicates additional constraints in addition to those implied by $t$ constituting the context. If a type is given, Algorithm \ref{algCreateValue} tries to derive a value using the reasoner (lines \ref{algCreateValueMainStart}-\ref{algCreateValueMainEnd}). If this is not possible or no type was specified, either an error ($\undef$ as value) or a default value based on $\createExpression{\IVMLMeta{val}(t)}$ is created as fallback (lines \ref{algCreateValueFallbackStart}-\ref{algCreateValueFallbackEnd}). Thereby, $createValueCreationResult$ creates a data structure containing the (temporary) variable holding the value as well as observed errors and warnings that occurred during the value creation (not detailed here).
+
+In the reasoning-based value creation (lines \ref{algCreateValueMainStart}-\ref{algCreateValueMainEnd}), Algorithm \ref{algCreateValue} creates a temporary project $p$ dependent on whether $d$ or $t$ shall be used (lines \ref{algCreateValueProjectStart}-\ref{algCreateValueProjectEnd}), a temporary configuration $c$ for $p$ including known values from $cfg$ (lines \ref{algCreateValueCfgStart}-\ref{algCreateValueCfgEnd}), executes the reasoning process on $c$ via Algorithm \ref{algMainLoop} (line \ref{algCreateValuePropagate}) and assembles the result (lines \ref{algCreateValueResultStart}-\ref{algCreateValueResultEnd}).
+
+For creating the temporary project $p$, Algorithm \ref{algCreateValue} creates in line \ref{algCreateValueDfltEx} an expression holding the empty default value for the target type $t$ as well as the temporary project $p$ itself (line \ref{algCreateValueTmpPrj}). 
+\begin{itemize}
+\item If a variable declaration $d$ is available (lines \ref{algCreateValueByVarStart}-\ref{algCreateValueByVarEnd}), Algorithm \ref{algCreateValue} reuses $d$ by adding it to $p$ (line \ref{algCreateValueByVarAdd}), marks $d$ as active declaration $d_a$ (line \ref{algCreateValueByVarActive}) and creates a constraint assigning a default value if needed (lines \ref{algCreateValueByVarDefltStart}-\ref{algCreateValueByVarDefltEnd}). Then it adds all constraints related to $d$ to the temporary project $p$ to build up the required context. Therefore, all transitively related variables and constraints must also be added. This happens in line \ref{algCreateValueByVarAddRelated} in terms of $addConstraintsToProject$\footnote{We do not detail this algorithm here.}, which realizes a traversal of $project(cfg)$, adding imports, related variables and constraints as long as no further traversals are needed. 
+
+\item If only type $t$ is specified, the context will just consist of the related types and the constraints directly assigned to these types. As just a type is given, Algorithm \ref{algCreateValue} creates a temporary variable declaration of type $t$ and stores it as active (line \ref{algCreateValueByTypeVar}). Then it adds $d_a$ to the temporary project $p$ (line \ref{algCreateValueByTypeAdd}) and sets the default value expression (line \ref{algCreateValueByTypeDeflt}). In contrast to lines \ref{algCreateValueByVarDefltStart}-\ref{algCreateValueByVarDefltEnd} we can set the default value expression directly here, as the variable declaration is temporary. Above in lines \ref{algCreateValueByVarDefltStart}-\ref{algCreateValueByVarDefltEnd}, we reused an existing variable declaration and setting the default would unintentionally alter the underlying model.
+\end{itemize}
+
+Based on the respectively created project $p$, Algorithm \ref{algCreateValue} creates in line \ref{algCreateValueCfgStart} a temporary configuration and completes in lines \ref{algCreateValueCfgTakeOverStart}-\ref{algCreateValueCfgTakeOverEnd} the context by taking over the values of all variables from $cfg$ except for $d_a$ for which we want to derive a value. This focused temporary configuration is passed in line \ref{algCreateValuePropagate} into the main reasoning loop, which evaluates all given constraints and derives the correct default value for $d_a$. If the reasoning did not lead to conflicts and a value has been derived, this variable/value is taken over as result (lines \ref{algCreateValueResultStart}-\ref{algCreateValueResultEnd}). Otherwise, as explained above, the fallback in lines \ref{algCreateValueFallbackStart}-\ref{algCreateValueFallbackEnd} determines a default initial value.
