Class: Integer

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

Instance Method Summary collapse

Instance Method Details

#to_varObject



265
266
267
268
269
270
271
# File 'lib/BOAST/Algorithm.rb', line 265

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