By: Juan Rada-Vilela, Ph.D.
Released: 20/March/2017
License
Introduction
Features
Example
Compile, Link, and Execute
Bulding from Source
Binaries
What's new
What's next
jfuzzylite 6.0
is licensed under the GNU General Public License (GPL) 3.0. You are strongly encouraged to support the development of the FuzzyLite Libraries by purchasing a license of QtFuzzyLite 6
.
QtFuzzyLite 6
is the new and (very likely) the best graphical user interface available to easily design and directly operate fuzzy logic controllers in real time. Available for Windows, Mac, and Linux, its goal is to significantly speed up the design of your fuzzy logic controllers, while providing a very useful, functional and beautiful user interface.
Please, download it and check it out for free at www.fuzzylite.com/downloads/.
jfuzzylite
is a free and open-source fuzzy logic control library programmed in Java for multiple platforms (e.g., Windows, Linux, Mac, Android). fuzzylite
is the equivalent library written in C++ for Windows, Linux, Mac, iOS, and others. Together, they are the FuzzyLite Libraries for Fuzzy Logic Control.
If you are using the FuzzyLite Libraries, please cite the following reference in your article:
Juan Rada-Vilela. fuzzylite: a fuzzy logic control library, 2017. URL http://www.fuzzylite.com/.
@misc{fl::fuzzylite,
author={Juan Rada-Vilela},
title={fuzzylite: a fuzzy logic control library},
url={http://www.fuzzylite.com/},
year={2017}}
The documentation for the fuzzylite
library is available at: www.fuzzylite.com/documentation/.
(6) Controllers: Mamdani, Takagi-Sugeno, Larsen, Tsukamoto, Inverse Tsukamoto, Hybrids
(21) Linguistic terms: (4) Basic: triangle, trapezoid, rectangle, discrete. (9) Extended: bell, cosine, gaussian, gaussian product, pi-shape, sigmoid difference, sigmoid product, spike. (5) Edges: binary, concave, ramp, sigmoid, s-shape, z-shape. (3) Functions: constant, linear, function.
(7) Activation methods: general, proportional, threshold, first, last, lowest, highest.
(8) Conjunction and Implication (T-Norms): minimum, algebraic product, bounded difference, drastic product, einstein product, hamacher product, nilpotent minimum, function.
(10) Disjunction and Aggregation (S-Norms): maximum, algebraic sum, bounded sum, drastic sum, einstein sum, hamacher sum, nilpotent maximum, normalized sum, unbounded sum, function.
(7) Defuzzifiers: (5) Integral: centroid, bisector, smallest of maximum, largest of maximum, mean of maximum. (2) Weighted: weighted average, weighted sum.
(7) Hedges: any, not, extremely, seldom, somewhat, very, function.
(3) Importers: FuzzyLite Language fll
, Fuzzy Inference System fis
, Fuzzy Control Language fcl
.
(7) Exporters: C++
, Java
, FuzzyLite Language fll
, FuzzyLite Dataset fld
, R
script, Fuzzy Inference System fis
, Fuzzy Control Language fcl
.
(30+) Examples of Mamdani, Takagi-Sugeno, Tsukamoto, and Hybrid controllers from fuzzylite
, Octave, and Matlab, each included in the following formats: C++
, Java
, fll
, fld
, R
, fis
, and fcl
.
#File: ObstacleAvoidance.fll
Engine: ObstacleAvoidance
InputVariable: obstacle
enabled: true
range: 0.000 1.000
lock-range: false
term: left Ramp 1.000 0.000
term: right Ramp 0.000 1.000
OutputVariable: mSteer
enabled: true
range: 0.000 1.000
lock-range: false
aggregation: Maximum
defuzzifier: Centroid 100
default: nan
lock-previous: false
term: left Ramp 1.000 0.000
term: right Ramp 0.000 1.000
RuleBlock: mamdani
enabled: true
conjunction: none
disjunction: none
implication: AlgebraicProduct
activation: General
rule: if obstacle is left then mSteer is right
rule: if obstacle is right then mSteer is left
//File: ObstacleAvoidance.java
import com.fuzzylite.*;
public class Example {
public static void main(String[] args){
Engine engine = new FllImporter().fromFile("ObstacleAvoidance.fll");
StringBuilder status = new StringBuilder();
if (! engine.isReady(status))
throw new RuntimeException("[engine error] engine is not ready:\n" + status);
InputVariable obstacle = engine.getInputVariable("obstacle");
OutputVariable steer = engine.getOutputVariable("mSteer");
for (int i = 0; i <= 50; ++i){
double location = obstacle.getMinimum() + i * (obstacle.range() / 50);
obstacle.setValue(location);
engine.process();
FuzzyLite.logger().info(String.format(
"obstacle.input = %s -> steer.output = %s",
Op.str(location), Op.str(steer.getValue())));
}
}
}
//File: ObstacleAvoidance.java
import com.fuzzylite.*;
public class Example {
public static void main(String[] args){
Engine engine = new Engine();
engine.setName("ObstacleAvoidance");
engine.setDescription("");
InputVariable obstacle = new InputVariable();
obstacle.setName("obstacle");
obstacle.setDescription("");
obstacle.setEnabled(true);
obstacle.setRange(0.000, 1.000);
obstacle.setLockValueInRange(false);
obstacle.addTerm(new Ramp("left", 1.000, 0.000));
obstacle.addTerm(new Ramp("right", 0.000, 1.000));
engine.addInputVariable(obstacle);
OutputVariable mSteer = new OutputVariable();
mSteer.setName("mSteer");
mSteer.setDescription("");
mSteer.setEnabled(true);
mSteer.setRange(0.000, 1.000);
mSteer.setLockValueInRange(false);
mSteer.setAggregation(new Maximum());
mSteer.setDefuzzifier(new Centroid(100));
mSteer.setDefaultValue(Double.NaN);
mSteer.setLockPreviousValue(false);
mSteer.addTerm(new Ramp("left", 1.000, 0.000));
mSteer.addTerm(new Ramp("right", 0.000, 1.000));
engine.addOutputVariable(mSteer);
RuleBlock mamdani = new RuleBlock();
mamdani.setName("mamdani");
mamdani.setDescription("");
mamdani.setEnabled(true);
mamdani.setConjunction(null);
mamdani.setDisjunction(null);
mamdani.setImplication(new AlgebraicProduct());
mamdani.setActivation(new General());
mamdani.addRule(Rule.parse("if obstacle is left then mSteer is right", engine));
mamdani.addRule(Rule.parse("if obstacle is right then mSteer is left", engine));
engine.addRuleBlock(mamdani);
StringBuilder status = new StringBuilder();
if (! engine.isReady(status))
throw new RuntimeException("[engine error] engine is not ready:\n" + status);
InputVariable obstacle = engine.getInputVariable("obstacle");
OutputVariable steer = engine.getOutputVariable("mSteer");
for (int i = 0; i <= 50; ++i){
double location = obstacle.getMinimum() + i * (obstacle.range() / 50);
obstacle.setValue(location);
engine.process();
FuzzyLite.logger().info(String.format(
"obstacle.input = %s -> steer.output = %s",
Op.str(location), Op.str(steer.getValue())));
}
}
}
Building from source requires you to have either Maven or Ant installed.
$ mvn install
The Maven script will create the library target/jfuzzylite-6.0.jar
and the source code target/jfuzzylite-6.0-sources.jar
.
$ ant -f build.xml
The Ant script will create the library target/jfuzzylite-6.0.jar
and the source code target/jfuzzylite-6.0-sources.jar
.
The source code of jfuzzylite
is very well documented using doxygen
formatting, and the documentation is available at fuzzylite.com/documentation. If you want to generate the documentation locally, you can produce the html
documentation from the file Doxyfile using the command line: doxygen Doxyfile
. The documentation will be created in the documentation
folder.
The console application of jfuzzylite
allows you to import and export your engines. Its usage can be obtained executing the console binary. In addition, the console can be set in interactive mode. The FuzzyLite Interactive Console
allows you to evaluate a given controller by manually providing the input values. The interactive console is triggered by specifying an input file and an output format. For example, to interact with the ObstacleAvoidance
controller, the interactive console is launched as follows:
java -jar jfuzzylite-6.0.jar -i ObstacleAvoidance.fll -of fld
-
The FuzzyLite Libraries, namely fuzzylite and jfuzzylite, both in version 6.0, are licensed under the GNU General Public License version 3.
-
Important performance improvements.
-
Refactored the following names for the operation of engines: from activation operator to implication operator, from accumulation operator to aggregation operator.
-
Renamed the term
Accumulated
toAggregated
. -
New activation methods decouple the activation of rules from the rule block and provide different methods for activating rules (see Activation Methods).
-
New class
ActivationFactory
provides a factory of activation methods. -
New class
Benchmark
to evaluate the performance and accuracy of engines. -
New class
RScriptExporter
to export the surfaces of an engine using theggplot2
library. -
New class
Binary
term for binary edges. -
New
UnboundedSum
S-Norm inSNormFactory
. -
New classes
SNormFunction
andTNormFunction
to create custom functions on any two values using theFunction
class. -
Added description strings to
Engine
,Variable
andRuleBlock
-
Privatized previously protected members of classes and subclasses of
Term
,Variable
,Rule
,Defuzzifier
,[Cloning|Construction]Factory
,Importer
,Exporter
, amongst others. -
Added some unit tests and support for future unit tests.
-
Bug fixes.
-
New example of hybrid engines.
-
New example on obstacle avoidance for Mamdani, Takagi-Sugeno, and Hybrid engines.
-
New R scripts for each example and its respective surfaces in
pdf
formats.
- Fixed bug computing the
NormalizedSum
S-Norm. - Fixed bug in
Function
term. Bug: given a formula = "tan(y)" and a map["y"] = 1.0, and executingFunction::load(formula)
, then the map of variables is reset becauseload()
callsunload()
first, causing the deregistration of variabley
. Solution: Removed methodunload()
fromload()
, thereby causing futureload()
not to reset variables. - Fixed bug in
Function
when enclosing variable in double parenthesis.
For more information, visit www.fuzzylite.com.
fuzzylite® is a registered trademark of FuzzyLite Limited.
jfuzzylite™ is a trademark of FuzzyLite Limited.
Copyright © 2010-2017 FuzzyLite Limited. All rights reserved.