Class: AverageGenMatchResult

AverageGenMatchResult(caseName, algorithm, avgRuntime, avgCommonality, avgMismatchedLeaves, avgMismatchedInners, avgUnmatchedLeaves, avgUnmatchedInners)

The average of many gen match results.

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

AverageGenMatchResult

Members

(constant) algorithm :String

The matching algorithm that produced the match results.
Type:
  • String
Source:

(constant) avgCommonality :Number

The avgCommonality between the expected and actual matching as a comparison value.
Type:
  • Number
Source:

(constant) avgMismatchedInners :Number

The number of mismatched inner nodes.
Type:
  • Number
Source:

(constant) avgMismatchedLeaves :Number

The number of mismatched leaves.
Type:
  • Number
Source:

(constant, nullable) avgRuntime :Number

The time (in ms) it took to produced the result. Null indicates failure.
Type:
  • Number
Source:

(constant) avgUnmatchedInners :Number

The number of inner nodes that are matched in the expected, but not the actual, matching.
Type:
  • Number
Source:

(constant) avgUnmatchedLeaves :Number

The number of leaves that are matched in the expected, but not the actual, matching.
Type:
  • Number
Source:

(constant) caseName :String

The name of the match test case configuration that was run multiple times.
Type:
  • String
Source:

Methods

(static) header() → {Array.<String>}

Source:
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.
Source:
Returns:
Derived metrics for the results. Null if no valid results were found.
Type
AverageGenMatchResult

values() → {Array.<String>}

Source:
Returns:
The row of values of this result for use in tables.
Type
Array.<String>