Skip to content

Commit

Permalink
docs: Discussion on the Commutability of Function Combinations
Browse files Browse the repository at this point in the history
  • Loading branch information
GaoNeng-wWw committed Mar 23, 2024
1 parent 5a41384 commit 772b7ed
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
3 changes: 2 additions & 1 deletion dl-flow-backend/.dockerignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.env
node_modules
*.md
*.md
proof
Binary file not shown.
12 changes: 8 additions & 4 deletions dl-flow-backend/src/code-generate/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
stateDiagram
state join1 <<join>>
state join2 <<join>>
[*] --> CodeGenerateService
CodeGenerateService --> AST
state CodeGenerateService {
[*] --> CodeGenerateService.ts
CodeGenerateService.ts --> AST.ts
state CodeGenerateService.ts {
验证Schema --> 提取节点
验证Schema --> 提取边
提取节点 --> join1
Expand All @@ -19,10 +19,14 @@ stateDiagram
标准化边 --> join2
join2 --> [*]
}
state AST {
state AST.ts {
顺序化节点 --> AST构建
AST构建 --> 代码生成
}
代码生成 --> 写入磁盘
写入磁盘 --> [*]
```

## 附件

[函数组合的可交换性讨论](../../proof/函数组合的可交换性讨论.pdf)

0 comments on commit 772b7ed

Please sign in to comment.