Skip to content

Commit

Permalink
fix example format
Browse files Browse the repository at this point in the history
  • Loading branch information
Roger-luo committed May 30, 2024
1 parent ea7eff8 commit 1fd8414
Showing 1 changed file with 44 additions and 26 deletions.
70 changes: 44 additions & 26 deletions src/bloqade/builder/parse/trait.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,13 @@ class ParseRegister:
A class providing functionality to parse the arrangement of atoms in the program.
Example:
>>> class MyBuilder(ParseRegister):
... pass
>>> builder = MyBuilder()
>>> atom_arrangement = builder.parse_register()
```python
>>> class MyBuilder(ParseRegister):
... pass
>>> builder = MyBuilder()
>>> atom_arrangement = builder.parse_register()
```
"""

def parse_register(self: "Builder") -> Union["AtomArrangement", "ParallelRegister"]:
Expand All @@ -44,10 +47,13 @@ class ParseSequence:
A class providing functionality to parse the pulse sequence part of the program.
Example:
>>> class MyBuilder(ParseSequence):
... pass
>>> builder = MyBuilder()
>>> sequence = builder.parse_sequence()
```python
>>> class MyBuilder(ParseSequence):
... pass
>>> builder = MyBuilder()
>>> sequence = builder.parse_sequence()
```
"""

def parse_sequence(self: "Builder") -> "Sequence":
Expand All @@ -70,10 +76,13 @@ class ParseCircuit:
A class providing functionality to parse the analog circuit from the program.
Example:
>>> class MyBuilder(ParseCircuit):
... pass
>>> builder = MyBuilder()
>>> analog_circuit = builder.parse_circuit()
```python
>>> class MyBuilder(ParseCircuit):
... pass
>>> builder = MyBuilder()
>>> analog_circuit = builder.parse_circuit()
```
"""

def parse_circuit(self: "Builder") -> "AnalogCircuit":
Expand All @@ -96,10 +105,13 @@ class ParseRoutine:
A class providing functionality to parse the program and return a Routine object.
Example:
>>> class MyBuilder(ParseRoutine):
... pass
>>> builder = MyBuilder()
>>> routine = builder.parse()
```python
>>> class MyBuilder(ParseRoutine):
... pass
>>> builder = MyBuilder()
>>> routine = builder.parse()
```
"""

def parse(self: "Builder") -> "Routine":
Expand Down Expand Up @@ -138,10 +150,13 @@ def n_atoms(self: "Builder") -> int:
If the register is of type ParallelRegister, the number of atoms is extracted from its internal register.
Example:
>>> class MyBuilder(Parse):
... pass
>>> builder = MyBuilder()
>>> n_atoms = builder.n_atoms
```python
>>> class MyBuilder(Parse):
... pass
>>> builder = MyBuilder()
>>> n_atoms = builder.n_atoms
```
"""
register = self.parse_register()

Expand All @@ -168,11 +183,14 @@ def show(self, *args, batch_id: int = 0):
This method uses the `display_builder` function to render the builder's state.
Example:
>>> class MyBuilder(Show):
... pass
>>> builder = MyBuilder()
>>> builder.show()
>>> builder.show(batch_id=1)
>>> builder.show('arg1', 'arg2', batch_id=2)
```python
>>> class MyBuilder(Show):
... pass
>>> builder = MyBuilder()
>>> builder.show()
>>> builder.show(batch_id=1)
>>> builder.show('arg1', 'arg2', batch_id=2)
```
"""
display_builder(self, batch_id, *args)

0 comments on commit 1fd8414

Please sign in to comment.