Skip to content

graph-algorithms/edge-addition-planarity-suite

Repository files navigation

Edge Addition Planarity Suite

The primary purpose of this repository is to provide implementations of the edge addition planar graph embedding algorithm and related algorithms, including a planar graph drawing method, an isolator for a minimal subgraph obstructing planarity in non-planar graphs, outerplanar graph embedder and obstruction isolator algorithms, and tester/isolator algorithms for subgraphs homeomorphic to K2,3, K4, and K3,3. The C implementations in this repository are the reference implementations of algorithms appearing in the following papers:

As secondary purpose of this repository is to provide a generalized graph API that enables implementation of a very wide range of in-memory graph algorithms including basic methods for reading, writing, depth first search, and lowpoint as well as advanced methods for solving planarity, outerplanarity, drawing, and selected subgraph homeomorphism problems. An extension mechanism is also provided to enable implementation of planarity-related algorithms by overriding and augmenting data structures and methods of the core planarity algorithm.

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.

Pre-compiled Executable Releases for Non-Developers

On several distributions of Linux, you may be able to get the planarity executable with sudo apt-get install planarity , or you may already have it you have Matlab. For non-developer Windows users, there is also a pre-compiled executable version of the algorithm implementations. Download and decompress the planarity-N.N.N.N.WindowsExe.zip file.

If you run the planarity executable program, it will offer an interactive, menu-driven mode that lets a user manually select algorithms to run and, where appropriate, files containing graphs on which to run the algorithms.

The planarity executable program also supports an extensive list of command-line parameters that make it possible to automate the execution of any of the algorithms included in the application. Run planarity with the "-h" command-line parameter to get more information about the command line options, and use "-h -menu" for more extensive information about command-line mode. Essentially, all functionality available in the interactive, menu-driven mode is also available via the command-line parameters.

Setting up a Development Environment

A development environment for the C reference implementations can be set up based on Eclipse.

  1. Install a recent version of the Java JDK (such as Java version 14 or higher)
  2. Ensure that you set the JAVA_HOME system environment variable (e.g. to c:\Program Files\Java\jdk-14.0.1)
  3. Ensure that you add %JAVA_HOME%\bin to your system PATH
  4. Install Eclipse, such as the "Eclipse IDE for Enterprise Java Developers"
  5. Install gcc, gdb, and msys (e.g. download and run mingw-get-setup.exe from here and then use the package installer to install C and C++, GDB, MSYS, and any other packages you may want.)
  6. Ensure your gcc is accessible from the command line (e.g. add C:\MinGW\bin to the system PATH)
  7. In Eclipse, and install the C Development Tools (CDT)
    1. In Eclipse, choose the menu option Help > Install New Software
    2. Choose to work with the main repository (e.g. 2020 - 06 - http://download.eclipse.org/releases)
    3. Under Programming Languages, choose C/C++ Autotools, C/C++ Development Tools, C/C++ Development Tools SDK, C/C++ Library API Documentation Hover Help, and C/C++ Unit Testing Support

Working with the Code in the Development Environment

  1. Copy the HTTPS clone URL into the copy/paste buffer
    1. In this repository, the "Code" button provides the HTTPS clone link to use to get the code.
  2. Start by making a new eclipse workspace for 'graph-algorithms'
    1. You may need to select 'Prompt for Workspace on startup' in Window | Preferences | General | Startup and Shutdown | Workspaces, then close and reopen eclipse
    2. In the initial workspace dialogue, one can specify a new folder that gets created, e.g. c:\Users\you\Documents\eclipse\workspaces-cpp\graph-algorithms
  3. Click 'Checkout projects from Git' in the new workspace Welcome page
  4. Pick 'Clone URI' and hit Next
  5. The URI, Host, and Repository are pre-filled correctly from the copy/paste clipboard.
  6. Leave the User/Password blank (unless you have read/write access to the project), and hit Next
  7. The master branch is selected by default, so just hit Next again
  8. Change the destination directory to a subdirectory where you want to store the project code (e.g. c:\Users\you\Documents\eclipse\workspaces-cpp\graph-algorithms\edge-addition-planarity-suite)
  9. Hit Next (which downloads the project), Hit Next again (to Import existing Eclipse projects), Hit Finish

Now that the project is available, the code can be built and executed:

  1. Open the C/C++ Perspective
    1. Use the Open Perspectives button (or use Windows | Perspective | Open Perspective | Other...)
    2. Select C/C++
  2. Right-click Planarity-C project, Build Configurations, Build All
  3. Right-click Planarity-C project, Build Configurations, Set Active, Release
  4. Right-click Planarity-C project, Run As, Local Application, planarity.exe (release)

Making the Distribution

Once one has set up the development environment and is able to work with the code in the development environment, it is possible to make the distribution with the following additional steps:

  1. Ensure that the autotools, configure, and make are available on the command-line (e.g. add C:\MinGW\msys\1.0\bin to the system PATH before Windows Program Files to ensure that the find program is the one from MSYS rather than the one from Windows (e.g., adjust the PATH variable as needed)).
  2. Navigate to .../edge-addition-planarity-suite (the directory containing configure.ac and the c subdirectory)
  3. Get into bash (e.g., type bash in the Windows command-line), then enter the following commands:
    1. autogen.sh
    2. configure
    3. make dist
    4. make distcheck

The result is a validated planarity-N.N.N.N.tar.gz distribution, where N.N.N.N is the version number expressed in the configure.ac file.

Making and Running the Software from the Distribution

If you have done the steps to set up the development environment and work with the code, then you can make and run the software using the development environment, so you don't necessarily need to make or run the software using the process below.

You also don't necessarily need to make and install the planarity software on Linux if you are able to get it using sudo apt-get planarity .

However, you may have only downloaded the distribution (i.e., planarity-N.N.N.N.tar.gz ) from a Release tag of this project. Once you have decompressed the distribution into a directory, you can make it by getting into bash (e.g., type bash in the Windows command-line) and then entering the following commands:

  1. configure
  2. make

At this point, the planarity executable can be run from within the distribution directory. For example, on Windows, go to the ".libs" subdirectory containing the planarity executuable and the libplanarity DLL and run planarity -test ../c/samples on the command-line.

On Linux, the planarity program can also be installed by entering sudo make install on the command-line. Note that the libplanarity shared object and symlinks will be installed to /usr/local/lib so it will be necessary to set LD_LIBRARY_PATH accordingly. For one session, this can be done with export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib . To make it more permanent, you could use:

  1. Create a new file " /etc/ld.so.conf.d/planarity.conf " containing " /usr/local/lib " (without the quotes)
  2. sudo ldconfig

Contributing

Subject to your acceptance of the license agreement, contributions can be made via a pull request. Before submitting a pull request, please ensure that you have set your github user name and email within your development environment. For Eclipse, you can use the following steps:

  1. Window > Preferences > Team > Git > Configuration
  2. Add Entry... user.name (set the value to your github identity)
  3. Add Entry... user.email (set the value to the primary email of your github identity)
  4. Hit Apply and Close

Versioning

The APIs for the graph library and the planarity algorithm implementations are versioned using the method documented in configure.ac.

The planarity.exe application, which provides command-line and menu-driven interfaces for the graph library and planarity algorithms, is versioned according to the Major.Minor.Maintenance.Tweak numbering system documented in the comments in planarity.c.

License

This project is licensed under a 3-clause BSD License appearing in LICENSE.TXT.

Related Works and Further Documentation

There have been successful technology transfers of the implementation code and/or algorithms of this project into other projects. To see a list of the related projects and for further documentation about this project, please see the project wiki.