pyGM: CSPs¶
-
pyGM.csp.
arcConsistent
(csp, updated=None, nvalid=None)[source]¶ Update csp to arc consistency, from changes to updated (default: all)
-
pyGM.csp.
astar
(model, order)[source]¶ Basic A-star search for graphical model ‘model’ using search order ‘order’.
-
pyGM.csp.
backtrack
(model, order)[source]¶ Backtracking search for CSPs. Use GraphModel container of constraint factors and search order ‘order’.
-
pyGM.csp.
backtrackRecurse
(csp, assign)[source]¶ Internal recursive function for backtracking search on CSP given partial assignment
-
pyGM.csp.
backtrackingSearch
(constraints)[source]¶ Backtracking search for list of constraint satisfaction factors. Returns a solution if one exists; None otherwise.
-
pyGM.csp.
backtrackingSearch2
(constraints)[source]¶ Backtracking search for list of constraint satisfaction factors. Returns a solution if one exists; None otherwise.
-
pyGM.csp.
condition
(csp, Xi, xi)[source]¶ Make a copy of the CSP, then assert Xi=xi in that copy & return it
-
pyGM.csp.
consistent
(csp, assign)[source]¶ Return False if CSP known inconsistent; True otherwise. Note: assumes that “assign” has already been incorporated into the CSP
-
pyGM.csp.
generate3SAT
(alpha, n)[source]¶ Generate factors corresponding to a random 3-SAT problem with n variables and alpha*n CNF clauses
-
pyGM.csp.
hillClimbing
(X, objectiveFn, xInit=None, maxSteps=100, maxValue=inf, verbose=False)[source]¶ Basic greedy hill-climbing local search over configurations
-
pyGM.csp.
hillClimbing2
(X, objectiveFn, xInit=None, maxSteps=100, maxValue=inf, verbose=False)[source]¶ Hill climbing local search, but with random walk on plateaus
-
pyGM.csp.
inference
(csp, Xi, xi)[source]¶ Update the CSP after setting Xi=xi, to reduce other variable domains if desired
-
pyGM.csp.
minConflicts
(model, maxSteps=100, verbose=False)[source]¶ Minimum conflicts local search for CSPs
-
pyGM.csp.
nViolated
(factors, x)[source]¶ Evaluate the number of violated constraints in a set of 0/1 factors
-
pyGM.csp.
orderDomainValues
(csp, Xi, assign)[source]¶ Return a sequence of values to test for Xi in CSP with current assignment