Class: Saulabs::TrueSkill::Layers::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/saulabs/trueskill/layers/base.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(graph) ⇒ Base

Returns a new instance of Base.



12
13
14
15
16
17
# File 'lib/saulabs/trueskill/layers/base.rb', line 12

def initialize(graph)
  @graph = graph
  @factors = []
  @output = []
  @input = []
end

Instance Attribute Details

#factorsObject

Returns the value of attribute factors.



10
11
12
# File 'lib/saulabs/trueskill/layers/base.rb', line 10

def factors
  @factors
end

#graphObject

Returns the value of attribute graph.



10
11
12
# File 'lib/saulabs/trueskill/layers/base.rb', line 10

def graph
  @graph
end

#inputObject

Returns the value of attribute input.



10
11
12
# File 'lib/saulabs/trueskill/layers/base.rb', line 10

def input
  @input
end

#outputObject

Returns the value of attribute output.



10
11
12
# File 'lib/saulabs/trueskill/layers/base.rb', line 10

def output
  @output
end

Instance Method Details

#buildObject



19
20
21
# File 'lib/saulabs/trueskill/layers/base.rb', line 19

def build
  raise "Abstract method Layers::Base#build called"
end

#posterior_scheduleObject



27
28
29
# File 'lib/saulabs/trueskill/layers/base.rb', line 27

def posterior_schedule
  nil
end

#prior_scheduleObject



23
24
25
# File 'lib/saulabs/trueskill/layers/base.rb', line 23

def prior_schedule
  nil
end