How To Install planarity on Fedora 34

planarity is Implementations of several planarity-related graph algorithms Implementations of several planarity-related graph algorithms

Introduction

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

What is planarity

This code project provides a library for implementing graph algorithms as well as implementations of several planarity-related graph algorithms. The origin of this project is the reference implementation for the Edge Addition Planarity Algorithm, which is now the fastest and simplest linear-time method for planar graph embedding and planarity obstruction isolation (i.e. Kuratowski subgraph isolation). The software in this code project provides a graph algorithm framework and library, including an updated version of the edge addition combinatorial planar graph embedder and planar obstruction isolator (i.e., a Kuratowski subgraph isolator). This code project also includes several extensions that implement planarity-related algorithms such as a planar graph drawing algorithm, an outerplanar graph embedder and outerplanar obstruction isolator, and a number of subgraph homeomorphism search algorithms. planarity 3.0.1.0 2.fc34 x86_64 86 k planarity-3.0.1.0-2.fc34.src.rpm fedora Implementations of several planarity-related graph algorithms https BSD This code project provides a library for implementing graph algorithms as well as implementations of several planarity-related graph algorithms. The origin of this project is the reference implementation for the Edge Addition Planarity Algorithm, which is now the fastest and simplest linear-time method for planar graph embedding and planarity obstruction isolation (i.e. Kuratowski subgraph isolation). The software in this code project provides a graph algorithm framework and library, including an updated version of the edge addition combinatorial planar graph embedder and planar obstruction isolator (i.e., a Kuratowski subgraph isolator). This code project also includes several extensions that implement planarity-related algorithms such as a planar graph drawing algorithm, an outerplanar graph embedder and outerplanar obstruction isolator, and a number of subgraph homeomorphism search algorithms.

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

Install planarity 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 planarity using dnf by running the following command:

sudo dnf -y install planarity

Install planarity 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 planarity using yum by running the following command:

sudo yum -y install planarity

How To Uninstall planarity on Fedora 34

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

sudo dnf remove planarity

planarity Package Contents on Fedora 34

/usr/bin/planarity
/usr/lib/.build-id
/usr/lib/.build-id/18
/usr/lib/.build-id/18/c3d7b3b2a4bb278dd3dbd0cb7965ef9ac648a4
/usr/lib/.build-id/df
/usr/lib/.build-id/df/305737446733e546aba67a00cf0cc814d9bba8
/usr/lib/libplanarity.so.0
/usr/lib/libplanarity.so.0.0.1
/usr/share/doc/planarity
/usr/share/doc/planarity/README.md
/usr/share/licenses/planarity
/usr/share/licenses/planarity/LICENSE.TXT
/usr/share/man/man1/planarity.1.gz
/usr/bin/planarity
/usr/lib/.build-id
/usr/lib/.build-id/4a
/usr/lib/.build-id/4a/f7c2d844ca52e3ad0477209277412625683362
/usr/lib/.build-id/ca
/usr/lib/.build-id/ca/7b860c2f2b61621fc9be830a18d3d8f764771e
/usr/lib64/libplanarity.so.0
/usr/lib64/libplanarity.so.0.0.1
/usr/share/doc/planarity
/usr/share/doc/planarity/README.md
/usr/share/licenses/planarity
/usr/share/licenses/planarity/LICENSE.TXT
/usr/share/man/man1/planarity.1.gz

References

Summary

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