class OPL::Row

Attributes

constraint[RW]
epsilon[RW]
lower_bound[RW]
name[RW]
upper_bound[RW]
variable_coefficient_pairs[RW]

Public Class Methods

new(name, lower_bound, upper_bound, epsilon) click to toggle source
# File lib/opl.rb, line 848
def initialize(name, lower_bound, upper_bound, epsilon)
        @name = name
        @lower_bound = lower_bound
        @upper_bound = upper_bound
        @variable_coefficient_pairs = []
        @epsilon = epsilon
end