We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b021670 commit aaec1c0Copy full SHA for aaec1c0
test/many-valued-logics.jl
@@ -164,6 +164,12 @@ FuzzyLogic(GodelTNorm)
164
MXA = ManyExpertAlgebra(GodelLogic)
165
addexperts!(MXA, LukasiewiczLogic, ProductLogic)
166
167
+@test occursin("Gödel", sprint(show, MXA))
168
+@test occursin("Łukasiewicz", sprint(show, MXA))
169
+@test occursin("Product", sprint(show, MXA))
170
+
171
+@test occursin("+", sprint(show, FuzzyLogic(ContinuousBinaryOperation(+))))
172
173
@test iscrisp(MXA) == false
174
175
@test top(MXA) == ntuple(i -> top(MXA.experts[i]), 3)
0 commit comments