forked from p7px8vou9/AI_learning
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
344 B
20 lines
344 B
# This is the solution file for test_cases/q6/3-independent-eliminate-extended.test.
|
|
variableDomainsDict: """
|
|
S : slippery rough
|
|
D : dry wet
|
|
W : sun rain
|
|
T : hot
|
|
"""
|
|
|
|
unconditionedVariables: "W"
|
|
|
|
conditionedVariables: "T"
|
|
|
|
FactorTable: """
|
|
W : sun, T : hot = 0.8
|
|
W : rain, T : hot = 0.2
|
|
"""
|
|
|
|
|
|
callTrackingList: "[('join', 'S'), ('join', 'D')]"
|