Class SeqIndexFloatEqual

    • Field Detail

      • debug

        public static final Logger debug
        Debug tracer.
      • dkconfig_enabled

        public static boolean dkconfig_enabled
        Boolean. True iff SeqIndexFloatEqual invariants should be considered.
    • Method Detail

      • enabled

        public boolean enabled()
        returns whether or not we are enabled
        Specified by:
        enabled in class Invariant
      • format_esc

        public String format_esc​(@GuardSatisfied SeqIndexFloatEqual this)
      • check_modified

        public InvariantStatus check_modified​(double @Interned [] a,
                                              int count)
        Description copied from class: SingleFloatSequence
        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 SingleFloatSequence
        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
      • isObviousDynamically

        @Pure
        public @Nullable DiscardInfo isObviousDynamically​(VarInfo[] vis)
        Checks to see if this is obvious over the specified variables Implements the following checks:
            (A[] subsequence B[]) ^ (B[i] op i) ⇒ A[i] op i
         
        JHP: Its not obvious (to me) that this is true except when the subsequence starts at index 0. If B[] = {0, 1, 2, 3, 4} and A[] = {2, 3, 4}, A[] is a subsequence of B[] and B[i] == i, but A[i] = i is not true.
        Overrides:
        isObviousDynamically in class Invariant