Class RangeInt

    • Method Detail

      • format_using

        @SideEffectFree
        public String format_using​(@GuardSatisfied RangeInt this,
                                   OutputFormat format)
        Returns a string in the specified format that describes the invariant. The generic format string is obtained from the subclass specific get_format_str(). Instances of %var1% are replaced by the variable name in the specified format.
        Specified by:
        format_using in class Invariant
      • check_modified

        public InvariantStatus check_modified​(long x,
                                              int count)
        Description copied from class: SingleScalar
        Presents a sample to the invariant. Returns whether the sample is consistent with the invariant. Does not change the state of the invariant.
        Specified by:
        check_modified in class SingleScalar
        count - how many identical samples were observed in a row. For example, three calls to check_modified with a count parameter of 1 is equivalent to one call to check_modified with a count parameter of 3.
        Returns:
        whether or not the sample is consistent with the invariant
      • isSameFormula

        @Pure
        public boolean isSameFormula​(Invariant other)
        Description copied from class: Invariant
        Returns true iff the two invariants represent the same mathematical formula. Does not consider the context such as variable names, confidences, sample counts, value counts, or related quantities. As a rule of thumb, if two invariants format the same, this method returns true. Furthermore, in many cases, if an invariant does not involve computed constants (as "x>c" and "y=ax+b" do for constants a, b, and c), then this method vacuously returns true.
        Specified by:
        isSameFormula in class Invariant
        Parameters:
        other - the invariant to compare to this one
        Returns:
        true iff the two invariants represent the same mathematical formula. Does not consider
      • isExclusiveFormula

        @Pure
        public boolean isExclusiveFormula​(Invariant other)
        Description copied from class: Invariant
        Returns true iff the two invariants represent mutually exclusive mathematical formulas -- that is, if one of them is true, then the other must be false. This method does not consider the context such as variable names, confidences, sample counts, value counts, or related quantities.
        Overrides:
        isExclusiveFormula in class Invariant
        Parameters:
        other - the other invariant to compare to this one
        Returns:
        true iff the two invariants represent mutually exclusive mathematical formulas
      • find_oneof

        protected @Nullable OneOfScalar find_oneof​(VarInfo[] vis)
        Looks for a OneOf invariant over vis. Used by Even and PowerOfTwo to dynamically suppress those invariants if a OneOf exists.
      • get_format_str

        public abstract String get_format_str​(@GuardSatisfied RangeInt this,
                                              OutputFormat format)
        Return a format string for the specified output format. Each instance of %varN% will be replaced by the correct name for varN.
      • eq_check

        public abstract boolean eq_check​(long x)
        Returns true if x and y don't invalidate the invariant.