Method: CEML::Engine#run

Defined in:
lib/ceml/engine.rb

#runObject



30
31
32
33
34
35
36
37
# File 'lib/ceml/engine.rb', line 30

def run
  :loop while parts.keys.any? do |@current_id|
    # puts "trying: #{@current_id}: #{seq[pc]}"
    next unless seq[pc] and send(*seq[pc])
    @delg.send(*seq[pc] + [@current_id])
    this[:pc]+=1
  end
end