Project updated

This commit is contained in:
Pablo Cingolani 2014-12-19 09:59:25 -05:00
parent 245e2bb2b9
commit f53f231eb6
5 changed files with 1 additions and 5 deletions

View File

@ -71,9 +71,6 @@ public class FunctionBlock extends FclObject implements Iterable<RuleBlock>, Com
/**
* Create a defuzzifier based on defuziffier's name and a variable
* @param defuzzificationMethodType
* @param variable
* @return
*/
protected Defuzzifier createDefuzzifier(String defuzzificationMethodType, Variable variable) {
Defuzzifier defuzzifier;

View File

@ -43,8 +43,7 @@ public class Variable extends FclObject implements Comparable<Variable>, Iterabl
}
/**
* Default constructor
* @param name : Variable's name
* Constructor
*/
public Variable(String name, double universeMin, double universeMax) {
if (name == null) throw new RuntimeException("Variable's name can't be null");