@qtsurfer/sdk
    Preparing search index...

    Type Alias SweepSampler

    SweepSampler: "grid" | "random" | "lhs"

    How the parameter grid is turned into the list of vectors that actually run.

    • 'grid' — every combination of every axis value. The platform default; cost is the product of the axis sizes.
    • 'random' — uniformly random draws from the grid, capped at SweepRequest.samples.
    • 'lhs' — Latin hypercube draws, which spread the sample more evenly than uniform random.

    samples is required by 'random' and 'lhs' and ignored by 'grid'.