|
|
@ -24,7 +24,6 @@ |
|
|
// |
|
|
// |
|
|
//============================================================================== |
|
|
//============================================================================== |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
package prism; |
|
|
package prism; |
|
|
|
|
|
|
|
|
import parser.Values; |
|
|
import parser.Values; |
|
|
@ -40,7 +39,6 @@ public class IntegerBound |
|
|
/** The highest integer that is included in the bound. {@code null} for "no bound". */ |
|
|
/** The highest integer that is included in the bound. {@code null} for "no bound". */ |
|
|
private Integer highest; |
|
|
private Integer highest; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** Create new bounds. |
|
|
/** Create new bounds. |
|
|
* @param lower: The lower bound, {@code null} represents "no lower bound" |
|
|
* @param lower: The lower bound, {@code null} represents "no lower bound" |
|
|
* @param lower_strict: Is the lower bound strict (> lower) or non-strict (>= lower) |
|
|
* @param lower_strict: Is the lower bound strict (> lower) or non-strict (>= lower) |
|
|
@ -221,4 +219,9 @@ public class IntegerBound |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static void main(String args[]) |
|
|
|
|
|
{ |
|
|
|
|
|
System.out.println(new IntegerBound(1, true, 3, false)); |
|
|
|
|
|
} |
|
|
} |
|
|
} |