Class

at.logic.gapt.provers.minisat

MiniSAT

Related Doc: package minisat

Permalink

class MiniSAT extends Stopwatch

Linear Supertypes
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. MiniSAT
  2. Stopwatch
  3. Logger
  4. AnyRef
  5. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new MiniSAT()

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from MiniSAT to any2stringadd[MiniSAT] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (MiniSAT, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from MiniSAT to ArrowAssoc[MiniSAT] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. var atom_map: Map[HOLFormula, Int]

    Permalink
  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def debug(msg: ⇒ String): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Logger
  10. def ensuring(cond: (MiniSAT) ⇒ Boolean, msg: ⇒ Any): MiniSAT

    Permalink
    Implicit information
    This member is added by an implicit conversion from MiniSAT to Ensuring[MiniSAT] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: (MiniSAT) ⇒ Boolean): MiniSAT

    Permalink
    Implicit information
    This member is added by an implicit conversion from MiniSAT to Ensuring[MiniSAT] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean, msg: ⇒ Any): MiniSAT

    Permalink
    Implicit information
    This member is added by an implicit conversion from MiniSAT to Ensuring[MiniSAT] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean): MiniSAT

    Permalink
    Implicit information
    This member is added by an implicit conversion from MiniSAT to Ensuring[MiniSAT] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  15. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  16. def error(msg: ⇒ String, e: Throwable): Nothing

    Permalink
    Attributes
    protected
    Definition Classes
    Logger
  17. def error(msg: ⇒ String): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Logger
  18. var errorStatus: String

    Permalink
    Definition Classes
    Stopwatch
  19. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from MiniSAT to StringFormat[MiniSAT] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  21. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  22. def getHours(millisec: Long): Int

    Permalink
    Definition Classes
    Stopwatch
  23. def getMSec(millisec: Long): Int

    Permalink
    Definition Classes
    Stopwatch
  24. def getMin(millisec: Long): Int

    Permalink
    Definition Classes
    Stopwatch
  25. def getSec(millisec: Long): Int

    Permalink
    Definition Classes
    Stopwatch
  26. def getStatus(): String

    Permalink

    Returns the status of the stopwatch

    Returns the status of the stopwatch

    returns

    current status

    Definition Classes
    Stopwatch
  27. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  28. def info(msg: ⇒ String): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Logger
  29. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  30. def isValid(f: HOLFormula): Boolean

    Permalink
  31. def lap(msg: String): Long

    Permalink

    Saves the past time since start() or lap() has been called with additional information provided in msg

    Saves the past time since start() or lap() has been called with additional information provided in msg

    returns

    time in milliseconds since last start/lap

    Definition Classes
    Stopwatch
  32. val log: Logger

    Permalink
    Attributes
    protected
    Definition Classes
    Logger
  33. def loggerName: String

    Permalink
    Attributes
    protected
    Definition Classes
    Logger
  34. val nLine: String

    Permalink
    Definition Classes
    Stopwatch
  35. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  36. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  37. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  38. def save(msg: String): Long

    Permalink

    Saves the past time since start() or lap() without resetting the time with additional information provided in msg

    Saves the past time since start() or lap() without resetting the time with additional information provided in msg

    returns

    time in milliseconds since last start/lap

    Definition Classes
    Stopwatch
  39. def solve(clauses: List[HOLClause]): Option[Interpretation]

    Permalink
  40. def solve(f: HOLFormula): Option[Interpretation]

    Permalink
  41. def start(): Unit

    Permalink

    Starts the stopwatch

    Starts the stopwatch

    Definition Classes
    Stopwatch
  42. var startTime: Long

    Permalink
    Definition Classes
    Stopwatch
  43. var status: utils.logging.StopwatchStatus.Value

    Permalink
    Definition Classes
    Stopwatch
  44. def stop(msg: String): Long

    Permalink

    Saves the past time since start() has been called with additional information provided in msg Note: In contrast to lap(msg:String), the stopwatch will not be rested to the current time, i.e.

    Saves the past time since start() has been called with additional information provided in msg Note: In contrast to lap(msg:String), the stopwatch will not be rested to the current time, i.e. further calls of save/lap will be w.r.t. the last start() call

    returns

    time in milliseconds since last start()

    Definition Classes
    Stopwatch
  45. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  46. var times: MutableList[(String, Long)]

    Permalink
    Definition Classes
    Stopwatch
  47. def toCSV(): String

    Permalink

    Returns the all previously stops/laps in csv format

    Returns the all previously stops/laps in csv format

    returns

    all times in .csv

    Definition Classes
    Stopwatch
  48. def toFormattedString(): String

    Permalink

    Returns the all previously stops/laps as <hours>h <minutes>min <seconds>sec <milliseconds>msec

    Returns the all previously stops/laps as <hours>h <minutes>min <seconds>sec <milliseconds>msec

    returns

    all times as string

    Definition Classes
    Stopwatch
  49. def toString(): String

    Permalink

    Returns the all previously stops/laps in milliseconds

    Returns the all previously stops/laps in milliseconds

    returns

    all times as string

    Definition Classes
    Stopwatch → AnyRef → Any
  50. def toXML(): String

    Permalink

    Returns the all previously stops/laps in xml format

    Returns the all previously stops/laps in xml format

    returns

    all times in .xml

    Definition Classes
    Stopwatch
  51. def trace(msg: ⇒ String): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Logger
  52. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  53. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  54. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  55. def warn(msg: ⇒ String, e: Throwable): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Logger
  56. def warn(msg: ⇒ String): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    Logger
  57. def [B](y: B): (MiniSAT, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from MiniSAT to ArrowAssoc[MiniSAT] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from Stopwatch

Inherited from Logger

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from MiniSAT to any2stringadd[MiniSAT]

Inherited by implicit conversion StringFormat from MiniSAT to StringFormat[MiniSAT]

Inherited by implicit conversion Ensuring from MiniSAT to Ensuring[MiniSAT]

Inherited by implicit conversion ArrowAssoc from MiniSAT to ArrowAssoc[MiniSAT]

Ungrouped