mirror of
https://github.com/furyfire/trueskill.git
synced 2025-01-16 09:57:40 +00:00
9 lines
295 B
C#
9 lines
295 B
C#
|
namespace Moserware.Skills.FactorGraphs
|
|||
|
{
|
|||
|
public class FactorGraph<TSelf, TValue, TVariable>
|
|||
|
where TSelf : FactorGraph<TSelf, TValue, TVariable>
|
|||
|
where TVariable : Variable<TValue>
|
|||
|
{
|
|||
|
public VariableFactory<TValue> VariableFactory { get; protected set; }
|
|||
|
}
|
|||
|
}
|