class Fbe::Conclude

def initialize(fb:, judge:, global:, options:, loog:, time: Time)

Parameters:
  • time (Time) -- The time
  • loog (Loog) -- The logging facility
  • options (Judges::Options) -- The options coming from the +judges+ tool
  • global (Hash) -- The hash for global caching
  • judge (String) -- The name of the judge, from the +judges+ tool
  • fb (Factbase) -- The factbase
def initialize(fb:, judge:, global:, options:, loog:, time: Time)
  @fb = fb
  @judge = judge
  @loog = loog
  @options = options
  @global = global
  @query = nil
  @follows = []
  @quota_aware = false
  @timeout = 60
  @time = time
end