package repmin
Type Members
- case class Fork (left: RepminTree, right: RepminTree) extends RepminTree with Product with Serializable
- case class Leaf (value: Int) extends RepminTree with Product with Serializable
-
trait
Repmin
extends RepminBase
Classic repmin problem defined in an "attributes first" style.
Classic repmin problem defined in an "attributes first" style. repmin is a Repmintree with the same structure as its argument Repmintree but with all of the leaves replaced by leaves containing the minimum leaf value from the input Repmintree.
-
trait
RepminBase
extends RepminImpl
Common base for Repmin implementations.
-
trait
RepminDec
extends RepminBase
Repmin problem defined using decorators.
- class RepminDecTests extends RepminDec with RepminTestsBase
-
trait
RepminImpl
extends AnyRef
Repmin implementations must provide a repmin attribute.
- class RepminTests extends Repmin with RepminTestsBase
- trait RepminTestsBase extends Tests
-
sealed abstract
class
RepminTree
extends TreeNode
AST for Repmin examples.