Motivation and Goals
Software is becoming increasingly complex and responsible for critical tasks. Any technology aimed at ensuring the reliability and quality of software will be increasingly relevant, if not utterly necessary.
Only rigorous (e.g., mathematically sound) approaches can certify software with the highest possible assurance. These approaches include, among others, the use of specification languages, high-level programming languages (including equational, functional, and logic languages), the use of model checking and deductive verification, language-based approaches often interacting with theorem provers.
In this course we will give a hands-on introduction to rigorous software development methods that follow a “correctness-by-construction” approach.
While the course is not heavy in theory, everyone is expected to have a good understanding of first-order logic and programming experience. We will explore several methodologies that have approaches and underlying technical bases, but which share a common overarching goal: develop programs while making sure that non-trivial properties, expressing high-level design requirements regarding correctness, fairness and sometimes efficiency, are continuously respected.

To follow this course, you should have programming experience (three years or more), familiarity with formal (first-order) logic, formal proofs, logic programming, and concurrent programming. If you think you do not meet these requirements, please get in touch ASAP with one instructor to recommend you reading material.
Course Log and Pointers to Class Material
Click on the dates to expand the lecture’s content.
System Modelling using Refinement and Interactive Theorem Proving
01/02/2023: Introduction and motivation to rigorous software development. A taste of Event-B.
You can find here the slides for the introduction part of the course and the starting of our very light presentation of Event-B.
08/02/2023: Introduction to Event-B and logic
We introduced events and specified and developed imperative code to make integer division without using division or multiplication. We introduced sequents and inference rules and proved the correctness of the code to perform integer division. The slides are here.
15/02/2023: FOL and Rodin intro
We finished the first section ot the course by giving an informal introduction to the meaning of First Order Logic (FOL) and its inference rules in Gentzen style (slides). We started to use Rodin to redo the integer division example we did by hand. We introduced more formally the development of a sequential algorithms and we started one using Rodin from the beginning, also introducing refinement (slides).
22/02/2023: Specifying and proving search correct with Rodin
We continued with the specification and development of a search algorithm using Rodin: from the random guess approach we moved to a linear search, which we proved correct, and we finished with a more sophisticated binary search-like model which we still need to prove correct. The slides are here and the Rodin model so far is here.
22/03/2023: No lecture (sick leave)
29/03/2023: Finishing cars + theory
We finished the example with the cars and narrow bridge (slides + model available). We also saw how to represent some basic data structures in Event-B and how their definition allows us to derive the scheme for well-founded induction. Last, we (re)visited the foundations of Event-B: sets, relations, functions.
19/04/2023: Synchronization in a tree of processes
3/05/2023: Final versions of the COVID Market
Here is the complete set of slides and the final model.
10/5/2023:
17/5/2023:
Project Presentation Sessions
We plan one or two presentation sessions. We may have to use additional sessions depending on the number of project teams.
DD/MM/2023:
DD/06/2023:
08/07/2023:
Location, Schedule, Administrivia
Place and time
During the academic year 2022-2023 we will meet physically at classroom 6306 from 4pm to 7pm on Wednesdays. We will post any exception on the course mailing list (see below) and the course log.
Teachers
Manuel Carro (coordinator)
Office 035 at the IMDEA Software Institute (under appointment)- mcarro |at| fi DOT upm DOT es.
Manuel Hermenegildo
Office 386 at the IMDEA Software Institute (under appointment) – herme |at| fi DOT upm DOT es.
Communication
The mailing list archives are at https://software.imdea.org/mailman/private/cbc/ .
For security reasons, you cannot subscribe to the mailing list by yourself. You should have been subscribed by some instructor, and you should have received a welcome message with the initial subscription. Note that you can only post to the list from the mail address that has been subscribed. If you want to change it, please let an instructor know. In normal situations, all important classroom announcements will go through the course mailing list, so please be sure to read the subscribed address regularly.
Course Policy
To keep this landing page short, the course policy appears in a separate page. This does not mean it is less important. Please make sure to read it.
Academic Resources
Please have a look as well at the Assorted Resources. It contains not-strictly-academic (but interesting) material!
Logic
- Lawrence Paulson’s Logic and Proof are the course notes of the author for a Logic course in Cambridge. Highly recommended, as they are both rigorous and very concise. They provide very good background material for both parts of the course.
- A very good book on the use of logic in computer science is Logic in Computer Science, by Huth and Ryan. It seems to be out of print, but the Computer Science School should have several copies. You may also consider locating an electronic copy on the Internet, if possible of the second edition.
- Mathematical Logic for Computer Science. Mordechai Ben-Ari. There should be copies in the School’s library.
- Sweet Reason: a Field Guide to Modern Logic. James M. Henle, Jay L. Garfield, Thomas Tymoczko. This book explains several topics on logic and logic reasoning with many entertaining non-technical examples from many sources. It does not focus on logic and computation, however.
- Class notes on Gentzen systems and single-conclusioned Gentzen systems and refinement logic (the sequent calculus we use in the lectures) from the Spring 2009 CS 4860 (Applied Logic) course in Cornell. Syntax node: these classnotes sometimes use “⊃” to denote implication, when we (and many others) use “⇒”.
Formal Development
- Faultless Systems: Yes, we Can! is a short article by Jean-Raymond Abrial, the creator of Event-B (among other systems and proposals for rigorous software development) that explains the ideas behind the Event-B methodology.
- Twenty-Five Years of the B-Method: a short overview of the history of B and its descendant Event B and some of the projects in which it has been used.
Event B Reference
- The definitive reference for Event B is Modeling in Event-B: System and Software Engineering, by Jean-Raymond Abrial.
- The richest information point for Event B is the Event B wiki. A summary of the inference and equality rules, axioms, proof obligations, and syntax of Event B can be found in these slides.
- This reference card has a (very useful) summary of the Event B notation.
- The mathematical toolkit of Event B is explained in a report.
- An introduction to the Event-B method with a description of its phases.
Tools
Rodin
The essential tool to perform development with Event B is Rodin, an Eclipse-based tool. It includes an editor for the components of an Event B project that keeps track of the pending proof obligations and tries to discharge them on the fly. It has many plugins (installable directly from Rodin) that provide advanced theorem proving capabilities (to discharge proof obligations on demand and, hopefully, with only a button press), model checkers, animation, printout generation, and much more. You need to install it, as it will be use extensively during the course.
Please read this quick guide to installing Rodin. It includes some tips and instructions to perform several common tasks. This will save you time! At point, you will need to interact with the theorem provers. A page with tips for proving will be handy!
- Homepage of the Rodin versions. Please make sure to download the latest version.
- Installation instructions for RODIN.
- The handbook for Rodin. It does not correspond the latest tool version: some details differ, but the basic ideas remain.
- The Atelier B Provers plugin is necessary for any non-trivial development. Install it by going to Help ⇒ Install new software ⇒ select Atelier B Provers ⇒ Select in box ⇒ Click Next ⇒ Follow instructions. If you do not install these provers, many course examples will not work.
- Relevant sections of the manuals:
- How to set up a Rodin project (we will see it during the lectures).
- Hints on discharging proofs using RODIN. Read it: it contains many hints and information on how to use the built-in and external theorem provers.
- An explanation of the proving perspective from the user interface point of view.
- A catalog of the proof obligations generated by RODIN and their meaning.
- A list of the inference rules and rewriting rules in the default Event B prover (extracted from the Event B website).
Ciao
During the second part of the course you will run the examples and exercises discussed in class on Ciao, a programming system in the Prolog family which allows using pure logic programming, standard Prolog, functions, constraints, and several other paradigms and language extensions.
The following are useful resources for Ciao:
- Most information on the system can be found in the Ciao Web site.
- In particular, you can find installation instructions, and
- The main manuals and other documentation.
- A list of optional bundles that can be added to Ciao.
- This cheat sheet with installation instructions for the main operating systems can also come in handy.
- These are some slides on the basic use of a logic and constraint programming system.
This technical paper provides a good overall overview of the system as well as the motivations behind Ciao’s design.