Module: Hilbert::Parser::SigmaParser

Includes:
Base
Defined in:
lib/hilbert/parser/sigma_parser.rb

Class Method Summary collapse

Class Method Details

.execute(els) ⇒ Object



5
6
7
8
9
10
11
12
13
14
# File 'lib/hilbert/parser/sigma_parser.rb', line 5

def self.execute(els)
  var, from, to, formula = els

  SigmaApi.execute(
    FormulaParser.execute(formula),
    var,
    from,
    to
  )
end