You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add --rules and node-deltas-pro optios for kmir show (#649)
- Added options for displaying additional node deltas and rules in `kmir
show`.
- Updated the README to reflect new command usage and examples.
- Removed the deprecated `show-rules` command and integrated its
functionality into `kmir show`.
- Introduced a utility function to render rules as Markdown links for
better readability.
uv --project kmir run kmir show proof_id --proof-dir ./proof_dir --rules "1:3"
182
185
```
183
186
184
187
### Advanced Show Usage Examples
@@ -219,6 +222,8 @@ Most commands support:
219
222
**`kmir show` specific options:**
220
223
-`--nodes NODES`: Comma separated list of node IDs to show (e.g., "1,2,3")
221
224
-`--node-deltas DELTAS`: Comma separated list of node deltas in format "source:target" (e.g., "1:2,3:4")
225
+
-`--node-deltas-pro DELTAS`: Additional node deltas (same format as `--node-deltas`). Equivalent to "print the corresponding deltas again, and automatically print the rules for these edges".
226
+
-`--rules EDGES`: Comma separated list of edges in format "source:target". Prints rules for each edge in Markdown link format `[label](file:///abs/path#LstartLine)` when available
222
227
-`--omit-cells CELLS`: Comma separated list of cell names to omit from output
223
228
-`--full-printer`: Display the full node in output (default is compact)
224
229
-`--no-omit-static-info`: Display static information cells (functions, start-symbol, types, adt-to-ty)
0 commit comments