Removed another unnecessary abs() call
parent
e3a23f4ae6
commit
0e16dbabde
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue