Method: MTree::TreeTask#execute

Defined in:
ext/lib/CompLearnLib/Tree.rb

#executeObject



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'ext/lib/CompLearnLib/Tree.rb', line 13

def execute()
  dm = fetch('dm')
  ts = TreeScore.makeFullList(dm)
  ts.penalty = @penalty
  best, bestscore = nil, nil
  @tries.times {
    maybe = @tree.clone
    maybe.mutateComplex
    score = ts.score(maybe)
    if (best == nil || bestscore < score)
      best = maybe
      bestscore = score
    end
  }
  reply([best, bestscore])
end