File size: 631 Bytes
2955ecc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env python3
"""Figure 3: finite local compute-bound state geometry."""

from __future__ import annotations

import matplotlib.pyplot as plt

from scale_figure_parts import draw_state_geometry
from style import COLUMN_WIDTH_IN, HERE, save_figure


OUTPUT = HERE / "fig_scale_states.pdf"


def main() -> None:
    fig, ax = plt.subplots(figsize=(COLUMN_WIDTH_IN, 3.05))
    fig.subplots_adjust(left=0.22, right=0.965, bottom=0.18, top=0.97)
    draw_state_geometry(ax)
    save_figure(
        fig,
        OUTPUT,
        subject="Finite local compute-bound state geometry",
    )


if __name__ == "__main__":
    main()