HalfFraction

@Serializable
@SerialName(value = "half")
data class HalfFraction(val sign: Int = +1) : Fraction(source)

Half-fraction (1/2 of the full 2^k). sign = +1 selects the principal half (I = ...), sign = -1 the alternate half. Maps to TwoLevelFactorialDesign.halfFractionIterator(half = sign.toDouble()).

Constructors

Link copied to clipboard
constructor(sign: Int = +1)

Properties

Link copied to clipboard
val sign: Int