How To Install ltl2ba on Fedora 34

ltl2ba is Fast translation from LTL formulas to Buchi automata

Introduction

In this tutorial we learn how to install ltl2ba on Fedora 34.

What is ltl2ba

Translate from Linear temporal logic (LTL) formulas to Buchi automata. LTL is a type of formal logic that extends formal logic with qualifiers involving time. A Buchi automaton is the extension of a finite state automaton to infinite inputs, and are useful for specifying behavior of non-terminating systems (such as hardware or operating systems). A Buchi automaton accepts an infinite input sequence if and only if there exists a run of the automaton which visits at least one of the final states infinitely often. The implementation is based on the translation algorithm by Gastin and Oddoux, presented at the CAV Conference, held in 2001, Paris, France 2001.

We can use yum or dnf to install ltl2ba on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install ltl2ba.

Install ltl2ba on Fedora 34 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install ltl2ba using dnf by running the following command:

sudo dnf -y install ltl2ba

Install ltl2ba on Fedora 34 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install ltl2ba using yum by running the following command:

sudo yum -y install ltl2ba

How To Uninstall ltl2ba on Fedora 34

To uninstall only the ltl2ba package we can use the following command:

sudo dnf remove ltl2ba

ltl2ba Package Contents on Fedora 34

/usr/bin/ltl2ba
/usr/lib/.build-id
/usr/lib/.build-id/cb
/usr/lib/.build-id/cb/94978d3c085ad0aa1b34bab0a812fbcfd8ba2e
/usr/share/doc/ltl2ba
/usr/share/doc/ltl2ba/README
/usr/share/licenses/ltl2ba
/usr/share/licenses/ltl2ba/LICENSE
/usr/share/man/man1/ltl2ba.1.gz

References

Summary

In this tutorial we learn how to install ltl2ba on Fedora 34 using yum and dnf.