Skip to content

Commit

Permalink
Sync options
Browse files Browse the repository at this point in the history
  • Loading branch information
ajreynol committed May 31, 2024
1 parent 71ec594 commit b47c6ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ int main( int argc, char* argv[] )
out << " --help: displays this message." << std::endl;
out << " --no-normalize-dec: do not treat decimal literals as syntax sugar for rational literals." << std::endl;
out << " --no-normalize-hex: do not treat hexadecimal literals as syntax sugar for binary literals." << std::endl;
out << " --no-parse-let: do not treat let as a builtin symbol for specifying terms having shared subterms." << std::endl;
out << " --no-print-let: do not letify the output of terms in error messages and trace messages." << std::endl;
out << "--no-rule-sym-table: do not use a separate symbol table for proof rules and declared terms." << std::endl;
out << " --show-config: displays the build information for this binary." << std::endl;
Expand Down
1 change: 1 addition & 0 deletions user_manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -1518,6 +1518,7 @@ In the above example, a proof rule is then defined that says that if `z` is an i
## Command line options of alfc

The ALF command line interface can be invoked by `alfc <option>* <file>` where `<option>` is one of the following:
- `--binder-fresh`: binders generate fresh variables when parsed in proof files.
- `--help`: displays a help message.
- `--no-normalize-dec`: do not treat decimal literals as syntax sugar for rational literals.
- `--no-normalize-hex`: do not treat hexadecimal literals as syntax sugar for binary literals.
Expand Down

0 comments on commit b47c6ac

Please sign in to comment.