Home | Trees | Index | Help |
---|
Module constraint :: Class Problem |
|
object
--+
|
Problem
Method Summary | |
---|---|
| |
Add a constraint to the problem | |
Add a variable to the problem | |
Add one or more variables to the problem | |
dictionary mapping variables to values |
Find and return a solution to the problem |
Return an iterator to the solutions of the problem | |
list of dictionaries mapping variables to values |
Find and return all solutions to the problem |
instance of a Solver subclass
|
Obtain the problem solver currently in use |
Reset the current problem definition | |
Change the problem solver currently in use | |
_getArgs(self)
| |
Inherited from object | |
x.__delattr__('name') <==> del x.name | |
x.__getattribute__('name') <==> x.name | |
x.__hash__() <==> hash(x) | |
T.__new__(S, ...) -> a new object with type S, a subtype of T | |
helper for pickle | |
helper for pickle | |
x.__repr__() <==> repr(x) | |
x.__setattr__('name', value) <==> x.name = value | |
x.__str__() <==> str(x) |
Method Details |
---|
__init__(self,
solver=None)
|
addConstraint(self, constraint, variables=None)Add a constraint to the problem Example:
>>> problem = Problem()
>>> problem.addVariables(["a", "b"], [1, 2, 3])
>>> problem.addConstraint(lambda a, b: b == a+1, ["a", "b"])
>>> solutions = problem.getSolutions()
>>>
|
addVariable(self, variable, domain)Add a variable to the problem Example:>>> problem = Problem() >>> problem.addVariable("a", [1, 2]) >>> problem.getSolution() in ({'a': 1}, {'a': 2}) True
|
addVariables(self, variables, domain)Add one or more variables to the problem Example:>>> problem = Problem() >>> problem.addVariables(["a", "b"], [1, 2, 3]) >>> solutions = problem.getSolutions() >>> len(solutions) 9 >>> {'a': 3, 'b': 1} in solutions True
|
getSolution(self)Find and return a solution to the problem Example:>>> problem = Problem() >>> problem.getSolution() is None True >>> problem.addVariables(["a"], [42]) >>> problem.getSolution() {'a': 42}
|
getSolutionIter(self)Return an iterator to the solutions of the problem Example:>>> problem = Problem() >>> list(problem.getSolutionIter()) == [] True >>> problem.addVariables(["a"], [42]) >>> iter = problem.getSolutionIter() >>> iter.next() {'a': 42} >>> iter.next() Traceback (most recent call last): File "<stdin>", line 1, in ? StopIteration |
getSolutions(self)Find and return all solutions to the problem Example:>>> problem = Problem() >>> problem.getSolutions() == [] True >>> problem.addVariables(["a"], [42]) >>> problem.getSolutions() [{'a': 42}]
|
getSolver(self)Obtain the problem solver currently in use Example:>>> solver = BacktrackingSolver() >>> problem = Problem(solver) >>> problem.getSolver() is solver True
|
reset(self)Reset the current problem definition Example:
>>> problem = Problem()
>>> problem.addVariable("a", [1, 2])
>>> problem.reset()
>>> problem.getSolution()
>>>
|
setSolver(self, solver)Change the problem solver currently in use Example:>>> solver = BacktrackingSolver() >>> problem = Problem(solver) >>> problem.getSolver() is solver True
|
Home | Trees | Index | Help |
---|
Generated by Epydoc 2.1 on Thu Jul 7 02:05:09 2005 | http://epydoc.sf.net |