using Moserware.Numerics; using Moserware.Skills.FactorGraphs; namespace Moserware.Skills.TrueSkill.Layers { internal abstract class TrueSkillFactorGraphLayer : FactorGraphLayer , GaussianDistribution, Variable, TInputVariable, TFactor, TOutputVariable> where TInputVariable : Variable where TFactor : Factor where TOutputVariable : Variable { public TrueSkillFactorGraphLayer(TrueSkillFactorGraph parentGraph) : base(parentGraph) { } } }