1
0
Fork 0

removing incorrect optimization

pull/1615/head
Shane Auckland 2013-02-25 09:15:25 +00:00
parent c6c521bfae
commit 914a4b32e4
1 changed files with 2 additions and 2 deletions

View File

@ -677,8 +677,8 @@ class Solver
$systemLevel = $level;
}
for ($i = 0, $n = 0, $count = count($this->rules); $n < $count; $i++, $n++) {
if ($i == $count) {
for ($i = 0, $n = 0; $n < count($this->rules); $i++, $n++) {
if ($i == count($this->rules)) {
$i = 0;
}