trueskill/Skills/FactorGraphs/FactorGraph.cs

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; }
}
}