Merge pull request #331 from naderman/fix-rule-parent-path

Correct the parent path in the watch tree, after moving a rule out of the path
main
Jordi Boggiano 13 years ago
commit 716d9dc80a

@ -1266,7 +1266,7 @@ class Solver
} }
if ($prevRule) { if ($prevRule) {
if ($prevRule->watch1 === $literal->getId()) { if ($prevRule->next1 == $rule) {
$prevRule->next1 = $nextRule; $prevRule->next1 = $nextRule;
} else { } else {
$prevRule->next2 = $nextRule; $prevRule->next2 = $nextRule;
@ -1276,6 +1276,8 @@ class Solver
} }
$this->watches[$ruleLiteral->getId()] = $rule; $this->watches[$ruleLiteral->getId()] = $rule;
$rule = $prevRule;
continue 2; continue 2;
} }
} }
@ -1506,7 +1508,7 @@ class Solver
} }
$why = count($this->learnedPool) - 1; $why = count($this->learnedPool) - 1;
assert($learnedLiterals[0] !== null);
$newRule = new Rule($learnedLiterals, self::RULE_LEARNED, $why); $newRule = new Rule($learnedLiterals, self::RULE_LEARNED, $why);
return array($ruleLevel, $newRule, $why); return array($ruleLevel, $newRule, $why);

Loading…
Cancel
Save