mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 23:22:08 +02:00
21 lines
846 B
Markdown
21 lines
846 B
Markdown
# bcomps
|
|
|
|
> 그래프를 이중 연결 구성 요소로 분해.
|
|
> 그래프비즈 필터: `acyclic`, `bcomps`, `comps`, `edgepaint`, `gvcolor`, `gvpack`, `mingle`, `nop`, `sccmap`, `tred`, & `unflatten`.
|
|
> 더 많은 정보: <https://graphviz.org/pdf/bcomps.1.pdf>.
|
|
|
|
- 하나 이상의 그래프를 이중 연결 구성요소로 분해:
|
|
|
|
`bcomps {{경로/대상/input1.gv}} {{경로/대상/input2.gv ...}} > {{경로/대상/output.gv}}`
|
|
|
|
- 하나 이상의 그래프에서 블록 및 절단되는 정점 수를 인쇄:
|
|
|
|
`bcomps -v -s {{경로/대상/input1.gv}} {{경로/대상/input2.gv ...}}`
|
|
|
|
- `output.gv`를 기반으로 각 블록과 블록-절단정점 트리를 여러 번호의 파일 이름에 쓰기:
|
|
|
|
`bcomps -x -o {{경로/대상/output.gv}} {{경로/대상/input1.gv 경로/대상/input2.gv ...}}`
|
|
|
|
- 도움말 표시:
|
|
|
|
`bcomps -?`
|