Skip to content

Library implementing type inference/checking functionality based on the Lean theorem prover

License

Notifications You must be signed in to change notification settings

ammkrn/nanoda_lib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

About

This is an external type checker for the Lean 4 programming language and theorem prover. You can read more about what an external type checker is and why you might want to use one in this book.

Usage

Building and running the binary

Either run the binary directly through cargo cargo run --release -- <path_to_config>, or build the binary using cargo build --release, then run the built binary, passing a path to a configuration. Building with cargo should just work on all modern platforms without requiring additional build steps.

The binary takes a single argument, which is a path to a json configuration file describing the resource locations and desired options needed to run the type checker. Export files can be streamed via stdin rather than by file path by setting the configuration option use_stdin: true, at which point the executable will expect to receive the contents of the export file via stdin.

Export files can be created with lean4export. The format in the linked fork is expected by this type checker, and is under review for inclusion upstream. The link will be updated if/when the changes are merged.

Using the library

The library component can be imported and used as a normal rust crate by specifying it as a dependency in a Cargo.toml file.

Configuration file

The execution conditions of nanoda_bin are determined by a json configuration file, there is no old school CLI. This was a conscious design choice to accommodate modern development practices (checking in to version control, use with CI and automation) and what we envision to be the most likely use case for external type checkers (running a suite of external checkers). The UI for external checkers is somewhat TBD and is expected to evolve as the community starts to integrate these into what they're doing.

There is ongoing discussion about migrating the export format to json here, so I don't consider the introduction of a json parser to be a huge deal.

Configuration options

Users can either specify a path to the export file to be checked, or set "use_stdin": true, in which case the program will wait for the export file to be passed via stdin. If the "export_file_path" key is not defined, then "use_stdin" must be set to true. Specifying an export file and setting "use_stdin": true are mutually exclusive, and will result in a hard error.

The "permitted_axioms" list is where users specify the axioms an export file is permitted to use. For axioms to be permitted, they must be identified in the config file. The average Lean user will want to permit the three semi-official axioms, which are Quot.sound, Classical.choice, and propext, and most export files will also rely on Lean.trustCompiler.

if "unpermitted_axiom_hard_error" is set to true, the presence of an axiom in the export file that is not in the permitted_axioms list will cause a hard error and abort checking, regardless of whether it's used by any later declarations. If set to false, the unpermitted axiom will simply be ignored, meaning it will not be checked, will not be added to the environment, and will cause a hard error only if another exported declaration actually tries to use it. This value is currently set to true by default out of an abundance of caution, but this may change; most users will probably want to set this to false, since things like the prelude's sorryAx are declared so that they may be used by metaprograms, but will not actually be invoked by other declarations in the file and are therefore safe to just skip.

"nat_extension" and "string_extension" enable or disable the Nat and String kernel extensions. While we expect most users to opt into the Nat and String kernel extensions, they are disabled by default.

"pp_declars" is a list of declarations to be printed back by the pretty printer.

"pp_options" are the options to be used by the pretty printer.

"pp_to_stdout" determines whether the pretty printer output is written to stdout. This is not mutually exclusive with "pp_output_path"; if both options are set, the pretty printer output will be written to both stdout and the specified path.

"pp_output_path" can be set if the pretty printer output should be written to a file path. This is not mutually exclusive with "pp_output_path"; if both options are set, the pretty printer output will be written to both stdout and the specified path.

"declar_sep" is a separator to print between each pretty printed declaration. A default of "\n\n" will end each declaration with a newline, then put a blank line between successive declarations. While this does allow for the injection of arbitrary strings into the pretty printer output, it's rejected if not valid UTF-8, and the configuration file is controlled entirely by the operator of the type checker, so I don't consider this any more of a vector for attack than specifying an incorrect export file path or knowingly whitelisting an unsound axiom.

If "print_success_message" is set to false, no additional output will be printed on success, and users should look to the platform-specific exit code. If "pp_to_stdout" is true and "print_success_message" is false the pretty printer output will still be written to stdout.

An example configuration file:

{
    "export_file_path": "MyLeanProject/export",
    "use_stdin": false,
    "permitted_axioms": [
        "propext",
        "Classical.choice",
        "Quot.sound",
        "Lean.trustCompiler"
    ],
    "unpermitted_axiom_hard_error": true,
    "nat_extension": true,
    "string_extension": true,
    "pp_declars": ["Nat.add_zero", "Eq.symm"],
    "pp_output_path": "/Users/user/file.txt",
    "pp_to_stdout": false,
    "pp_options": {
        "all": null,
        "explicit": false,
        "universes": null,
        "notation": null,
        "proofs": false,
        "indent": 2,
        "width": 100,
        "declar_sep": "\n\n",
    },
    "print_success_message": false
}

About

Library implementing type inference/checking functionality based on the Lean theorem prover

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages