iqm.iqm_client.transpile.ExistingMoveHandlingOptions#

class iqm.iqm_client.transpile.ExistingMoveHandlingOptions(value)#

Bases: str, Enum

Transpile options for handling of existing MOVE instructions.

Attributes

KEEP

Transpiler will keep the move instructions as specified checking if they are correct, adding more as needed.

REMOVE

Transpiler will remove the instructions and add new ones.

TRUST

Transpiler will keep the move instructions without checking if they are correct, and add more as needed.

Methods

_generate_next_value_(start, count, last_values)

Generate the next value when not given.

KEEP = 'keep'#

Transpiler will keep the move instructions as specified checking if they are correct, adding more as needed.

REMOVE = 'remove'#

Transpiler will remove the instructions and add new ones.

TRUST = 'trust'#

Transpiler will keep the move instructions without checking if they are correct, and add more as needed.