Class: Integer
Instance Method Summary collapse
Instance Method Details
#to_var ⇒ Object
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 |