mirror of
https://github.com/furyfire/trueskill.git
synced 2025-01-16 01:47:39 +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; }
|
|
}
|
|
} |