CFML: Characteristic Formulae for MLCFML is a tool for the interactive verification of OCaml programs, using Coq and Separation Logic. DownloadRelated publicationsArthur Charguéraud SF: Volume 6 of the Software Foundations series — Reference book, all in Coq, Dec 2023 Arthur Charguéraud Habilitation manuscript, March 2023 Alexandre Moine, Arthur Charguéraud, François Pottier CPP: Certified Programs and Proofs, January 2022 Arthur Charguéraud SF: Volume 6 of the Software Foundations series — Reference book, all in Coq, May 2021 Arthur Charguéraud ICFP: International Conference on Functional Programming, August 2020 Published in the journal Proceedings of the ACM on Programming Languages (PACMPL) Armaël Guéneau, Jacques-Henri Jourdan, Arthur Charguéraud, and François Pottier ITP: International Conference on Interactive Theorem Proving, September 2019 Armaël Guéneau, Arthur Charguéraud, and François Pottier ESOP: European Symposium on Programming, April 2018 Arthur Charguéraud and François Pottier JAR: Journal of Automated Reasoning, September 2017 Arthur Charguéraud and François Pottier ESOP: European Symposium on Programming, April 2017 Arthur Charguéraud CPP: Certified Programs and Proofs, January 2016 Arthur Charguéraud and François Pottier ITP: International Conference on Interactive Theorem Proving, August 2015 Arthur Charguéraud Report, journal version of the ICFP'11 paper, October 2012 Arthur Charguéraud ICFP: International Conference on Functional Programming, September 2011 Arthur Charguéraud ICFP: International Conference on Functional Programming, September 2010 Arthur Charguéraud PhD thesis, December 2010 Program verification using characteristic formulaeIn my thesis, I have developed a new approach to program verification based on the notion of characteristic formula. This approach is implemented in a tool, called CFML, which can be used to establish in Coq the full functional correctness of arbitrarily complex Caml programs. The characteristic formula of a piece of code is a logical formula that describes the semantics of this code (it is a form of strongest post-condition). This characteristic formula satisfies the following property:
The concept of characteristic formulaThe general concept of characteristic formula is not new: it originates in work on process calculi from the 80's (Park, 1981). In this setting, every syntactic process definition is mapped to a formula of Hennessy-Milner's logic. This mapping is such that two syntactic processes are behaviorally equivalent if and only if their associated formulae are logically equivalent. More recently, these results on process calculi were adapted to lambda-calculi by Honda, Berger and Yoshida, who derived a sound and complete Hoare logic for PCF (2006). I have turned the concept of characteristic formula into an effective approach to program verification my building formulae of linear size, expressed in a standard higher-order logic, associated with a pretty-printer, and including support for local reasoning. It is useful to understand what the characteristic formula approach is not:
|