Skip to content

Commit db76551

Browse files
fixed docu
1 parent fac94f3 commit db76551

File tree

6 files changed

+25
-23
lines changed

6 files changed

+25
-23
lines changed

PackageInfo.g

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ SetPackageInfo( rec(
1111
PackageName := "Algebroids",
1212
Subtitle := "Algebroids and bialgebroids as preadditive categories generated by enhanced quivers",
1313
Version := Maximum( [
14-
"2020.04.26", ## Mohamed's version
14+
"2020.09.06", ## Mohamed's version
1515
## this line prevents merge conflicts
1616
"2020.09.05", ## Kamal's version
1717
## this line prevents merge conflicts

doc/Doc.autodoc

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,37 +2,34 @@
22

33
@Chapter Bialgebroids as algebroids with more structure
44

5-
@Chapter Full subcategories
5+
@Chapter Examples
66

7-
@Section Examples
8-
9-
@Subsection Algebroids
7+
@Section Algebroids
108
@InsertChunk Algebroid
119

12-
@Subsection Bialgebroids
10+
@Section Bialgebroids
1311
@InsertChunk Bialgebroid
1412

15-
@Subsection Hopf algebra generated by group-like elements
13+
@Section Hopf algebra generated by group-like elements
1614
@InsertChunk group-like
1715

18-
@Subsection Hopf algebra generated by a primitive element
16+
@Section Hopf algebra generated by a primitive element
1917
@InsertChunk primitive
2018

21-
@Subsection A non-counitary coalgebra
19+
@Section A non-counitary coalgebra
2220
@InsertChunk non_counitary
2321

24-
@Subsection Sweedlers 4-dimensional Hopf algebra
22+
@Section Sweedlers 4-dimensional Hopf algebra
2523
@InsertChunk Sweedler_H4
2624

27-
@Subsection Homomorphism structure
25+
@Section Homomorphism structure
2826
@InsertChunk HomStructure
2927

30-
@Subsection Algebroids over the integers
28+
@Section Algebroids over the integers
3129
@InsertChunk over_Z
3230

33-
@Subsection Unitors
31+
@Section Unitors
3432
@InsertChunk unitors
3533

36-
@Subsection Associators
34+
@Section Associators
3735
@InsertChunk associators
38-

examples/Example.g

Lines changed: 0 additions & 1 deletion
This file was deleted.

examples/doc/associators.g

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! @BeginChunk associator
1+
#! @BeginChunk associators
22

33
LoadPackage( "Bialgebroid" );
44

@@ -12,9 +12,11 @@ Qq := PathAlgebra( Q, q );
1212
B := Algebroid( Qq );
1313
#! Algebra generated by the right quiver q(1)[t:1->1]
1414

15-
ass_ltr := AssociatorLeftToRightWithGivenTensorProductsAsFunctor( (B*B)*B, B, B, B, B*(B*B) );;
15+
ass_ltr := AssociatorLeftToRightWithGivenTensorProductsAsFunctor(
16+
(B*B)*B, B, B, B, B*(B*B) );;
1617

17-
ass_rtl := AssociatorRightToLeftWithGivenTensorProductsAsFunctor( B*(B*B), B, B, B, (B*B)*B );;
18+
ass_rtl := AssociatorRightToLeftWithGivenTensorProductsAsFunctor(
19+
B*(B*B), B, B, B, (B*B)*B );;
1820

1921
Source(ass_ltr) = Range(ass_rtl);
2022
#! true
@@ -29,9 +31,13 @@ BB0 := TensorUnit( CapCategory( BB ) );;
2931
ass_ltr_as_morphism := AssociatorLeftToRight(BB,BB,BB);;
3032
ass_rtl_as_morphism := AssociatorRightToLeft(BB,BB,BB);;
3133

32-
IsCongruentForMorphisms( PreCompose( ass_ltr_as_morphism, ass_rtl_as_morphism ), IdentityMorphism( Source( ass_ltr_as_morphism ) ) );
34+
IsCongruentForMorphisms(
35+
PreCompose( ass_ltr_as_morphism, ass_rtl_as_morphism ),
36+
IdentityMorphism( Source( ass_ltr_as_morphism ) ) );
3337
#! true
34-
IsCongruentForMorphisms( PreCompose( ass_rtl_as_morphism, ass_ltr_as_morphism ), IdentityMorphism( Source( ass_rtl_as_morphism ) ) );
38+
IsCongruentForMorphisms(
39+
PreCompose( ass_rtl_as_morphism, ass_ltr_as_morphism ),
40+
IdentityMorphism( Source( ass_rtl_as_morphism ) ) );
3541
#! true
3642

3743
#! @EndExample

makedoc.g

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ fi;
1212
AutoDoc( rec(
1313
autodoc := rec(
1414
files := [ "doc/Doc.autodoc" ],
15-
scan_dirs := [ "doc", "gap", "examples", "examples/doc" ],
15+
scan_dirs := [ "gap", "examples", "examples/doc" ],
1616
),
1717
extract_examples := rec(
1818
units := "Single",

makedoc_with_overfull_hbox_warnings.g

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ AutoDoc( rec(
1313
dir := "doc_tmp/",
1414
autodoc := rec(
1515
files := [ "doc/Doc.autodoc" ],
16-
scan_dirs := [ "doc", "gap", "examples", "examples/doc" ],
16+
scan_dirs := [ "gap", "examples", "examples/doc" ],
1717
),
1818
gapdoc := rec(
1919
LaTeXOptions := rec(

0 commit comments

Comments
 (0)