Type alias CircuitDesc

CircuitDesc: {
    cost: number;
    family: string;
    name: string;
}

Base type for a description of single circuit in any family. Each family can define its own extensions to this type.

Type declaration

  • cost: number

    Number of non-linear constraints, used as a proxy for performance cost.

  • family: string

    Circuit family name.

  • name: string

    This circuit's name, which is the base name for artifact files.

Generated using TypeDoc