|
|
|
@ -721,11 +721,14 @@ public class DigitalClocks |
|
|
|
// (so just evaluate directly) |
|
|
|
// We also don't care about the max value - this is done elsewhere; |
|
|
|
// we just want to make sure that the values is used to compute the GCD |
|
|
|
if (e.bound.getLowerBound() != null) { |
|
|
|
allClockVals.add(e.bound.getLowerBound().evaluateInt(constantValues)); |
|
|
|
} |
|
|
|
if (e.bound.getUpperBound() != null) { |
|
|
|
allClockVals.add(e.bound.getUpperBound().evaluateInt(constantValues)); |
|
|
|
if (e.getBounds().hasBounds() ) { |
|
|
|
TemporalOperatorBound bound = e.getBounds().getTimeBoundForContinuousTime(); |
|
|
|
if (bound.getLowerBound() != null) { |
|
|
|
allClockVals.add(bound.getLowerBound().evaluateInt(constantValues)); |
|
|
|
} |
|
|
|
if (bound.getUpperBound() != null) { |
|
|
|
allClockVals.add(bound.getUpperBound().evaluateInt(constantValues)); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|