ConfigurableGate
public protocol ConfigurableGate
A quantum gate used on genetic programming
-
Produces a
Gate
instance using as manyinputs
as necessary to configure it.Declaration
Swift
func makeFixed(inputs: [Int]) -> Result<Gate, EvolveCircuitError>
Parameters
inputs
A list of qubits/indexes in any order.
Return Value
A
Gate
instance. OrEvolveCircuitError
error.