Skip to content

Commit d836ca0

Browse files
committed
Update package for v1.0.1 release
1 parent 82bd4dd commit d836ca0

File tree

4 files changed

+89
-61
lines changed

4 files changed

+89
-61
lines changed

CHANGELOG.md

Lines changed: 83 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,29 @@ Torpey, Wilf A. Wilson et al.
44

55
Licensing information can be found in the `LICENSE` file.
66

7+
## Version 1.0.1 (released 05/10/2019)
8+
9+
This is a minor release of the Digraphs package. The main change in this
10+
release is the reintroduction of the three-argument version of
11+
`DigraphAddVertices`, which accepts a digraph, a number of vertices to add, and
12+
a list of labels for the new vertices. The removal inadvertantly broke
13+
backwards compatbility with some third-party pre-existing code that relied on
14+
this functionality in the Digraphs package (see
15+
[Issue #264](https://github.com/gap-packages/Digraphs/issues/264)).
16+
17+
The second argument of the three-argument version was redundant, and so a new
18+
two-argument version of `DigraphAddVertices`, which accepts a digraph and a list
19+
of new vertex labels, was introduced in v1.0.0. Unfortunately, the concurrent
20+
removal of the three-argument version of `DigraphAddVertices` was not advertised
21+
in the `CHANGELOG`. Although the three-argument version has been reintroduced,
22+
it will remain undocumented, since there is no good reason for any new code to
23+
use the three-argument version.
24+
25+
The author contact data on the title page of the manual was also updated.
26+
27+
The changes in this version were made by [Wilf A. Wilson][].
28+
29+
730
## Version 1.0.0 (released 03/10/2019)
831

932
This is a major release of the Digraphs package that introduces significant new
@@ -71,8 +94,8 @@ stores, and so the effect is as before. For an mutable digraph, calling `Foo`
7194
modifies the digraph in-place, which remains mutable.
7295

7396
The majority of the changes in Digraphs relating to mutable and immutable
74-
digraphs were made by [James D. Mitchell](http://goo.gl/ZtViV6), Finn Smith, and
75-
[Wilf A. Wilson](http://wilf.me), with some further contributions by Reinis
97+
digraphs were made by [James D. Mitchell][], Finn Smith, and
98+
[Wilf A. Wilson][], with some further contributions by Reinis
7699
Cirpons, Luke Elliott, and Murray Whyte.
77100

78101
### New and extended functions
@@ -107,9 +130,9 @@ The package now includes the following new functions:
107130
[#217](https://github.com/gap-packages/Digraphs/pull/217), respectively.
108131
* `DotHighlightedDigraph` was added by Finn Smith in
109132
[PR #169](https://github.com/gap-packages/Digraphs/pull/169).
110-
* `IsCompleteMultipartiteDigraph` was added by [Wilf A. Wilson](http://wilf.me)
133+
* `IsCompleteMultipartiteDigraph` was added by [Wilf A. Wilson][]
111134
in [PR #236](https://github.com/gap-packages/Digraphs/pull/236).
112-
* `IsEquivalenceDigraph` was added by [Wilf A. Wilson](http://wilf.me) in
135+
* `IsEquivalenceDigraph` was added by [Wilf A. Wilson][] in
113136
[PR #234](https://github.com/gap-packages/Digraphs/pull/234) as a synonym for
114137
`IsReflexiveDigraph and IsSymmetricDigraph and IsTransitiveDigraph`.
115138
* `IsVertexTransitive` and `IsEdgeTransitive` were added by Graham Campbell
@@ -130,7 +153,7 @@ The package now includes the following new functions:
130153
[PR #225](https://github.com/gap-packages/Digraphs/pull/225).
131154
* The ability to compile (with the flag `--with-external-planarity`) and use
132155
the Digraphs package with the system version of the Edge Addition Planarity
133-
Suite was added by [James D. Mitchell](http://goo.gl/ZtViV6) in
156+
Suite was added by [James D. Mitchell][] in
134157
[PR #207](https://github.com/gap-packages/Digraphs/pull/207).
135158

136159

@@ -142,9 +165,9 @@ In previous versions, the homomorphism-finding tools sometimes returned
142165
purported ‘monomoprhisms’ that were not injective. This problem was reported by
143166
Gordon Royle, see
144167
[Issue #222](https://github.com/gap-packages/Digraphs/issues/222),
145-
and fixed by [James D. Mitchell](http://goo.gl/ZtViV6) in
168+
and fixed by [James D. Mitchell][] in
146169
[PR #223](https://github.com/gap-packages/Digraphs/pull/223).
147-
In addition, [Wilf A. Wilson](http://wilf.me)
170+
In addition, [Wilf A. Wilson][]
148171
[fixed a bug](https://github.com/gap-packages/Digraphs/commit/458a10298b08881bf7ee9207534ce431378d2c4e)
149172
in `DigraphNrEdges`. This function could previously lead to a crash when given a
150173
digraph whose `OutNeighbours` contained entries not in `IsPlistRep`.
@@ -191,7 +214,7 @@ information. The Digraphs package now uses the nauty format, although digraphs
191214
encoded using the old format can still be read in. This incompatibility was
192215
reported by
193216
[Jukka Kohonen](https://tuhat.helsinki.fi/portal/en/persons/jukka-kohonen(a6f3f037-4918-4bf5-a114-ac417f94beb5).html), and the changes were made by
194-
[Michael Torpey](http://www-groups.mcs.st-and.ac.uk/~mct25) in
217+
[Michael Torpey][] in
195218
[PR #162](https://github.com/gap-packages/Digraphs/pull/162).
196219

197220
Other additions and changes are listed below:
@@ -209,7 +232,7 @@ Other additions and changes are listed below:
209232
* `SubdigraphHomeomorphicToK(23/4/33)`, and
210233
* `MaximalAntiSymmetricSubdigraph`.
211234
* The functionality and performance for computing homomorphisms of digraphs was
212-
significantly improved by [James D. Mitchell](http://goo.gl/ZtViV6) in [PR
235+
significantly improved by [James D. Mitchell][] in [PR
213236
#160](https://github.com/gap-packages/Digraphs/pull/160). This PR also
214237
introduced the operations `EmbeddingsDigraphs` and
215238
`EmbeddingsDigraphsRepresentatives`.
@@ -247,16 +270,16 @@ This release contains bugfixes and a couple of new features.
247270
* In previous versions of the package, the output of `ArticulationPoints` would
248271
sometimes contain repeated vertices (reported by Luke Elliott in [Issue
249272
#140](https://github.com/gap-packages/Digraphs/issues/140), and fixed by
250-
[James D. Mitchell](http://goo.gl/ZtViV6) in [PR
273+
[James D. Mitchell][] in [PR
251274
#142](https://github.com/gap-packages/Digraphs/pull/142)).
252275
* In previous versions of the package, an unexpected error was sometimes caused
253276
when removing an immutable set of vertices from a digraph (reported and fixed
254-
by [James D. Mitchell](http://goo.gl/ZtViV6) in [PR
277+
by [James D. Mitchell][] in [PR
255278
#146](https://github.com/gap-packages/Digraphs/pull/146)).
256279
* The header file `x86intrin.h` was unnecessarily being included by the kernel
257-
module of Digraphs (reported by [Wilf A. Wilson](http://wilf.me) in [Issue
280+
module of Digraphs (reported by [Wilf A. Wilson][] in [Issue
258281
#147](https://github.com/gap-packages/Digraphs/issues/147), and fixed by
259-
[James D. Mitchell](http://goo.gl/ZtViV6) in [PR
282+
[James D. Mitchell][] in [PR
260283
#152](https://github.com/gap-packages/Digraphs/pull/152)).
261284

262285
[Max Horn](https://www.quendi.de/math) also contributed various compatibility
@@ -277,7 +300,7 @@ This release of Digraphs contains some bugfixes, along with the following new fe
277300
* `DotPartialOrderDigraph`
278301
* `DotPreorderDigraph`
279302
* `DotQuasiorderDigraph`
280-
* The following functions for transformations and permutations were added by [James D. Mitchell](http://goo.gl/ZtViV6):
303+
* The following functions for transformations and permutations were added by [James D. Mitchell][]:
281304
* `IsDigraphHomomorphism`
282305
* `IsDigraphEpimorphism`
283306
* `IsDigraphMonomorphism`
@@ -295,7 +318,7 @@ system of the package.
295318
## Version 0.12.1 (released 26/04/2018)
296319

297320
This is a minor release, which contains several bugfixes. The following problems
298-
were resolved by [James D. Mitchell](http://goo.gl/ZtViV6):
321+
were resolved by [James D. Mitchell][]:
299322

300323
* `HomomorphismDigraphFinder` sometimes failed to find a homomorphism when one existsed [[Issue #111](https://github.com/gap-packages/Digraphs/issues/111), reported by Gordon Royle];
301324
* the documentation for `HomomorphismDigraphFinder` was
@@ -307,7 +330,7 @@ were resolved by [James D. Mitchell](http://goo.gl/ZtViV6):
307330

308331
This release contains bugfixes and new features. In particular, it:
309332

310-
* fixes [a bug in `ArticulationPoints` and `IsBiconnectedDigraph`](https://github.com/gap-packages/Digraphs/issues/102) [[Wilf A. Wilson](http://wilf.me)];
333+
* fixes [a bug in `ArticulationPoints` and `IsBiconnectedDigraph`](https://github.com/gap-packages/Digraphs/issues/102) [[Wilf A. Wilson][]];
311334
* adds the property `IsChainDigraph` [Ashley Clayton]; and
312335
* adds the operation `IsDigraphAutomorphism` [Chris Russell].
313336

@@ -323,15 +346,15 @@ package](https://github.com/sebasguts/NautyTracesInterface) for GAP, version 0.2
323346
or newer. However, this is not a required package, and the default engine
324347
remains [bliss](http://www.tcs.hut.fi/Software/bliss/). It is possible to
325348
specify the engine that is used by Digraphs. These changes to Digraphs were made
326-
by [James D. Mitchell](http://goo.gl/ZtViV6)].
349+
by [James D. Mitchell][]].
327350

328351
In particular, version 0.11.0 includes the following changes:
329352

330353
* `BlissAutomorphismGroup` and `NautyAutomorphismGroup` are introduced.
331354
* `DigraphCanonicalLabelling` is replaced by `BlissCanonicalLabelling` and
332355
`NautyCanonicalLabelling`.
333356
* `BlissCanonicalDigraph` and `NautyCanonicalDigraph` are introduced [Chris
334-
Russell and [James D. Mitchell](http://goo.gl/ZtViV6)].
357+
Russell and [James D. Mitchell][]].
335358
* `DigraphsUseNauty` and `DigraphsUseBliss` are introduced.
336359

337360
The property `IsHamiltonianDigraph` and the attribute `HamiltonianPath` were
@@ -348,10 +371,10 @@ bug in `Digraph` that could cause a segmentation fault.
348371
This release contains new features, bugfixes, and minor improvements to the
349372
documentation. There is a new method for `ChromaticNumber`, which has better
350373
performance than the previous method
351-
[[Julius Jonusas](http://www-groups.mcs.st-and.ac.uk/~julius)
352-
and [James D. Mitchell](http://goo.gl/ZtViV6)].
374+
[[Julius Jonusas][]
375+
and [James D. Mitchell][]].
353376
A bug in the code for calculating homomorphisms of digraphs, which could cause
354-
a crash, was resolved [[James D. Mitchell](http://goo.gl/ZtViV6)].
377+
a crash, was resolved [[James D. Mitchell][]].
355378

356379
### New Features in Version 0.10.0
357380

@@ -363,21 +386,21 @@ labels, by using the new operation `DotVertexLabelledDigraph`.
363386
* `SemigroupOfCayleyDigraph`
364387
* `GeneratorsOfCayleyDigraph`
365388

366-
All of the new features were added by [James D. Mitchell](http://goo.gl/ZtViV6).
389+
All of the new features were added by [James D. Mitchell][].
367390

368391
## Version 0.9.0 (released 12/07/2017)
369392
This release introduces several new features.
370393

371394
### New Features in Version 0.9.0
372395
The following attributes and properties were added by
373-
[James D. Mitchell](http://goo.gl/ZtViV6):
396+
[James D. Mitchell][]:
374397

375398
* `ArticulationPoints` (and its synonym `CutVertices`)
376399
* `IsBiconnectedDigraph`
377400
* `IsCycleDigraph`
378401

379402
The following operations related to matchings were added by Isabella Scott and
380-
[Wilf A. Wilson](http://wilf.me):
403+
[Wilf A. Wilson][]:
381404

382405
* `IsMatching`
383406
* `IsPerfectMatching`
@@ -394,9 +417,9 @@ improvements to the documentation of the package.
394417
### New Features in Version 0.8.0
395418

396419
This release introduces the new operations `DigraphClosure`
397-
[[Julius Jonusas](http://www-groups.mcs.st-and.ac.uk/~julius)]
420+
[[Julius Jonusas][]]
398421
and `BooleanAdjacencyMatrixMutableCopy`
399-
[[Wilf A. Wilson](http://wilf.me)],
422+
[[Wilf A. Wilson][]],
400423
along with the following properties and operations related to semilattices
401424
[Chris Russell]:
402425

@@ -414,7 +437,7 @@ This is a minor release, which fixes bugs in `DigraphTopologicalSort` and
414437
## Version 0.7.0 (released 14/03/2017)
415438
This release introduces several new features, changes some existing
416439
functionality, and improves the documentation. The changes in this release were
417-
made by [Wilf A. Wilson](http://wilf.me).
440+
made by [Wilf A. Wilson][].
418441

419442
### New Features in Version 0.7.0
420443
* This release contains a new technique for encoding a vertex-coloured
@@ -455,11 +478,11 @@ package's documentation. In this version, we welcome Luke Elliott and
455478
Markus Pfeiffer as new authors.
456479

457480
### New Features in Version 0.6.0
458-
* The ability to label the edges of digraphs is introduced. [[Markus Pfeiffer](https://www.morphism.de/~markusp)]
459-
* The operation `CompleteMultipartiteDigraph` is introduced. [Stuart Burrell and [Wilf A. Wilson](http://wilf.me)]
481+
* The ability to label the edges of digraphs is introduced. [[Markus Pfeiffer][]]
482+
* The operation `CompleteMultipartiteDigraph` is introduced. [Stuart Burrell and [Wilf A. Wilson][]]
460483
* The operations `ReadDIMACSDigraph` and `WriteDIMACSDigraph` are introduced.
461-
[[Wilf A. Wilson](http://wilf.me)]
462-
* The operation `ChromaticNumber` is introduced. [[James D. Mitchell](http://goo.gl/ZtViV6) and [Wilf A. Wilson](http://wilf.me)]
484+
[[Wilf A. Wilson][]]
485+
* The operation `ChromaticNumber` is introduced. [[James D. Mitchell][] and [Wilf A. Wilson][]]
463486
* The operations `IsDirectedTree` and `IsUndirectedTree` are introduced. [Luke Elliott]
464487
* The operation `IsEulerianDigraph`is introduced. [Luke Elliott]
465488

@@ -487,32 +510,31 @@ The performance improvements are most noticeable on large, quite dense digraphs.
487510

488511
Minor changes include:
489512

490-
* a better method for `DigraphReverse` [[Wilf A. Wilson](http://wilf.me)]
513+
* a better method for `DigraphReverse` [[Wilf A. Wilson][]]
491514
* automorphism groups of complete, empty, cycle, chain, and complete bipartite
492-
digraphs are set at creation [[Michael Torpey](http://www-groups.mcs.st-and.ac.uk/~mct25)]
493-
* a minor improvement in performance in the `DigraphMaximalCliques` [[Wilf A. Wilson](http://wilf.me)]
494-
* a new operation `AdjacencyMatrixMutableCopy` [[James D. Mitchell](http://goo.gl/ZtViV6)]
515+
digraphs are set at creation [[Michael Torpey][]]
516+
* a minor improvement in performance in the `DigraphMaximalCliques` [[Wilf A. Wilson][]]
517+
* a new operation `AdjacencyMatrixMutableCopy` [[James D. Mitchell][]]
495518

496519
## Version 0.5.0 (released 03/03/2016)
497520
This release contains some bugfixes, as well as new and changed functionality.
498-
Digraphs now requires the [Orb package](http://gap-packages.github.io/orb/),
521+
Digraphs now requires the [Orb package](http://gap-packages.github.io/orb),
499522
version 4.7.5 or higher.
500523

501524
### New Features in Version 0.5.0
502-
* `DigraphFile` and `IteratorFromDigraphFile` are introduced. [[James D. Mitchell](http://goo.gl/ZtViV6)]
503-
* `WriteDigraphs` and `ReadDigraphs` can now take a file as a first argument. [[James D. Mitchell](http://goo.gl/ZtViV6)]
525+
* `DigraphFile` and `IteratorFromDigraphFile` are introduced. [[James D. Mitchell][]]
526+
* `WriteDigraphs` and `ReadDigraphs` can now take a file as a first argument. [[James D. Mitchell][]]
504527
* The operation `DigraphPath` is introduced to find a path between two vertices
505-
in a digraph. [[Wilf A. Wilson](http://wilf.me)]
528+
in a digraph. [[Wilf A. Wilson][]]
506529
* The operation `IteratorOfPaths` is introduced to iterate over the paths
507-
between two vertices in a digraph. [[Wilf A. Wilson](http://wilf.me)]
508-
* The property `IsCompleteBipartiteDigraph` is introduced. [[Wilf A. Wilson](http://wilf.me)]
530+
between two vertices in a digraph. [[Wilf A. Wilson][]]
531+
* The property `IsCompleteBipartiteDigraph` is introduced. [[Wilf A. Wilson][]]
509532

510533
### Issues Resolved in Version 0.5.0
511-
Several bugs related to clique finding have been resolved. [[Wilf A.
512-
Wilson](http://wilf.me)]
534+
Several bugs related to clique finding have been resolved. [[Wilf A. Wilson][]]
513535

514536
* Files with extension `bz2` were previously not (un)compressed when used with
515-
`ReadDigraphs` and `WriteDigraphs`. [[James D. Mitchell](http://goo.gl/ZtViV6)]
537+
`ReadDigraphs` and `WriteDigraphs`. [[James D. Mitchell][]]
516538
* The documentation in Chapter 8 "Finding cliques and independent sets" has been
517539
corrected to accurately reflect the functionality of the package.
518540
* A bug which led to too few cliques and independent sets being found for some
@@ -584,10 +606,8 @@ version, we welcomed Jan De Beule to the development team.
584606
- `OutDegreeSet`
585607
- `RepresentativeOutNeighbours`
586608

587-
[[Jan De Beule](http://homepages.vub.ac.be/~jdbeule/), [Julius Jonusas](http://www-groups.mcs.st-and.ac.uk/~julius),
588-
[James D. Mitchell](http://goo.gl/ZtViV6),
589-
[Michael Torpey](http://www-groups.mcs.st-and.ac.uk/~mct25),
590-
[Wilf A. Wilson](http://wilf.me)]
609+
[[Jan De Beule][], [Julius Jonusas][], [James D. Mitchell][],
610+
[Michael Torpey][], [Wilf A. Wilson][]]
591611

592612
## Version 0.3.2 (released 14/01/2016)
593613
This is another minor release due to some missing build files in the Version
@@ -601,20 +621,27 @@ This release contains a number of bugfixes and performance improvements.
601621

602622
### New Features in Version 0.3.0
603623
* The attribute `DigraphAllSimpleCircuits` based
604-
on the algorithm in [this paper](http://epubs.siam.org/doi/abs/10.1137/0204007?journalCode=smjcat) by Donald B. Johnson. [Stuart Burrell and [Wilf A. Wilson](http://wilf.me)]
605-
* Improve efficiency of the algorithm for coloring a graph with 2 colours, a method for `IsBipartiteDigraph` and `DigraphBicomponents`. [Isabella Scott and [Wilf A. Wilson](http://wilf.me)]
606-
* `AutomorphismGroup` and `DigraphCanonicalLabelling` can now be used with color classes that are preserved by the permutations acting on a digraph. [[James D. Mitchell](http://goo.gl/ZtViV6)]
607-
* The `TCodeDecoder` was made more efficient. [[James D. Mitchell](http://goo.gl/ZtViV6)]
608-
* `AsTransformation` is introduced for digraphs in `IsFunctionalDigraph`. [[James D. Mitchell](http://goo.gl/ZtViV6)]
624+
on the algorithm in [this paper](http://epubs.siam.org/doi/abs/10.1137/0204007?journalCode=smjcat) by Donald B. Johnson. [Stuart Burrell and [Wilf A. Wilson][]]
625+
* Improve efficiency of the algorithm for coloring a graph with 2 colours, a method for `IsBipartiteDigraph` and `DigraphBicomponents`. [Isabella Scott and [Wilf A. Wilson][]]
626+
* `AutomorphismGroup` and `DigraphCanonicalLabelling` can now be used with color classes that are preserved by the permutations acting on a digraph. [[James D. Mitchell][]]
627+
* The `TCodeDecoder` was made more efficient. [[James D. Mitchell][]]
628+
* `AsTransformation` is introduced for digraphs in `IsFunctionalDigraph`. [[James D. Mitchell][]]
609629
* The tests and their code coverage were improved.
610630

611631
### Issues Resolved in Version 0.3.0
612-
* There was a memory leak in bliss-0.73, which is fixed in the copy of bliss included with Digraphs, but not in the official release of bliss. [[James D. Mitchell](http://goo.gl/ZtViV6)]
613-
* Some bits of code that caused compiler warnings were improved. [[James D. Mitchell](http://goo.gl/ZtViV6)]
614-
* Some memory leaks were resolved in the Digraphs kernel module. [[Michael Torpey](http://www-groups.mcs.st-and.ac.uk/~mct25)]
632+
* There was a memory leak in bliss-0.73, which is fixed in the copy of bliss included with Digraphs, but not in the official release of bliss. [[James D. Mitchell][]]
633+
* Some bits of code that caused compiler warnings were improved. [[James D. Mitchell][]]
634+
* Some memory leaks were resolved in the Digraphs kernel module. [[Michael Torpey][]]
615635

616636
## Version 0.2.0 (released 04/09/2015)
617637
The first release.
618638

619639
## Version 0.1.0
620640
Pre-release version that was not made publicly available.
641+
642+
[James D. Mitchell]: http://goo.gl/ZtViV6
643+
[Wilf A. Wilson]: http://wilf.me
644+
[Michael Torpey]: https://mtorpey.github.io
645+
[Julius Jonusas]: http://julius.jonusas.work
646+
[Jan De Beule]: http://homepages.vub.ac.be/~jdbeule
647+
[Markus Pfeiffer]: https://www.morphism.de/~markusp

PackageInfo.g

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
##
1010

1111
## <#GAPDoc Label="PKGVERSIONDATA">
12-
## <!ENTITY VERSION "1.0.0">
12+
## <!ENTITY VERSION "1.0.1">
1313
## <!ENTITY GAPVERS "4.9.0">
1414
## <!ENTITY GRAPEVERS "4.8.1">
1515
## <!ENTITY IOVERS "4.5.1">
1616
## <!ENTITY ORBVERS "4.8.2">
17-
## <!ENTITY ARCHIVENAME "digraphs-1.0.0">
17+
## <!ENTITY ARCHIVENAME "digraphs-1.0.1">
1818
## <!ENTITY COPYRIGHTYEARS "2014-19">
1919
## <#/GAPDoc>
2020

@@ -26,8 +26,8 @@ _STANDREWSCS := Concatenation(["Jack Cole Building, North Haugh, ",
2626
SetPackageInfo(rec(
2727
PackageName := "Digraphs",
2828
Subtitle := "Graphs, digraphs, and multidigraphs in GAP",
29-
Version := "1.0.0",
30-
Date := "03/10/2019", # dd/mm/yyyy format
29+
Version := "1.0.1",
30+
Date := "05/10/2019", # dd/mm/yyyy format
3131
License := "GPL-3.0-or-later",
3232
ArchiveFormats := ".tar.gz",
3333

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.0
1+
1.0.1

VERSIONS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
#############################################################################
99
##
1010

11+
release 1.0.1 - 05/10/2019
1112
release 1.0.0 - 03/10/2019
1213
release 0.15.4 - 06/08/2019
1314
release 0.15.3 - 12/06/2019

0 commit comments

Comments
 (0)