gapt.utils
Members list
Type members
Classlikes
Attributes
- Source
- Counter.scala
- Supertypes
-
class Objecttrait Matchableclass Any
Attributes
- Source
- EitherHelpers.scala
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
EitherHelpers.type
Allows to tag an exception with additional debugging data. It could be used as follows:
Allows to tag an exception with additional debugging data. It could be used as follows:
if (isBad( element ) ) throw new Exception with ExceptionTag[Element] { tag = element }
and be used in a try pattern match on the command-line.
Attributes
- Source
- ExceptionTag.scala
- Supertypes
-
class Objecttrait Matchableclass Any
Attributes
- Source
- ExternalProgram.scala
- Supertypes
-
class Objecttrait Matchableclass Any
- Known subtypes
-
object TipSmtImporterclass EProverobject EProverobject IProverclass LeanCoPobject LeanCoPclass ExternalMaxSATSolverobject MiFuMaXobject MiniMaxSATobject OpenWBOobject QMaxSATobject ToySATobject ToySolverclass Metisobject Metisclass Prover9object Prover9object Prover9Importerclass ExternalSATSolverclass Glucoseobject Glucoseobject MiniSATclass PicoSATobject PicoSATclass CVC4object CVC4class Z3object Z3class SPASSobject SPASSclass Vampireobject Vampireobject VampireCASCclass VeriTobject VeriTShow all
Attributes
- Companion
- object
- Source
- Logger.scala
- Supertypes
-
class Objecttrait Matchableclass Any
- Known subtypes
-
object defaultobject silentobject tstpobject Loggerclass MetricsPrinterclass tstpWithMetricsShow all
Attributes
- Companion
- trait
- Source
- Logger.scala
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
LogHandler.type
Attributes
- Companion
- object
- Source
- Logger.scala
- Supertypes
- Known subtypes
Attributes
- Companion
- class
- Source
- Logger.scala
- Supertypes
- Self type
-
Logger.type
Attributes
- Companion
- object
- Source
- Maybe.scala
- Supertypes
-
class Objecttrait Matchableclass Any
- Known subtypes
Attributes
- Companion
- trait
- Source
- Maybe.scala
- Supertypes
- Self type
-
Maybe.type
Attributes
- Source
- Maybe.scala
- Supertypes
-
class Objecttrait Matchableclass Any
- Known subtypes
Attributes
- Source
- Maybe.scala
- Supertypes
- Known subtypes
-
object Maybe
Attributes
- Source
- MetricsPrinter.scala
- Supertypes
- Known subtypes
-
class tstpWithMetrics
Attributes
- Source
- MetricsPrinter.scala
- Supertypes
Attributes
- Companion
- class
- Source
- NameGenerator.scala
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
NameGenerator.type
Attributes
- Companion
- object
- Source
- NameGenerator.scala
- Supertypes
-
class Objecttrait Matchableclass Any
- Known subtypes
-
class TipNameGenerator
Holds the statistic parameters of a collection of elements of type a numerical type T
Holds the statistic parameters of a collection of elements of type a numerical type T
Type parameters
- T
-
the type of elements the collection contains
Value parameters
- avg
-
the average element
- max
-
the maximal element
- median
-
the median element
- min
-
the minimal element
- n
-
the size of the data
- sigma_square
-
the square of the standard deviation (only exists for n >= 2)
Attributes
- Companion
- object
- Source
- Statistics.scala
- Supertypes
Companion object to Statistic. Provides a csv header and convenience methods for statistic options and empty data lists.
Companion object to Statistic. Provides a csv header and convenience methods for statistic options and empty data lists.
Attributes
- Companion
- class
- Source
- Statistics.scala
- Supertypes
-
trait Producttrait Mirrorclass Objecttrait Matchableclass Any
- Self type
-
Statistic.type
Attributes
- Source
- streams.scala
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
StreamUtils.type
Attributes
- Source
- timeout.scala
- Supertypes
-
class Exceptionclass Throwabletrait Serializableclass Objecttrait Matchableclass AnyShow all
Attributes
- Companion
- object
- Source
- Tree.scala
- Supertypes
Attributes
- Companion
- class
- Source
- Tree.scala
- Supertypes
-
trait Producttrait Mirrorclass Objecttrait Matchableclass Any
- Self type
-
Tree.type
Attributes
- Source
- uoption.scala
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
UNone.type
Unboxed option type similar to Option[T].
Unboxed option type similar to Option[T].
Note that USome(UNone()) == UNone() and USome(null) == UNone().
Attributes
- Source
- uoption.scala
- Supertypes
-
class AnyValtrait Matchableclass Any
Attributes
- Source
- uoption.scala
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
USome.type
Attributes
- Source
- posets.scala
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
Opens the scala documentation in a browser window.
Opens the scala documentation in a browser window.
Attributes
- Source
- help.scala
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
help.type
Attributes
- Source
- posets.scala
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
Attributes
- Source
- Logger.scala
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
quiet.type
Attributes
- Source
- runProcess.scala
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
runProcess.type
Attributes
- Source
- package.scala
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
shortestPath.type
Attributes
- Source
- time.scala
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
time.type
Attributes
- Source
- posets.scala
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
transitiveClosure.type
Attributes
- Source
- Logger.scala
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
verbose.type
Attributes
- Source
- tempFiles.scala
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
withTempFile.type
runs f with timeout to
runs f with timeout to
If f does terminate within to milliseconds returns its result. If not throw a TimeOutException. If f throws an exception it is propagated to the caller of withTimeout.
Attributes
- Example
-
try { withTimeout( 1234 ) { /* ... your code ... */ } } catch { case e: TimeOutException /* ... */ /* other exceptions */ } - Source
- timeout.scala
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
withTimeout.type
Attributes
- Source
- zipped.scala
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
zipped.type
Value members
Concrete methods
Attributes
- Source
- package.scala
Attributes
- Source
- package.scala
Attributes
- Source
- package.scala