Skip to content

Commit e4e272f

Browse files
committed
Merge branch 'stable-1.6'
2 parents a9597ff + abcbc8b commit e4e272f

20 files changed

Lines changed: 264 additions & 338 deletions

.gaplint.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
disable:
22
- align-assignments
3+
duplicate-function-min-length: 4

doc/digraph.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -752,7 +752,7 @@ gap> T := AsSemigroup(IsPartialPermSemigroup,
752752
gap> Size(T);
753753
20
754754
gap> D := GreensDClasses(T);;
755-
gap> List(D, x -> Size(x));
755+
gap> List(D, Size);
756756
[ 6, 12, 2 ]
757757
]]></Example>
758758
</Description>

doc/examples.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -943,7 +943,7 @@ gap> D := BondyGraph(1);
943943
gap> IsHamiltonianDigraph(D);
944944
false
945945
gap> G := List([1 .. 22], x -> DigraphRemoveVertex(D, x));;
946-
gap> ForAll(G, x -> IsHamiltonianDigraph(x));
946+
gap> ForAll(G, IsHamiltonianDigraph);
947947
true]]></Example>
948948
</Description>
949949
</ManSection>

etc/gaplint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/bash
22
set -e
33

4-
gaplint --disable W004 *.g gap/* doc/*.xml tst/testinstall.tst tst/standard/*.tst tst/extreme/*.tst tst/workspaces/*.tst
4+
gaplint --disable W004 $@ *.g gap/* doc/*.xml tst/testinstall.tst tst/standard/*.tst tst/extreme/*.tst tst/workspaces/*.tst

gap/attr.gi

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -154,15 +154,11 @@ end);
154154

155155
InstallMethod(ArticulationPoints, "for a digraph by out-neighbours",
156156
[IsDigraphByOutNeighboursRep],
157-
function(D)
158-
return DIGRAPHS_ArticulationPointsBridgesStrongOrientation(D)[2];
159-
end);
157+
D -> DIGRAPHS_ArticulationPointsBridgesStrongOrientation(D)[2]);
160158

161159
InstallMethod(Bridges, "for a digraph by out-neighbours",
162160
[IsDigraphByOutNeighboursRep],
163-
function(D)
164-
return DIGRAPHS_ArticulationPointsBridgesStrongOrientation(D)[3];
165-
end);
161+
D -> DIGRAPHS_ArticulationPointsBridgesStrongOrientation(D)[3]);
166162

167163
InstallMethodThatReturnsDigraph(StrongOrientation,
168164
"for a digraph by out-neighbours",

0 commit comments

Comments
 (0)