We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c6bbd3 commit 496dfbbCopy full SHA for 496dfbb
pycona/find_constraint/findc2.py
@@ -93,12 +93,14 @@ def run(self, scope):
93
94
kappaD = [c for c in delta if check_value(c) is False]
95
96
- #scope2 = self.ca.run_find_scope(list(scope), kappaD) # TODO: replace with real findscope arguments when done!
97
-
98
- #if len(scope2) < len(scope):
99
- # self.run(scope2)
100
- #else:
101
- delta = join_con_net(delta, kappaD)
+ scope2 = self.ca.run_find_scope(list(scope))
+
+ if len(scope2) < len(scope):
+ c = self.run(scope2)
+ self.ca.add_to_cl(c)
+ sub_cl.append(c)
102
+ else:
103
+ delta = join_con_net(delta, kappaD)
104
105
def generate_findc_query(self, L, delta):
106
"""
0 commit comments