Skip to content

Commit a4a6183

Browse files
committed
Merge branch 'esecfse22' into main
2 parents ed52299 + 94d3e4d commit a4a6183

5 files changed

Lines changed: 11 additions & 16 deletions

File tree

.run/DiffTreeMiner.run.xml

Lines changed: 0 additions & 9 deletions
This file was deleted.

.run/GenAutomationResults.run.xml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
<component name="ProjectRunConfigurationManager">
22
<configuration default="false" name="GenAutomationResults" type="Application" factoryName="Application">
3+
<option name="ALTERNATIVE_JRE_PATH" value="openjdk-16" />
4+
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="true" />
35
<option name="MAIN_CLASS_NAME" value="org.variantsync.diffdetective.validation.FindMedianCommitTime" />
4-
<module name="DiffDetective" />
5-
<option name="PROGRAM_PARAMETERS" value="results/difftrees" />
6+
<module name="diffdetective" />
7+
<option name="PROGRAM_PARAMETERS" value="results/validation/current" />
68
<extension name="coverage">
79
<pattern>
810
<option name="PATTERN" value="mining.*" />

.run/GenUltimateResults.run.xml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
<component name="ProjectRunConfigurationManager">
22
<configuration default="false" name="GenUltimateResults" type="Application" factoryName="Application">
3+
<option name="ALTERNATIVE_JRE_PATH" value="openjdk-16" />
4+
<option name="ALTERNATIVE_JRE_PATH_ENABLED" value="true" />
35
<option name="MAIN_CLASS_NAME" value="org.variantsync.diffdetective.tablegen.MiningResultAccumulator" />
4-
<module name="DiffDetective" />
5-
<option name="PROGRAM_PARAMETERS" value="results/difftrees results/difftrees/" />
6+
<module name="diffdetective" />
7+
<option name="PROGRAM_PARAMETERS" value="results/validation/current results/validation/current" />
68
<extension name="coverage">
79
<pattern>
810
<option name="PATTERN" value="mining.*" />

.run/Validation.run.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<component name="ProjectRunConfigurationManager">
22
<configuration default="false" name="Validation" type="Application" factoryName="Application" nameIsGenerated="true">
33
<option name="MAIN_CLASS_NAME" value="org.variantsync.diffdetective.validation.Validation" />
4-
<module name="DiffDetective" />
4+
<module name="diffdetective" />
55
<method v="2">
66
<option name="Make" enabled="true" />
77
</method>

src/main/java/org/variantsync/diffdetective/tablegen/styles/ShortTable.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ private static List<ColumnDefinition> columns(final ShortTable t, final TriFunct
9696
}
9797

9898
cols.add(col("runtime", DASH_RIGHT, row -> t.makeReadable(row.results().runtimeInSeconds) + "s"));
99-
cols.add(col("avg. runtime per\\\\ processed commit", RIGHT, row -> t.makeReadable(row.automationResult().avgTimeMS()) + "ms"));
100-
cols.add(col("median runtime per\\\\ processed commit", RIGHT, row -> t.makeReadable(row.automationResult().median().milliseconds()) + "ms"));
99+
cols.add(col("avg. runtime~/\\\\ processed commit", RIGHT, row -> t.makeReadable(row.automationResult().avgTimeMS()) + "ms"));
100+
cols.add(col("median runtime~/\\\\ processed commit", RIGHT, row -> t.makeReadable(row.automationResult().median().milliseconds()) + "ms"));
101101

102102
return cols;
103103
}

0 commit comments

Comments
 (0)