Class: Integer
Instance Method Summary collapse
Instance Method Details
#to_var ⇒ Object
1693 1694 1695 1696 1697 1698 1699 |
# File 'lib/BOAST/Algorithm.rb', line 1693 def to_var if self < 0 then return BOAST::Variable::new("#{self}", BOAST::Int, :signed => true, :constant => self ) else return BOAST::Variable::new("#{self}", BOAST::Int, :signed => false, :constant => self ) end end |