Skip to content

Commit

Permalink
Fix csp import
Browse files Browse the repository at this point in the history
  • Loading branch information
anassinator committed Sep 21, 2016
1 parent 0289395 commit 5b7f5b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion simpleai/search/csp.py
Expand Up @@ -124,7 +124,7 @@ def _backtracking(problem, assignment, domains, variable_chooser, values_sorter,
'''
Internal recursive backtracking algorithm.
'''
from arc import arc_consistency_3
from simpleai.search.arc import arc_consistency_3
if len(assignment) == len(problem.variables):
return assignment

Expand Down

0 comments on commit 5b7f5b7

Please sign in to comment.