|
FuzzyOperations.java
|
// FILE. . . . . d:/hak/hlt/src/hlt/math/fuzzy/FuzzyOperations.java // EDIT BY . . . Hassan Ait-Kaci // ON MACHINE. . Hp-Zbook // STARTED ON. . Wed Mar 28 08:30:29 2018 // Last modified on Sun May 06 08:23:14 2018 by hak package hlt.math.fuzzy;
| This is the interface class for fuzzy operations sup and inf. These default to max and min respectively. |
public interface FuzzyOperations {
| The default sup is max. |
default double sup (double left, double right) { return Math.max(left,right); }
| The default inf is min. |
default double inf (double left, double right) { return Math.min(left,right); } }
This file was generated on Sat Aug 25 09:29:34 CEST 2018 from file FuzzyOperations.java
by the hlt.language.tools.Hilite Java tool written by Hassan Aït-Kaci