diff options
author | JSDurand <mmemmew@gmail.com> | 2023-01-13 14:26:28 +0800 |
---|---|---|
committer | JSDurand <mmemmew@gmail.com> | 2023-01-13 14:26:28 +0800 |
commit | 8f8d3d1a3c276be4be2e5d2e767ada564c47279a (patch) | |
tree | daba317c8d381f7159f9a34d957291472bad2873 /grammar/Cargo.toml | |
parent | 3c6511f69c7639abff60ac9999a08ce2daa24a7d (diff) |
forest seems to be completed
I seem to have finished the implementation of forests. Now it remains
the implementation of the chain-rule machine, of which I have a rough
plan now.
Diffstat (limited to 'grammar/Cargo.toml')
-rw-r--r-- | grammar/Cargo.toml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/grammar/Cargo.toml b/grammar/Cargo.toml index 20c4b48..793ab5a 100644 --- a/grammar/Cargo.toml +++ b/grammar/Cargo.toml @@ -12,6 +12,9 @@ default = [] # some grammars for testing. test-helper = [] +# This flag controls whether to print GraphViz files during testing. +test-print-viz = [] + [dependencies] nfa = { path = "../nfa" } graph = { path = "../graph" } |