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.



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

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

Instance Attribute Details

#factorsObject

Returns the value of attribute factors.



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

def factors
  @factors
end

#graphObject

Returns the value of attribute graph.



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

def graph
  @graph
end

#inputObject

Returns the value of attribute input.



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

def input
  @input
end

#outputObject

Returns the value of attribute output.



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

def output
  @output
end

Instance Method Details

#buildObject



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

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

#posterior_scheduleObject



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

def posterior_schedule
  nil
end

#prior_scheduleObject



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

def prior_schedule
  nil
end