Trait/Object

firrtl.fuzzer

ExprGenParams

Related Docs: object ExprGenParams | package fuzzer

Permalink

sealed trait ExprGenParams extends AnyRef

A set of parameters for randomly generating Expressions

Source
ExprGenParams.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ExprGenParams
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def decrementDepth: ExprGenParams

    Permalink

    Returns a copy of this ExprGenParams with the maximum depth decremented

    Returns a copy of this ExprGenParams with the maximum depth decremented

    Attributes
    protected
  2. abstract def generators: Seq[(Int, ExprGen[_ <: Expression])]

    Permalink

    A list of frequency/expression generator pairs

    A list of frequency/expression generator pairs

    The frequency number determines the probability that the corresponding generator will be chosen. i.e. for sequece Seq(1 -> A, 2 -> B, 3 -> C), the probabilities for A, B, and C are 1/6, 2/6, and 3/6 respectively. This sequency must be non-empty and all frequency numbers must be greater than zero.

  3. abstract def incrementDepth: ExprGenParams

    Permalink

    Returns a copy of this ExprGenParams with the maximum depth incremented

    Returns a copy of this ExprGenParams with the maximum depth incremented

    Attributes
    protected
  4. abstract def maxDepth: Int

    Permalink

    The maximum levels of nested sub-expressions that may be generated

  5. abstract def maxWidth: Int

    Permalink

    The maximum width of any generated expression, including sub-expressions

  6. abstract def namespace: Namespace

    Permalink

    The namespace to use for generating new References

    The namespace to use for generating new References

    Attributes
    protected
  7. abstract def unboundRefs: Set[Reference]

    Permalink

    The set of generated references that don't have a corresponding declaration

    The set of generated references that don't have a corresponding declaration

    Attributes
    protected
  8. abstract def withRef(ref: Reference): ExprGenParams

    Permalink

    Returns a copy of this ExprGenParams with the reference added to the set of unbound references

    Returns a copy of this ExprGenParams with the reference added to the set of unbound references

    Attributes
    protected

Concrete Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

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

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. def generateSingleExprCircuit[G[_]]()(implicit arg0: GenMonad[G]): Circuit

    Permalink

    Runs the expression generator once and returns the generated expression wrapped in a Module and Circuit

  10. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  11. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  12. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  16. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  17. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  18. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped