cabal-version: 2.4 name: fuzzySets version: 1.0.0 category: Math license: BSD-3-Clause author: Lukas Balog maintainer: Lukas Balog homepage: https://github.com/luckyluke66/L-Sets synopsis: Library for constructing and manipulating fuzzy sets and fuzzy relations. description: In mathematics Fuzzy Set is a generalization of standart set In set elements can either belong to that set or not. When it comes to fuzzy sets, elements belong to a fuzzy set in a degree. This package provide functions for working with fuzzy sets and fuzzy relations. extra-source-files: CHANGELOG.md source-repository head type: git location: https://github.com/luckyluke66/L-Sets library default-language: Haskell2010 hs-source-dirs: src exposed-modules: FuzzySet Fuzzy.Sets.LSet Fuzzy.Sets.MembershipFunctions Fuzzy.Sets.Cardinality Fuzzy.Sets.Properties Fuzzy.Relations.LRelation Fuzzy.Relations.MembershipFunctions Fuzzy.Relations.RelationComposition Fuzzy.Relations.Properties Lattices.ResiduatedLattice Lattices.UnitInterval Lattices.UnitIntervalStructures.Godel Lattices.UnitIntervalStructures.Lukasiewicz Lattices.UnitIntervalStructures.Product other-modules: Utils.Utils build-depends: base >=4.14 && < 4.17, default-extensions: InstanceSigs MultiParamTypeClasses FlexibleContexts FlexibleInstances FunctionalDependencies test-suite test type: exitcode-stdio-1.0 main-is: Tests.hs hs-source-dirs: test default-language: Haskell2010 build-depends: base, HUnit, tasty, tasty-hunit, fuzzySets, other-modules: UnitIntervalStructuresTest Utils.Utils Fuzzy.Sets.LSetTest Fuzzy.Sets.MembershipFunctionsTest Fuzzy.Sets.PropertiesTest Fuzzy.Relations.LRelationTest Fuzzy.Relations.PropertiesTest