@thi.ng/fuzzy 2.1.57 → 2.1.59
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1 -1
- package/README.md +1 -1
- package/package.json +4 -4
- package/strategies/bisector.d.ts +1 -1
- package/strategies/centroid.d.ts +1 -1
- package/strategies/maxima.d.ts +3 -3
- package/tnorms.d.ts +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/fuzzy",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.59",
|
|
4
4
|
"description": "Fuzzy logic operators & configurable rule inferencing engine",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"test": "bun test"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@thi.ng/api": "^8.9.
|
|
39
|
-
"@thi.ng/math": "^5.
|
|
38
|
+
"@thi.ng/api": "^8.9.18",
|
|
39
|
+
"@thi.ng/math": "^5.8.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@microsoft/api-extractor": "^7.39.0",
|
|
@@ -105,5 +105,5 @@
|
|
|
105
105
|
"thi.ng": {
|
|
106
106
|
"year": 2020
|
|
107
107
|
},
|
|
108
|
-
"gitHead": "
|
|
108
|
+
"gitHead": "7426e2ae6fca5482c6eaf649872296fc89955374\n"
|
|
109
109
|
}
|
package/strategies/bisector.d.ts
CHANGED
package/strategies/centroid.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ import type { DefuzzStrategy, DefuzzStrategyOpts } from "../api.js";
|
|
|
9
9
|
* to {@link bisectorStrategy}, but with lower computational cost. Use `samples`
|
|
10
10
|
* option to adjust precision.
|
|
11
11
|
*
|
|
12
|
-
*
|
|
12
|
+
* Also see {@link DefuzzStrategyOpts}
|
|
13
13
|
*
|
|
14
14
|
* @example
|
|
15
15
|
* ```ts
|
package/strategies/maxima.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import type { DefuzzStrategy, DefuzzStrategyOpts } from "../api.js";
|
|
|
6
6
|
* @remarks
|
|
7
7
|
* Use `samples` option to adjust precision.
|
|
8
8
|
*
|
|
9
|
-
*
|
|
9
|
+
* Also see {@link DefuzzStrategyOpts}
|
|
10
10
|
*
|
|
11
11
|
* @example
|
|
12
12
|
* ```ts
|
|
@@ -35,7 +35,7 @@ export declare const meanOfMaximaStrategy: (opts?: Partial<DefuzzStrategyOpts>)
|
|
|
35
35
|
* @remarks
|
|
36
36
|
* Use `samples` option to adjust precision.
|
|
37
37
|
*
|
|
38
|
-
*
|
|
38
|
+
* Also see {@link DefuzzStrategyOpts}
|
|
39
39
|
*
|
|
40
40
|
* @example
|
|
41
41
|
* ```ts
|
|
@@ -64,7 +64,7 @@ export declare const firstOfMaximaStrategy: (opts?: Partial<DefuzzStrategyOpts>)
|
|
|
64
64
|
* @remarks
|
|
65
65
|
* Use `samples` option to adjust precision.
|
|
66
66
|
*
|
|
67
|
-
*
|
|
67
|
+
* Also see {@link DefuzzStrategyOpts}
|
|
68
68
|
*
|
|
69
69
|
* @example
|
|
70
70
|
* ```ts
|
package/tnorms.d.ts
CHANGED
|
@@ -83,7 +83,7 @@ export declare const snormNilpotent: FnN2;
|
|
|
83
83
|
export declare const snormEinstein: FnN2;
|
|
84
84
|
/**
|
|
85
85
|
* HOF t-norm. Constructs a new t-norm based on given t-norms for disjoint
|
|
86
|
-
* subintervals, completing remaining regions via {@link
|
|
86
|
+
* subintervals, completing remaining regions via {@link tnormMin}.
|
|
87
87
|
*
|
|
88
88
|
* @remarks
|
|
89
89
|
* Reference: https://en.wikipedia.org/wiki/Construction_of_t-norms#Ordinal_sums
|