1
0
Fork 0

Removed another unnecessary abs() call

pull/7457/head
Markus Staab 2018-07-10 20:59:39 +02:00 committed by GitHub
parent 0e16dbabde
commit 42516901f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ class Solver
$literals = $rule->getLiterals();
$literal = $literals[0];
if (!$this->decisions->decided(abs($literal))) {
if (!$this->decisions->decided($literal)) {
$this->decisions->decide($literal, 1, $rule);
continue;
}