We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change the X argument to be csp instead, in the call to TOPOLOGICALSORT, giving :
X
csp
TOPOLOGICALSORT(csp, root)
As at a minimum information about the constraints the variables are involved with are required to perform the sort.
In addition, add csp as an argument to MAKE-ARC-CONSISTENT, i.e.:
MAKE-ARC-CONSISTENT(csp, PARENT(Xj), Xj)
As again, its necessary to have all of the information on the CSP to determine consistency.
The text was updated successfully, but these errors were encountered:
Fixes aimacode#33 for Tree CSP solver.
f921c85
No branches or pull requests
Change the
X
argument to becsp
instead, in the call to TOPOLOGICALSORT, giving :TOPOLOGICALSORT(csp, root)
As at a minimum information about the constraints the variables are involved with are required to perform the sort.
In addition, add
csp
as an argument to MAKE-ARC-CONSISTENT, i.e.:MAKE-ARC-CONSISTENT(csp, PARENT(Xj), Xj)
As again, its necessary to have all of the information on the CSP to determine consistency.
The text was updated successfully, but these errors were encountered: