Class AbstractProver<T>

    • Field Detail

      • generateUnsatCores

        protected final boolean generateUnsatCores
      • enableSL

        protected final boolean enableSL
      • closed

        protected boolean closed
    • Method Detail

      • checkGenerateModels

        protected final void checkGenerateModels()
      • checkGenerateAllSat

        protected final void checkGenerateAllSat()
      • checkGenerateUnsatCores

        protected final void checkGenerateUnsatCores()
      • checkGenerateUnsatCoresOverAssumptions

        protected final void checkGenerateUnsatCoresOverAssumptions()
      • checkEnableSeparationLogic

        protected final void checkEnableSeparationLogic()
      • size

        public int size()
        Description copied from interface: BasicProverEnvironment
        Get the number of backtracking points/levels on the current stack.

        Caution: This is the number of PUSH-operations, and not necessarily equal to the number of asserted formulas. On any level there can be an arbitrary number of asserted formulas. Even with size of 0, formulas can already be asserted (at bottom level).

        Specified by:
        size in interface BasicProverEnvironment<T>
      • pop

        public final void pop()
        Description copied from interface: BasicProverEnvironment
        Remove one backtracking point/level from the current stack. This removes the latest level including all of its formulas, i.e., all formulas that were added for this backtracking point.
        Specified by:
        pop in interface BasicProverEnvironment<T>
      • popImpl

        protected abstract void popImpl()
      • getAssertedConstraintIds

        protected ImmutableSet<T> getAssertedConstraintIds()
      • registerEvaluator

        protected <E extends Evaluator> E registerEvaluator​(E pEvaluator)
        This method registers the Evaluator to be cleaned up before the next change on the prover stack.
      • unregisterEvaluator

        protected void unregisterEvaluator​(Evaluator pEvaluator)
      • closeAllEvaluators

        protected void closeAllEvaluators()
      • close

        public void close()
        Description copied from interface: BasicProverEnvironment
        Closes the prover environment. The object should be discarded, and should not be used after closing. The first call of this method will close the prover instance, further calls are ignored.
        Specified by:
        close in interface AutoCloseable
        Specified by:
        close in interface BasicProverEnvironment<T>