Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Open source fuzzy logic library [closed]

Tags:

c++

I need to implement AI for game based on fuzzy logic. I need to evaluate position of tower defense game and I have couple rules and I will add more. Can anyone suggest me some open source fuzzy logic library in c++ or code examples ?

like image 444
Damir Avatar asked Nov 27 '25 06:11

Damir


2 Answers

Free Fuzzy Logic Library (FFLL) ...

http://ffll.sourceforge.net/

like image 131
Andrew Tomazos Avatar answered Nov 28 '25 21:11

Andrew Tomazos


fuzzylite: http://code.google.com/p/fuzzylite/

fuzzylite is a multiplatform, free, and open-source Fuzzy Logic Control Library written in C++ and released under the Apache License 2.0, which makes this software freely available for commercial and non-commercial use. The idea behind this library is to have a very simple and light-weight fuzzy controller. Simple as in simple to use, simple to understand, and simple to extend, without sacrificing performance.

like image 24
Juan Avatar answered Nov 28 '25 21:11

Juan