mirror of
				https://github.com/furyfire/trueskill.git
				synced 2025-10-31 16:32:29 +01:00 
			
		
		
		
	
		
			
	
	
		
			20 lines
		
	
	
		
			744 B
		
	
	
	
		
			C#
		
	
	
	
	
	
		
		
			
		
	
	
			20 lines
		
	
	
		
			744 B
		
	
	
	
		
			C#
		
	
	
	
	
	
|   | using Moserware.Numerics; | |||
|  | using Moserware.Skills.FactorGraphs; | |||
|  | 
 | |||
|  | namespace Moserware.Skills.TrueSkill.Layers | |||
|  | { | |||
|  |     internal abstract class TrueSkillFactorGraphLayer<TPlayer, TInputVariable, TFactor, TOutputVariable> | |||
|  |         : | |||
|  |             FactorGraphLayer | |||
|  |                 <TrueSkillFactorGraph<TPlayer>, GaussianDistribution, Variable<GaussianDistribution>, TInputVariable, | |||
|  |                 TFactor, TOutputVariable> | |||
|  |         where TInputVariable : Variable<GaussianDistribution> | |||
|  |         where TFactor : Factor<GaussianDistribution> | |||
|  |         where TOutputVariable : Variable<GaussianDistribution> | |||
|  |     { | |||
|  |         public TrueSkillFactorGraphLayer(TrueSkillFactorGraph<TPlayer> parentGraph) | |||
|  |             : base(parentGraph) | |||
|  |         { | |||
|  |         } | |||
|  |     } | |||
|  | } |