Ignore:
Timestamp:
06/22/20 11:19:30 (5 years ago)
Author:
jdquinn
Message:

CHG: Added histogram bin uncertain for Python; cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified issm/trunk-jpl/src/m/classes/qmu/linear_inequality_constraint.py

    r24261 r25097  
    1313  where the required args are:
    1414    matrix        (double row, variable coefficients, float('NaN'))
    15     lower         (double vector, lower bounds, -np.Inf)
     15    lower         (double vector, lower bounds, -np.inf)
    1616    upper         (double vector, upper bounds, 0.)
    1717  and the optional args and defaults are:
     
    2525    def __init__(self):
    2626        self.matrix = np.array([[float('NaN')]])
    27         self.lower = -np.Inf
     27        self.lower = -np.inf
    2828        self.upper = 0.
    2929        self.scale_type = 'none'
     
    131131            lower[i] = lic[i].lower
    132132
    133         lower = allequal(lower, -np.Inf)
     133        lower = allequal(lower, -np.inf)
    134134
    135135        return lower
Note: See TracChangeset for help on using the changeset viewer.