Class: Integer

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

Instance Method Summary collapse

Instance Method Details

#to_varObject



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