1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 """base class for all fuzzification methods"""
20
21 __revision__ = "$Id: Base.py,v 1.7 2010-10-29 19:24:41 rliebscher Exp $"
22
23
25 """base class for all fuzzification methods"""
26
29
31 """Set value to adjectives of variable.
32
33 @param variable: variable which adjective to set
34 @type variable: L{fuzzy.Variable.Variable}
35 @param variable: value to set the adjectives
36 @type: any
37 """
38 raise NotImplementedError()
39
41 """Return representation of instance.
42
43 @return: representation of instance
44 @rtype: string
45 """
46 return "%s.%s()" % (self.__class__.__module__, self.__class__.__name__)
47