mirror of
https://github.com/furyfire/trueskill.git
synced 2025-03-29 04:13:22 +00:00
More debugging name cleanups along with a few reference tweaks. Next up: fixing the schedule and running it
This commit is contained in:
@ -85,7 +85,7 @@ abstract class Factor
|
||||
$index = count($this->_messages);
|
||||
$this->_messages[] = $message;
|
||||
$this->_messageToVariableBinding->setValue($message, $variable);
|
||||
$this->_variables[] = &$variable;
|
||||
$this->_variables[] = $variable;
|
||||
return $message;
|
||||
}
|
||||
|
||||
|
@ -43,9 +43,9 @@ abstract class FactorGraphLayer
|
||||
$this->_inputVariablesGroups = $value;
|
||||
}
|
||||
|
||||
protected function scheduleSequence(&$itemsToSequence)
|
||||
protected function scheduleSequence(&$itemsToSequence, $name)
|
||||
{
|
||||
return new ScheduleSequence("TODO", $itemsToSequence);
|
||||
return new ScheduleSequence($name, $itemsToSequence);
|
||||
}
|
||||
|
||||
protected function addLayerFactor(&$factor)
|
||||
|
Reference in New Issue
Block a user