Uses of Interface
kodkod.engine.satlab.ResolutionTrace

Packages that use ResolutionTrace
kodkod.engine.satlab Provides access to various Java and C++ SAT solvers through a common SAT Solver interface. 
kodkod.engine.ucore Contains strategies for minimizing unsatisfiable cores generated by SAT provers. 
 

Uses of ResolutionTrace in kodkod.engine.satlab
 

Methods in kodkod.engine.satlab that return ResolutionTrace
 ResolutionTrace SATProver.proof()
          Returns a resolution-based proof of unsatisfiability of this.clauses.
 

Methods in kodkod.engine.satlab with parameters of type ResolutionTrace
 IntSet ReductionStrategy.next(ResolutionTrace trace)
          Returns the next subtrace of the specified trace to be analyzed, given as a set of indices into the trace.
 

Uses of ResolutionTrace in kodkod.engine.ucore
 

Methods in kodkod.engine.ucore with parameters of type ResolutionTrace
static IntSet StrategyUtils.coreWithVar(ResolutionTrace trace, int maxVariable)
          Returns the indices of the clauses in the unsatifiable core of the given trace that have the specified maximum variable.
static IntSet StrategyUtils.maxCoreVars(ResolutionTrace trace)
          Returns the maximum variables of the clauses in the unsatisfiable core of the given trace.
 IntSet NaiveStrategy.next(ResolutionTrace trace)
          Returns the next subtrace of the specified trace to be analyzed, given as a set of indices into the trace.
 IntSet MinTopStrategy.next(ResolutionTrace trace)
          Returns the next subtrace of the specified trace to be analyzed, given as a set of indices into the trace.
 IntSet HybridStrategy.next(ResolutionTrace trace)
          Returns the next subtrace of the specified trace to be analyzed, given as a set of indices into the trace.
 IntSet EmptyClauseConeStrategy.next(ResolutionTrace trace)
          Returns the next subtrace of the specified trace to be analyzed, given as a set of indices into the trace.
 IntSet CRRStrategy.next(ResolutionTrace trace)
          Returns the next subset of clauses in the given trace to be analyzed.