Skip to content

Commit 4f127da

Browse files
committed
Merge branch 'master' of github.com:amogorkon/fuzzy
2 parents 9b5f379 + bffc111 commit 4f127da

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2017-2019 Anselm Kiefner
3+
Copyright (c) 2017-2021 Anselm Kiefner
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Fuzzy Logic for Python 3
2-
This is the fourth time I rebuilt this library from scratch to find the sweet spot between ease of use (beautiful is better than ugly!), testability (simple is better than complex!) and potential to optimize for performance (practicality beats purity!).
2+
This is the fourth time I rebuilt this library from scratch to find the sweet spot between ease of use (beautiful is better than ugly!), testability (simple is better than complex!) and potential for performance optimization (practicality beats purity!).
33

44
### Why a new library?
55
The first time I was confronted with fuzzy logic, I fell in love with the concept, but after reading books and checking out libraries etc. I found it frustrating how most people make fuzzy logic appear complicated, hard to handle and incorporate in code.

src/fuzzylogic/classes.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11

22
"""
3-
Domain and Set classes for fuzzy logic.
3+
Domain, Set and Rule classes for fuzzy logic.
44
5-
Primary abstractions for recursive functions for better handling.
5+
Primary abstractions for recursive functions and arrays,
6+
adding logical operaitons for easier handling.
67
"""
78

89
from logging import warn

0 commit comments

Comments
 (0)