Import dnet-pace-core module in this project and use it after renaming to dhp-pace-core #319

Merged
giambattista.bloisi merged 198 commits from beta_with_pace_core into beta 2023-07-11 14:03:15 +02:00
1 changed files with 4 additions and 0 deletions
Showing only changes of commit f2bc665403 - Show all commits

View File

@ -43,6 +43,10 @@ public class PidMatch extends AbstractCondition {
int incommon = Sets.intersection(pidAset, pidBset).size();
int simDiff = Sets.symmetricDifference(pidAset, pidBset).size();
if (incommon + simDiff == 0) {
return new ConditionEval(cond, a, b, 0);
}
int result = incommon / (incommon + simDiff) > 0.5 ? 1 : -1;
return new ConditionEval(cond, a, b, result);