Skip to content
/ Coq-dL Public

A formally verified implementation of differential dynamic logic in Coq

License

Notifications You must be signed in to change notification settings

LS-Lab/Coq-dL

Repository files navigation

Verification of KeYmaeraX's core in Coq

This repository contains a formalization of KeYmaeraX's core in Coq. It includes a formalization of the syntax, dynamic semantics, and static semantics of Differential dynamic logic (dL), as well as a formalization of Uniform Substitution. We have implemented (and verified the validity of) dL's Differential Dynamic Logic and ODE axioms. We have also implemented a proof checker to write and check dL proofs in Coq. Here are some useful links regarding this formalization:

Contributors

If you have any question, please send an email to Vincent.

This work was supported by the SnT and the National Research Fund Luxembourg (FNR), through PEARL grant FNR/P14/8149128.

Install and Dependencies

  • Our formalization compiles with Coq 8.9.1, which you can get through opam. Here's how to get started with opam. We're using opam version 2.0.3 and we're using OCaml version 4.05.0. You might have to switch the OCaml version in opam, using opam switch. To get Coq through opam, simply type:

    opam install coq

  • We're editing files using the ProofGeneral Emacs interface for Coq. You can find ProofGeneral and instructions on how to install it here.

  • We are using version 3.0.2 of the coquelicot library for real analysis, which you can get through opam:

    opam install coq-coquelicot

Coquelicot depends on ssreflect. Installing coquelicot through opam should install ssreflect as well. If for some reason you want to install it manually, simply type:

`opam install coq-mathcomp-ssreflect`.
  • To compile all files you can evaluate in all.v using ProofGeneral, which is going to compile our examples and their dependencies. Alternatively, you can run:

    ./create_makefile.sh

    to generate a Makefile; followed by:

    make -j n

    (where n is the number of cores you want to use to compile the project). Make sure that you've pulled the submodules before you run ./create_makefile.sh, otherwise the dependencies won't be computed right.

  • If you want to use ProofGeneral, and you're not sure what to do, here's what you can try to do: open all.v using Emacs. If you've installed ProofGeneral as instructed above, the ProofGeneral logo should appear when you start Emacs. If not, something went wrong. If the logo does show up in your Emacs buffer, then go to the end of the file and hit C-c C-RET. Assuming that the coq-compile-before-require variable is set to true, it should compile the file and all its dependencies.

  • If you want to try to prove something yourself, look for example at examples/example1.v.

Roadmap

This repository is organized into the following folders:

  1. coq-tools: a submodule containing some useful tactics
  2. syntax: syntax of Terms, Formulas, Hybrid Programs and ODEs
  3. semantics: static semantic, dynamic semantics as well as soundness of static semantics (coincidence lemmas)
  4. substitution: uniform substitution and its correctness, as well as uniform and bound variable renaming
  5. axioms: DDL and ODE axioms
  6. checker: sequent calculus and proof checker
  7. examples: examples of proofs that use our proof checker

About

A formally verified implementation of differential dynamic logic in Coq

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published