Skip to content

Commit

Permalink
Merge branch 'stable-1.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
wilfwilson committed Mar 3, 2021
2 parents 6a4ab85 + 71d4103 commit 10d1ee8
Show file tree
Hide file tree
Showing 73 changed files with 1,628 additions and 904 deletions.
8 changes: 7 additions & 1 deletion .codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,10 @@ comment:
behavior: default

ignore:
- "extern" # Do not check coverage on the extern directory
- "extern/"
- "gap/utils.gi"
- "PackageInfo.g"
- "init.g"
- "makedoc.g"
- "read.g"
- "tst/testall.g"
7 changes: 4 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ planarity
src/.deps/*
src/.libs/*
src/_pkgconfig.h
extern/edge-addition-planarity-suite-Version_3.0.0.5/.libs
extern/edge-addition-planarity-suite-Version_3.0.0.5/c/.deps
extern/edge-addition-planarity-suite-Version_3.0.0.5/m4
extern/edge-addition-planarity-suite-Version_*/.libs
extern/edge-addition-planarity-suite-Version_*/c/.deps
extern/edge-addition-planarity-suite-Version_*/m4
src/stamp-h1
tags
tst/out/*
Expand All @@ -74,3 +74,4 @@ coverage
.ipynb_checkpoints
bliss
*.a
*.dylib
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ AS_IF([test "x$enable_compile_warnings" != "xno"],
AX_CHECK_PLANARITY()

if test "x$with_external_planarity" = xno ; then
AC_CONFIG_SUBDIRS([extern/edge-addition-planarity-suite-Version_3.0.0.5])
PLANARITY_SUITE_DIR=extern/edge-addition-planarity-suite-Version_3.0.0.5
AC_CONFIG_SUBDIRS([extern/edge-addition-planarity-suite-Version_3.0.1.0])
PLANARITY_SUITE_DIR=extern/edge-addition-planarity-suite-Version_3.0.1.0
AC_SUBST(PLANARITY_SUITE_DIR)
fi

Expand Down
35 changes: 34 additions & 1 deletion doc/digraphs.bib
Original file line number Diff line number Diff line change
@@ -1,7 +1,40 @@
% Cite keys match the cite keys that are used in the compiled GAPDoc manual
@article{B12,
author = {John M. Boyer},
title = {Subgraph Homeomorphism via the Edge Addition Planarity Algorithm},
journal = {Journal of Graph Algorithms and Applications},
year = {2012},
volume = {16},
number = {2},
pages = {381--410},
doi = {10.7155/jgaa.00268}
}

@article{BM04,
author = {John M. Boyer and Wendy J. Myrvold},
title = {On the Cutting Edge: Simplified O(n) Planarity by Edge Addition},
journal = {Journal of Graph Algorithms and Applications},
year = {2004},
volume = {8},
number = {3},
pages = {241--273},
doi = {10.7155/jgaa.00091}
}

@inproceedings{B06,
address = {Berlin, Heidelberg},
author = {John M. Boyer},
booktitle = {Graph Drawing},
editor = {Healy, Patrick and Nikolov, Nikola S.},
isbn = {978-3-540-31667-1},
pages = {508--511},
publisher = {Springer Berlin Heidelberg},
title = {A New Method for Efficiently Generating Planar Graph Visibility Representations},
year = {2006}}

@incollection{BM06,
Author = {John M. Boyer and Wendy J. Myrvold},
author = {John M. Boyer and Wendy J. Myrvold},
Booktitle = {Graph Algorithms and Applications 5},
Doi = {10.1142/9789812773289_0014},
Month = {Jun},
Expand Down
8 changes: 8 additions & 0 deletions doc/z-chap0.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,14 @@
<Ref Sect="Isomorphisms and canonical labellings"/> for more details.
<P/>

The &edge-addition-planarity-suite; is also included in &Digraphs;; see
<Cite Key="BM04"/>, <Cite Key="B06"/>, <Cite Key="BM06"/>, and <Cite
Key="B12"/> . The &edge-addition-planarity-suite; is an open-source
implementation of the edge addition planar graph embedding algorithm and
related algorithms by John M. Boyer. See Section <Ref Sect="Planarity"/> for
more details.
<P/>

From version 1.0.0 of this package, digraphs can be either mutable or immutable.
Mutable digraphs can be changed in-place by many of the methods in the
package, which avoids unnecessary copying. Immutable digraphs cannot be
Expand Down
2 changes: 1 addition & 1 deletion doc/z-chap5.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<#Include Label="IsCycleDigraph">
</Section>

<Section><Heading>Planarity</Heading>
<Section Label="Planarity"><Heading>Planarity</Heading>
<#Include Label="IsPlanarDigraph">
<#Include Label="IsOuterPlanarDigraph">
</Section>
Expand Down
32 changes: 0 additions & 32 deletions extern/edge-addition-planarity-suite-Version_3.0.0.5/.gitignore

This file was deleted.

46 changes: 0 additions & 46 deletions extern/edge-addition-planarity-suite-Version_3.0.0.5/LICENSE.TXT

This file was deleted.

Loading

0 comments on commit 10d1ee8

Please sign in to comment.