Packages

object AndrewsCurtis

Linear Supertypes
AnyRef, Any
Content Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AndrewsCurtis
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. case class ACFlowData(params: ACparameters, dstbn: DynDstbn) extends Product with Serializable
  2. sealed trait ACMoveType extends AnyRef
  3. case class ACparameters(epsilon: Double = 1.0 / 100.0, cutoff: Double = 1.0 / 1000000.0, purgeLevel: Double = 1.0 / 10000.0, pthCntn: Double = 0.7, presCntn: Double = 0.7, wrdCntn: Double = 0.7, tuneLoops: Int = 25, growLoops: Int = 15) extends Product with Serializable
  4. case class AtomicChain(head: Vert) extends Chain with Product with Serializable
  5. trait Chain extends AnyRef
  6. case class Conj(k: Int, l: Int) extends Move with Product with Serializable
  7. case class DynDst[V, E](vrtdst: FiniteDistribution[V], edgdst: FiniteDistribution[E], cntn: Double) extends Product with Serializable
  8. type DynDstbn = DynDst[Presentation, ACMoveType]
  9. case class Inv(k: Int) extends Move with Product with Serializable
  10. case class LftMult(k: Int, l: Int) extends Move with Product with Serializable
  11. trait Move extends (Vert) => Vert
  12. type MoveType = ACMoveType
  13. case class RecChain(start: Chain, move: Move) extends Chain with Product with Serializable
  14. case class RtMult(k: Int, l: Int) extends Move with Product with Serializable
  15. type Vert = Presentation

Value Members

  1. def ACbgWt(presCntn: Double, wrdCntn: Double): (Vert) => Double
  2. val MoveTypeList: List[ACMoveType]
  3. def allMoves(pres: Presentation): (MoveType) => List[Move]
  4. def backpropdstbn(chains: Set[Chain], feedback: FiniteDistribution[Vert], d: DynDstbn): DynDst[Presentation, MoveType]
  5. val baseDstbn: DynDst[Presentation, ACMoveType]
  6. def bestChain(pres: Vert, chains: Set[Chain], d: DynDstbn): Chain
  7. def chainGenCutoff(chains: Set[Chain], d: DynDstbn, cutoff: Double): Set[Chain]
    Annotations
    @tailrec()
  8. def dstbn(chains: Set[Chain], d: DynDstbn): FiniteDistribution[Vert]
  9. def dstbnFeedback(presdstbn: FiniteDistribution[Vert], bgwt: (Vert) => Double): FiniteDistribution[Vert]
  10. def dstbnFlowCutoff(d: DynDstbn, bgwt: (Vert) => Double, epsilon: Double, cutoff: Double): DynDstbn
  11. def dstbnflow(chains: Set[Chain], d: DynDstbn, bgwt: (Vert) => Double, epsilon: Double, threshold: Double = 0): DynDst[Presentation, ACMoveType]
  12. def initChains(d: DynDstbn): Set[Chain]
  13. def initDstbn(pthCntn: Double): DynDst[Presentation, Presentation]
  14. def multiplicity(rk: Int): (MoveType) => Long
  15. def presSupp(d: DynDstbn): Set[Presentation]
  16. def tuneFlowCutoff(d: DynDstbn, bgwt: (Vert) => Double, epsilon: Double, cutoff: Double): DynDst[Presentation, ACMoveType]
  17. case object ACDeStab extends Move with Product with Serializable
  18. object ACMoveType
  19. case object ACStab extends Move with Product with Serializable
  20. object Chain
  21. object DynDst extends Serializable