Constructor
new AverageGenMatchResult(caseName, algorithm, avgRuntime, avgCommonality, avgMismatchedLeaves, avgMismatchedInners, avgUnmatchedLeaves, avgUnmatchedInners)
Construct a new GenMatchTestResult instance.
Parameters:
Name | Type | Description |
---|---|---|
caseName |
String | The name of the corresponding diff test case. |
algorithm |
String | The name of the algorithm that produced the matching. |
avgRuntime |
Number | The average time (in ms) it took to produced the result. Null indicates failure. |
avgCommonality |
Number | The average avgCommonality between the expected and actual matching as a comparison value. |
avgMismatchedLeaves |
Number | The average number of mismatched leaves. |
avgMismatchedInners |
Number | The average number of mismatched inner nodes. |
avgUnmatchedLeaves |
Number | The average number of leaves that are matched in the expected, but not the actual, matching. |
avgUnmatchedInners |
Number | The average number of inner nodes that are matched in the expected, but not the actual, matching. |
- Source:
- See:
Classes
Members
(constant) algorithm :String
The matching algorithm that produced the match results.
Type:
- String
(constant) avgCommonality :Number
The avgCommonality between the expected and actual matching as a comparison
value.
Type:
- Number
(constant) avgMismatchedInners :Number
The number of mismatched inner nodes.
Type:
- Number
(constant) avgMismatchedLeaves :Number
The number of mismatched leaves.
Type:
- Number
(constant, nullable) avgRuntime :Number
The time (in ms) it took to produced the result. Null indicates failure.
Type:
- Number
(constant) avgUnmatchedInners :Number
The number of inner nodes that are matched in the expected, but not the
actual, matching.
Type:
- Number
(constant) avgUnmatchedLeaves :Number
The number of leaves that are matched in the expected, but not the actual,
matching.
Type:
- Number
(constant) caseName :String
The name of the match test case configuration that was run multiple times.
Type:
- String
Methods
(static) header() → {Array.<String>}
Returns:
The header row for a list of average gen match test
results to use in tables.
- Type
- Array.<String>
(static) of(genMatchResults) → (nullable) {AverageGenMatchResult}
Construct an AverageGenMatchResult instance from a list of gen match test
results pertaining to the same test case configuration. Results that
indicate a timeout or runtime error are ignored during the metric
calculation.
Parameters:
Name | Type | Description |
---|---|---|
genMatchResults |
Array.<GenMatchTestResult> | The list of gen match test results. |
Returns:
Derived metrics for the results. Null if
no valid results were found.
values() → {Array.<String>}
Returns:
The row of values of this result for use in tables.
- Type
- Array.<String>