Java: remove extraneous parentheses

This commit is contained in:
Jami Cogswell
2022-12-15 15:26:04 -05:00
parent cfeedb5cb4
commit c33bc63aed

View File

@@ -67,9 +67,9 @@ where
generatedCoverage = generated.(float) / all and
manualCoverage = manual.(float) / all and
// Proportion of manual models covered by generated ones
manualCoveredByGenerated = (both.(float) / (both + manualOnly)) and
manualCoveredByGenerated = both.(float) / (both + manualOnly) and
// Proportion of generated models covered by manual ones
generatedCoveredByManual = (both.(float) / (both + generatedOnly)) and
generatedCoveredByManual = both.(float) / (both + generatedOnly) and
// Proportion of data points that match
match = (both.(float) + non) / all
select package, generatedOnly, both, manualOnly, non, all, coverage, generatedCoverage,