forge.solve
Enum SolveOptions.SatSolver

java.lang.Object
  extended by java.lang.Enum<SolveOptions.SatSolver>
      extended by forge.solve.SolveOptions.SatSolver
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SolveOptions.SatSolver>
Enclosing class:
SolveOptions

public static enum SolveOptions.SatSolver
extends java.lang.Enum<SolveOptions.SatSolver>

Enumeration of possible SAT Solvers.


Enum Constant Summary
MINISAT
          Platform-specific, cannot prove.
MINISAT_PROVER
          Platform-specific, prover.
SAT4J
          Pure Java, cannot prove.
SAT4J_LIGHT
          Pure Java, cannot prove.
ZCHAFF
          Platform-specific, cannot prove.
ZCHAFF_MINCOST
          Platform-specific, cannot prove.
 
Method Summary
 boolean prover()
          Returns true if solver can provide a proof.
static SolveOptions.SatSolver valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SolveOptions.SatSolver[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

SAT4J

public static final SolveOptions.SatSolver SAT4J
Pure Java, cannot prove.


SAT4J_LIGHT

public static final SolveOptions.SatSolver SAT4J_LIGHT
Pure Java, cannot prove.


MINISAT

public static final SolveOptions.SatSolver MINISAT
Platform-specific, cannot prove.


MINISAT_PROVER

public static final SolveOptions.SatSolver MINISAT_PROVER
Platform-specific, prover.


ZCHAFF

public static final SolveOptions.SatSolver ZCHAFF
Platform-specific, cannot prove.


ZCHAFF_MINCOST

public static final SolveOptions.SatSolver ZCHAFF_MINCOST
Platform-specific, cannot prove.

Method Detail

values

public static final SolveOptions.SatSolver[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(SolveOptions.SatSolver c : SolveOptions.SatSolver.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static SolveOptions.SatSolver valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name

prover

public boolean prover()
Returns true if solver can provide a proof.