regen graph

This commit is contained in:
lda
2026-03-30 22:51:59 +07:00 Unverified
parent c376fba3ea
commit 67f52b41c0
2 changed files with 6 additions and 6 deletions
+5 -5
View File
@@ -20,16 +20,14 @@ graph TD;
c_80(c_80)
c_10(c_10)
counter_up(counter_up)
main(main)
tick(tick)
__end__([<p>__end__</p>]):::last
__start__ --> init;
c_10 --> counter_up;
c_80 --> counter_up;
counter_up -.-> __end__;
counter_up -.-> main;
init --> main;
main -. &nbsp;0&nbsp; .-> rate_same;
main -. &nbsp;65&nbsp; .-> rate_up;
counter_up -.-> tick;
init --> tick;
prep --> roll;
r_g10 --> prep;
r_g80 --> prep;
@@ -43,6 +41,8 @@ graph TD;
roll -. &nbsp;10&nbsp; .-> c_10;
roll -. &nbsp;240&nbsp; .-> c_80;
roll -. &nbsp;1&nbsp; .-> counter_up;
tick -. &nbsp;0&nbsp; .-> rate_same;
tick -. &nbsp;65&nbsp; .-> rate_up;
classDef default fill:#f2f0ff,line-height:1.2
classDef first fill-opacity:0
classDef last fill:#bfb6fc
+1 -1
View File
@@ -293,7 +293,7 @@ if __name__ == "__main__":
from dotenv import load_dotenv
load_dotenv()
Path("graph.md").write_text(f"""# graph
(Path(__file__).parent / "graph.md").write_text(f"""# graph
```mermaid
{app.get_graph().draw_mermaid()}