How To Install libssreflect-coq on Debian 9

In this tutorial we learn how to install libssreflect-coq on Debian 9. libssreflect-coq is small scale reflection library for Coq (theories)

Introduction

In this tutorial we learn how to install libssreflect-coq on Debian 9.

What is libssreflect-coq

libssreflect-coq is:

The name Ssreflect stands for “small scale reflection”, a style of proof that evolved from the computer-checked proof of the Four Colour Theorem and which leverages the higher-order nature of Coq’s underlying logic to provide effective automation for many small, clerical proof steps. This is often accomplished by restating (“reflecting”) problems in a more concrete form, hence the name. For example, in the Ssreflect library, arithmetic comparison is not an abstract predicate, but a function computing a boolean.

The Ssreflect distribution comprises two parts:

  • A new tactic language, which promotes more structured, concise and robust proof scripts, and is in fact independent from the “reflection” proof style. It is implemented as a linkable extension to the Coq system.
  • A comprehensive set of Coq libraries covering topics as combinatorics and algebra.

This package installs the full Ssreflect distribution.

There are three methods to install libssreflect-coq on Debian 9. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install libssreflect-coq Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install libssreflect-coq using apt-get by running the following command:

sudo apt-get -y install libssreflect-coq

Install libssreflect-coq Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install libssreflect-coq using apt by running the following command:

sudo apt -y install libssreflect-coq

Install libssreflect-coq Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install libssreflect-coq using aptitude by running the following command:

sudo aptitude -y install libssreflect-coq

How To Uninstall libssreflect-coq on Debian 9

To uninstall only the libssreflect-coq package we can use the following command:

sudo apt-get remove libssreflect-coq

Uninstall libssreflect-coq And Its Dependencies

To uninstall libssreflect-coq and its dependencies that are no longer needed by Debian 9, we can use the command below:

sudo apt-get -y autoremove libssreflect-coq

Remove libssreflect-coq Configurations and Data

To remove libssreflect-coq configuration and data from Debian 9 we can use the following command:

sudo apt-get -y purge libssreflect-coq

Remove libssreflect-coq configuration, data, and all of its dependencies

We can use the following command to remove libssreflect-coq configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge libssreflect-coq

Dependencies

libssreflect-coq have the following dependencies:

References

Summary

In this tutorial we learn how to install libssreflect-coq package on Debian 9 using different package management tools: apt, apt-get and aptitude.