@@ -88,9 +88,15 @@ gap> EmptyDigraph(IsMutableDigraph, -1);
88
88
Error, the argument <n> must be a non-negative integer,
89
89
90
90
# CycleDigraph
91
+ #@if CompareVersionNumbers(ReplacedString(GAPInfo.Version, "dev", ""), "4.16")
92
+ gap> gr := CycleDigraph(0);
93
+ Error, no method found! For debugging hints type ?Recovery from NoMethodFound
94
+ Error, no 1st choice method found for `CycleDigraph' on 1 argument
95
+ # @else
91
96
gap> gr := CycleDigraph(0 );
92
97
Error, no method found! For debugging hints type ?Recovery from NoMethodFound
93
98
Error, no 1st choice method found for `CycleDigraph' on 1 arguments
99
+ #@fi
94
100
gap> gr := CycleDigraph(1);
95
101
<immutable digraph with 1 vertex, 1 edge>
96
102
gap> AutomorphismGroup(gr) = Group(());
@@ -108,9 +114,15 @@ gap> gr = DigraphCycle(IsImmutableDigraph, 6);
108
114
true
109
115
110
116
# ChainDigraph
117
+ #@if CompareVersionNumbers(ReplacedString(GAPInfo.Version, "dev", ""), "4.16")
118
+ gap> gr := ChainDigraph(0);
119
+ Error, no method found! For debugging hints type ?Recovery from NoMethodFound
120
+ Error, no 1st choice method found for `ChainDigraph' on 1 argument
121
+ # @else
111
122
gap> gr := ChainDigraph(0 );
112
123
Error, no method found! For debugging hints type ?Recovery from NoMethodFound
113
124
Error, no 1st choice method found for `ChainDigraph' on 1 arguments
125
+ #@fi
114
126
gap> gr := ChainDigraph(1);
115
127
<immutable empty digraph with 1 vertex>
116
128
gap> IsEmptyDigraph(gr);
@@ -492,9 +504,15 @@ gap> D := AndrasfaiGraph(3);
492
504
vertices, 24 edges>
493
505
gap> IsIsomorphicDigraph(D, MobiusLadderGraph(4));
494
506
true
507
+ #@if CompareVersionNumbers(ReplacedString(GAPInfo.Version, "dev", ""), "4.16")
508
+ gap> AndrasfaiGraph(0);
509
+ Error, no method found! For debugging hints type ?Recovery from NoMethodFound
510
+ Error, no 1st choice method found for `AndrasfaiGraph' on 1 argument
511
+ # @else
495
512
gap> AndrasfaiGraph(0 );
496
513
Error, no method found! For debugging hints type ?Recovery from NoMethodFound
497
514
Error, no 1st choice method found for `AndrasfaiGraph' on 1 arguments
515
+ #@fi
498
516
499
517
# BinomialTreeGraph
500
518
gap> D := BinomialTreeGraph(6);
@@ -509,9 +527,15 @@ gap> DigraphEdges(D);
509
527
[ 15, 13 ], [ 15, 16 ], [ 16, 15 ] ]
510
528
gap> BinomialTreeGraph(1);
511
529
<immutable empty digraph with 1 vertex>
530
+ #@if CompareVersionNumbers(ReplacedString(GAPInfo.Version, "dev", ""), "4.16")
531
+ gap> BinomialTreeGraph(0);
532
+ Error, no method found! For debugging hints type ?Recovery from NoMethodFound
533
+ Error, no 1st choice method found for `BinomialTreeGraph' on 1 argument
534
+ # @else
512
535
gap> BinomialTreeGraph(0 );
513
536
Error, no method found! For debugging hints type ?Recovery from NoMethodFound
514
537
Error, no 1st choice method found for `BinomialTreeGraph' on 1 arguments
538
+ #@fi
515
539
516
540
# BondyGraph
517
541
gap> D := BondyGraph(2);
@@ -585,9 +609,15 @@ gap> D := HalvedCubeGraph(3);
585
609
< immutable Hamiltonian symmetric digraph with 4 vertices, 12 edges>
586
610
gap> IsIsomorphicDigraph(D, CompleteDigraph(4 ));
587
611
true
612
+ # @if CompareVersionNumbers(ReplacedString(GAPInfo.Version, "dev", ""), "4.16")
613
+ gap> HalvedCubeGraph(- 1 );
614
+ Error, no method found! For debugging hints type ?Recovery from NoMethodFound
615
+ Error, no 1st choice method found for `HalvedCubeGraph' on 1 argument
616
+ #@else
588
617
gap> HalvedCubeGraph(-1);
589
618
Error, no method found! For debugging hints type ?Recovery from NoMethodFound
590
619
Error, no 1st choice method found for `HalvedCubeGraph' on 1 arguments
620
+ # @fi
591
621
592
622
# HanoiGraph
593
623
gap> D := HanoiGraph(1 );
@@ -602,9 +632,15 @@ gap> IsHamiltonianDigraph(gr);
602
632
true
603
633
gap> IsPlanarDigraph(DigraphMutableCopy(gr));
604
634
true
635
+ # @if CompareVersionNumbers(ReplacedString(GAPInfo.Version, "dev", ""), "4.16")
636
+ gap> HanoiGraph(0 );
637
+ Error, no method found! For debugging hints type ?Recovery from NoMethodFound
638
+ Error, no 1st choice method found for `HanoiGraph' on 1 argument
639
+ #@else
605
640
gap> HanoiGraph(0);
606
641
Error, no method found! For debugging hints type ?Recovery from NoMethodFound
607
642
Error, no 1st choice method found for `HanoiGraph' on 1 arguments
643
+ # @fi
608
644
609
645
# HelmGraph
610
646
gap> D := HelmGraph(6 );
@@ -674,9 +710,15 @@ gap> D := LindgrenSousselierGraph(1);
674
710
< immutable symmetric digraph with 10 vertices, 30 edges>
675
711
gap> AutomorphismGroup(D) = Group([ (4 , 8 )(5 , 7 )(9 , 10 ), (2 , 10 , 9 )(3 , 4 , 5 , 6 , 7 , 8 ), (1 , 2 , 3 , 4 , 10 )(5 , 7 , 9 , 6 , 8 )] );
676
712
true
713
+ # @if CompareVersionNumbers(ReplacedString(GAPInfo.Version, "dev", ""), "4.16")
714
+ gap> LindgrenSousselierGraph(0 );
715
+ Error, no method found! For debugging hints type ?Recovery from NoMethodFound
716
+ Error, no 1st choice method found for `LindgrenSousselierGraph' on 1 argument
717
+ #@else
677
718
gap> LindgrenSousselierGraph(0);
678
719
Error, no method found! For debugging hints type ?Recovery from NoMethodFound
679
720
Error, no 1st choice method found for `LindgrenSousselierGraph' on 1 arguments
721
+ # @fi
680
722
gap> LindgrenSousselierGraph(3 );
681
723
< immutable symmetric digraph with 22 vertices, 70 edges>
682
724
gap> IsIsomorphicDigraph(LindgrenSousselierGraph(1 ), GeneralisedPetersenGraph(5 , 2 ));
@@ -719,9 +761,15 @@ gap> IsIsomorphicDigraph(D, DigraphSymmetricClosure(ChainDigraph(4)));
719
761
true
720
762
gap> PathGraph(1 );
721
763
< immutable empty digraph with 1 vertex>
764
+ # @if CompareVersionNumbers(ReplacedString(GAPInfo.Version, "dev", ""), "4.16")
765
+ gap> PathGraph(0 );
766
+ Error, no method found! For debugging hints type ?Recovery from NoMethodFound
767
+ Error, no 1st choice method found for `PathGraph' on 1 argument
768
+ #@else
722
769
gap> PathGraph(0);
723
770
Error, no method found! For debugging hints type ?Recovery from NoMethodFound
724
771
Error, no 1st choice method found for `PathGraph' on 1 arguments
772
+ # @fi
725
773
726
774
# PermutationStarGraph
727
775
gap> D := PermutationStarGraph(3 , 2 );
@@ -785,9 +833,15 @@ gap> D := WalshHadamardGraph(2);
785
833
<immutable symmetric digraph with 8 vertices, 16 edges>
786
834
gap> IsIsomorphicDigraph(D, CycleGraph(8));
787
835
true
836
+ #@if CompareVersionNumbers(ReplacedString(GAPInfo.Version, "dev", ""), "4.16")
837
+ gap> WalshHadamardGraph(0);
838
+ Error, no method found! For debugging hints type ?Recovery from NoMethodFound
839
+ Error, no 1st choice method found for `WalshHadamardGraph' on 1 argument
840
+ # @else
788
841
gap> WalshHadamardGraph(0 );
789
842
Error, no method found! For debugging hints type ?Recovery from NoMethodFound
790
843
Error, no 1st choice method found for `WalshHadamardGraph' on 1 arguments
844
+ #@fi
791
845
792
846
# WebGraph
793
847
gap> D := WebGraph(3);
0 commit comments