Class: Integer

Inherits:
Object show all
Defined in:
lib/BOAST/Algorithm.rb

Instance Method Summary collapse

Instance Method Details

#to_varObject



1684
1685
1686
1687
1688
1689
1690
# File 'lib/BOAST/Algorithm.rb', line 1684

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