1
0
Fork 0

Removed another unnecessary abs() call

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

View File

@ -792,7 +792,7 @@ class Solver
//
foreach ($literals as $literal) {
if ($literal <= 0) {
if (!$this->decisions->decidedInstall(abs($literal))) {
if (!$this->decisions->decidedInstall($literal)) {
continue 2; // next rule
}
} else {