pull/75/head
Anton Romanov 2 years ago
parent 5ef8599576
commit c39bc3c6ca

@ -116,7 +116,9 @@ public class FuzzyInferenceService {
if (outputVariable != null) { if (outputVariable != null) {
outputVariable.defuzzify(); outputVariable.defuzzify();
} }
return outputVariable == null ? "" : outputVariable.highestMembership(outputVariable.getValue()).getSecond().getName(); return (outputVariable == null || Double.isNaN(outputVariable.getValue()))
? "Нет рекомендаций"
: outputVariable.highestMembership(outputVariable.getValue()).getSecond().getName();
//return outputVariable == null ? "" : outputVariable.fuzzyOutputValue(); //return outputVariable == null ? "" : outputVariable.fuzzyOutputValue();
} }
} }

Loading…
Cancel
Save