Files
trueskill/src/FactorGraphs/KeyedVariable.php

17 lines
315 B
PHP
Raw Normal View History

<?php namespace Moserware\Skills\FactorGraphs;
class KeyedVariable extends Variable
{
private $_key;
public function __construct($key, $name, $prior)
{
parent::__construct($name, $prior);
$this->_key = $key;
}
public function getKey()
{
return $this->_key;
}
}