Skip to content

Commit

Permalink
Update website for FreydCategoriesForCAP 2023.08-01
Browse files Browse the repository at this point in the history
  • Loading branch information
Bot committed Aug 14, 2023
1 parent dc5ee41 commit 8defa9f
Show file tree
Hide file tree
Showing 11 changed files with 56 additions and 20 deletions.
4 changes: 2 additions & 2 deletions FreydCategoriesForCAP/PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ SetPackageInfo( rec(

PackageName := "FreydCategoriesForCAP",
Subtitle := "Freyd categories - Formal (co)kernels for additive categories",
Version := "2023.07-02",
Date := "2023-07-31",
Version := "2023.08-01",
Date := "2023-08-14",
License := "GPL-2.0-or-later",

Persons := [
Expand Down
4 changes: 2 additions & 2 deletions FreydCategoriesForCAP/doc/chap0.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ <h1>FreydCategoriesForCAP</h1>
<h2>Freyd categories - Formal (co)kernels for additive categories</h2>

<p>
2023.07-02</p>
2023.08-01</p>

<p>
31 July 2023
14 August 2023
</p>

</div>
Expand Down
4 changes: 2 additions & 2 deletions FreydCategoriesForCAP/doc/chap0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
 Freyd categories - Formal (co)kernels for additive categories 


2023.07-02
2023.08-01


31 July 2023
14 August 2023


Sebastian Posur
Expand Down
4 changes: 2 additions & 2 deletions FreydCategoriesForCAP/doc/chap0_mj.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ <h1>FreydCategoriesForCAP</h1>
<h2>Freyd categories - Formal (co)kernels for additive categories</h2>

<p>
2023.07-02</p>
2023.08-01</p>

<p>
31 July 2023
14 August 2023
</p>

</div>
Expand Down
6 changes: 6 additions & 0 deletions FreydCategoriesForCAP/doc/chap12.html
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,12 @@ <h4>12.3 <span class="Heading">Basics based on category of rows</span></h4>
<span class="GAPprompt">gap&gt;</span> <span class="GAPinput">cat := CategoryOfRows( R );;</span>
<span class="GAPprompt">gap&gt;</span> <span class="GAPinput">obj1 := CategoryOfRowsObject( 1, cat );;</span>
<span class="GAPprompt">gap&gt;</span> <span class="GAPinput">obj2 := CategoryOfRowsObject( 2, cat );;</span>
<span class="GAPprompt">gap&gt;</span> <span class="GAPinput">IsIsomorphicForObjects( obj1, obj2 );</span>
false
<span class="GAPprompt">gap&gt;</span> <span class="GAPinput">IsIsomorphicForObjects( obj2, obj2 );</span>
true
<span class="GAPprompt">gap&gt;</span> <span class="GAPinput">IsIsomorphism( SomeIsomorphismBetweenObjects( obj2, obj2 ) );</span>
true
<span class="GAPprompt">gap&gt;</span> <span class="GAPinput">id := IdentityMorphism( obj2 );;</span>
<span class="GAPprompt">gap&gt;</span> <span class="GAPinput">alpha := CategoryOfRowsMorphism( obj1, HomalgMatrix( [ [ 1, 2 ] ], 1, 2, R ), obj2 );;</span>
<span class="GAPprompt">gap&gt;</span> <span class="GAPinput">beta := CategoryOfRowsMorphism( obj2, HomalgMatrix( [ [ 1, 2 ], [ 3, 4 ] ], 2, 2, R ), obj2 );;</span>
Expand Down
6 changes: 6 additions & 0 deletions FreydCategoriesForCAP/doc/chap12.txt
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,12 @@
gap> cat := CategoryOfRows( R );;
gap> obj1 := CategoryOfRowsObject( 1, cat );;
gap> obj2 := CategoryOfRowsObject( 2, cat );;
gap> IsIsomorphicForObjects( obj1, obj2 );
false
gap> IsIsomorphicForObjects( obj2, obj2 );
true
gap> IsIsomorphism( SomeIsomorphismBetweenObjects( obj2, obj2 ) );
true
gap> id := IdentityMorphism( obj2 );;
gap> alpha := CategoryOfRowsMorphism( obj1, HomalgMatrix( [ [ 1, 2 ] ], 1, 2, R ), obj2 );;
gap> beta := CategoryOfRowsMorphism( obj2, HomalgMatrix( [ [ 1, 2 ], [ 3, 4 ] ], 2, 2, R ), obj2 );;
Expand Down
6 changes: 6 additions & 0 deletions FreydCategoriesForCAP/doc/chap12_mj.html
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,12 @@ <h4>12.3 <span class="Heading">Basics based on category of rows</span></h4>
<span class="GAPprompt">gap&gt;</span> <span class="GAPinput">cat := CategoryOfRows( R );;</span>
<span class="GAPprompt">gap&gt;</span> <span class="GAPinput">obj1 := CategoryOfRowsObject( 1, cat );;</span>
<span class="GAPprompt">gap&gt;</span> <span class="GAPinput">obj2 := CategoryOfRowsObject( 2, cat );;</span>
<span class="GAPprompt">gap&gt;</span> <span class="GAPinput">IsIsomorphicForObjects( obj1, obj2 );</span>
false
<span class="GAPprompt">gap&gt;</span> <span class="GAPinput">IsIsomorphicForObjects( obj2, obj2 );</span>
true
<span class="GAPprompt">gap&gt;</span> <span class="GAPinput">IsIsomorphism( SomeIsomorphismBetweenObjects( obj2, obj2 ) );</span>
true
<span class="GAPprompt">gap&gt;</span> <span class="GAPinput">id := IdentityMorphism( obj2 );;</span>
<span class="GAPprompt">gap&gt;</span> <span class="GAPinput">alpha := CategoryOfRowsMorphism( obj1, HomalgMatrix( [ [ 1, 2 ] ], 1, 2, R ), obj2 );;</span>
<span class="GAPprompt">gap&gt;</span> <span class="GAPinput">beta := CategoryOfRowsMorphism( obj2, HomalgMatrix( [ [ 1, 2 ], [ 3, 4 ] ], 2, 2, R ), obj2 );;</span>
Expand Down
6 changes: 6 additions & 0 deletions FreydCategoriesForCAP/doc/chap5.html
Original file line number Diff line number Diff line change
Expand Up @@ -788,6 +788,9 @@ <h5>5.1-3 <span class="Heading">CategoryOfRows of a commutative ring</span></h5>
</li>
<li><p><code class="func">InternalHomToTensorProductAdjunctionMap</code> (<a href="https://homalg-project.github.io/CAP_project/MonoidalCategories/doc/chap1.html#X7A48DA157CCFB0B9"><span class="RefLink">MonoidalCategories: InternalHomToTensorProductAdjunctionMap for IsCapCategoryObject, IsCapCategoryObject, IsCapCategoryMorphism</span></a>)</p>

</li>
<li><p><code class="func">IsIsomorphicForObjects</code> (<a href="https://homalg-project.github.io/CAP_project/CAP/doc/chap2.html#X7C34D06C7ABE563F"><span class="RefLink">CAP: IsIsomorphicForObjects for IsCapCategoryObject, IsCapCategoryObject</span></a>)</p>

</li>
<li><p><code class="func">IsomorphismFromCoDualObjectToInternalCoHomFromTensorUnit</code> (<a href="https://homalg-project.github.io/CAP_project/MonoidalCategories/doc/chap1.html#X86C7E40C85318EFA"><span class="RefLink">MonoidalCategories: IsomorphismFromCoDualObjectToInternalCoHomFromTensorUnit for IsCapCategoryObject</span></a>)</p>

Expand Down Expand Up @@ -965,6 +968,9 @@ <h5>5.1-3 <span class="Heading">CategoryOfRows of a commutative ring</span></h5>
</li>
<li><p><code class="func">RightUnitorWithGivenTensorProduct</code> (<a href="https://homalg-project.github.io/CAP_project/MonoidalCategories/doc/chap1.html#X84C8F97F7BF2282D"><span class="RefLink">MonoidalCategories: RightUnitorWithGivenTensorProduct for IsCapCategoryObject, IsCapCategoryObject</span></a>)</p>

</li>
<li><p><code class="func">SomeIsomorphismBetweenObjects</code> (<a href="https://homalg-project.github.io/CAP_project/CAP/doc/chap2.html#X7D3407D68401C878"><span class="RefLink">CAP: SomeIsomorphismBetweenObjects for IsCapCategoryObject, IsCapCategoryObject</span></a>)</p>

</li>
<li><p><code class="func">TensorProductDualityCompatibilityMorphism</code> (<a href="https://homalg-project.github.io/CAP_project/MonoidalCategories/doc/chap1.html#X7D173DB08132E40A"><span class="RefLink">MonoidalCategories: TensorProductDualityCompatibilityMorphism for IsCapCategoryObject, IsCapCategoryObject</span></a>)</p>

Expand Down
6 changes: 6 additions & 0 deletions FreydCategoriesForCAP/doc/chap5.txt
Original file line number Diff line number Diff line change
Expand Up @@ -809,6 +809,9 @@
InternalHomToTensorProductAdjunctionMap for IsCapCategoryObject,
IsCapCategoryObject, IsCapCategoryMorphism)

 IsIsomorphicForObjects (CAP: IsIsomorphicForObjects for
IsCapCategoryObject, IsCapCategoryObject)

 IsomorphismFromCoDualObjectToInternalCoHomFromTensorUnit
(MonoidalCategories:
IsomorphismFromCoDualObjectToInternalCoHomFromTensorUnit for
Expand Down Expand Up @@ -1048,6 +1051,9 @@
RightUnitorWithGivenTensorProduct for IsCapCategoryObject,
IsCapCategoryObject)

 SomeIsomorphismBetweenObjects (CAP: SomeIsomorphismBetweenObjects for
IsCapCategoryObject, IsCapCategoryObject)

 TensorProductDualityCompatibilityMorphism (MonoidalCategories:
TensorProductDualityCompatibilityMorphism for IsCapCategoryObject,
IsCapCategoryObject)
Expand Down
6 changes: 6 additions & 0 deletions FreydCategoriesForCAP/doc/chap5_mj.html
Original file line number Diff line number Diff line change
Expand Up @@ -791,6 +791,9 @@ <h5>5.1-3 <span class="Heading">CategoryOfRows of a commutative ring</span></h5>
</li>
<li><p><code class="func">InternalHomToTensorProductAdjunctionMap</code> (<a href="https://homalg-project.github.io/CAP_project/MonoidalCategories/doc/chap1_mj.html#X7A48DA157CCFB0B9"><span class="RefLink">MonoidalCategories: InternalHomToTensorProductAdjunctionMap for IsCapCategoryObject, IsCapCategoryObject, IsCapCategoryMorphism</span></a>)</p>

</li>
<li><p><code class="func">IsIsomorphicForObjects</code> (<a href="https://homalg-project.github.io/CAP_project/CAP/doc/chap2_mj.html#X7C34D06C7ABE563F"><span class="RefLink">CAP: IsIsomorphicForObjects for IsCapCategoryObject, IsCapCategoryObject</span></a>)</p>

</li>
<li><p><code class="func">IsomorphismFromCoDualObjectToInternalCoHomFromTensorUnit</code> (<a href="https://homalg-project.github.io/CAP_project/MonoidalCategories/doc/chap1_mj.html#X86C7E40C85318EFA"><span class="RefLink">MonoidalCategories: IsomorphismFromCoDualObjectToInternalCoHomFromTensorUnit for IsCapCategoryObject</span></a>)</p>

Expand Down Expand Up @@ -968,6 +971,9 @@ <h5>5.1-3 <span class="Heading">CategoryOfRows of a commutative ring</span></h5>
</li>
<li><p><code class="func">RightUnitorWithGivenTensorProduct</code> (<a href="https://homalg-project.github.io/CAP_project/MonoidalCategories/doc/chap1_mj.html#X84C8F97F7BF2282D"><span class="RefLink">MonoidalCategories: RightUnitorWithGivenTensorProduct for IsCapCategoryObject, IsCapCategoryObject</span></a>)</p>

</li>
<li><p><code class="func">SomeIsomorphismBetweenObjects</code> (<a href="https://homalg-project.github.io/CAP_project/CAP/doc/chap2_mj.html#X7D3407D68401C878"><span class="RefLink">CAP: SomeIsomorphismBetweenObjects for IsCapCategoryObject, IsCapCategoryObject</span></a>)</p>

</li>
<li><p><code class="func">TensorProductDualityCompatibilityMorphism</code> (<a href="https://homalg-project.github.io/CAP_project/MonoidalCategories/doc/chap1_mj.html#X7D173DB08132E40A"><span class="RefLink">MonoidalCategories: TensorProductDualityCompatibilityMorphism for IsCapCategoryObject, IsCapCategoryObject</span></a>)</p>

Expand Down
24 changes: 12 additions & 12 deletions _data/FreydCategoriesForCAP.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: FreydCategoriesForCAP
version: "2023.07-02"
version: "2023.08-01"
license: "GPL-2.0-or-later"
date: 2023-07-31
date: 2023-08-14
description: |
Freyd categories - Formal (co)kernels for additive categories
Expand Down Expand Up @@ -46,11 +46,11 @@ packageinfo: https://homalg-project.github.io/CAP_project/FreydCategoriesForCAP/

downloads:
- name: .tar.gz
url: https://github.com/homalg-project/CAP_project/releases/download/FreydCategoriesForCAP-2023.07-02/FreydCategoriesForCAP-2023.07-02.tar.gz
url: https://github.com/homalg-project/CAP_project/releases/download/FreydCategoriesForCAP-2023.08-01/FreydCategoriesForCAP-2023.08-01.tar.gz
- name: .zip
url: https://github.com/homalg-project/CAP_project/releases/download/FreydCategoriesForCAP-2023.07-02/FreydCategoriesForCAP-2023.07-02.zip
url: https://github.com/homalg-project/CAP_project/releases/download/FreydCategoriesForCAP-2023.08-01/FreydCategoriesForCAP-2023.08-01.zip

pdf: https://github.com/homalg-project/CAP_project/releases/download/FreydCategoriesForCAP-2023.07-02/FreydCategoriesForCAP-2023.07-02-manual.pdf
pdf: https://github.com/homalg-project/CAP_project/releases/download/FreydCategoriesForCAP-2023.08-01/FreydCategoriesForCAP-2023.08-01-manual.pdf

abstract: |
Expand All @@ -59,29 +59,29 @@ doc-html: doc/chap0.html
doc-pdf: doc/manual.pdf
citeas: |
<p class='BibEntry'>
[<span class='BibKey'>PB31</span>] <b class='BibAuthor'>Posur, S. and Bies, M.</b>,
[<span class='BibKey'>PB14</span>] <b class='BibAuthor'>Posur, S. and Bies, M.</b>,
<i class='BibTitle'>FreydCategoriesForCAP, Freyd categories - Formal (co)kernels for additive categories,
Version 2023.07-02</i>
(<span class='BibYear'>7-31</span>)<br />
Version 2023.08-01</i>
(<span class='BibYear'>8-14</span>)<br />
(<span class='BibNote'>GAP package</span>),
<span class='BibHowpublished'><a href="https://homalg-project.github.io/pkg/FreydCategoriesForCAP">https://homalg-project.github.io/pkg/FreydCategoriesForCAP</a></span>.
</p>
bibtex: |
@misc{ FreydCategoriesForCAP2023.07-02,
@misc{ FreydCategoriesForCAP2023.08-01,
author = {Posur, S. and Bies, M.},
title = {{FreydCategoriesForCAP}, Freyd categories - Formal
(co)kernels for additive categories, {V}ersion
2023.07-02},
2023.08-01},
month = {3-},
year = {7-31},
year = {8-14},
note = {GAP package},
howpublished = {\href
{https://homalg-project.github.io/pkg/FreydCategoriesForCAP}
{\texttt{https://homalg-project.github.io/}\discretionary
{}{}{}\texttt{pkg/}\discretionary
{}{}{}\texttt{FreydCategoriesForCAP}}},
printedkey = {PB31}
printedkey = {PB14}
}

0 comments on commit 8defa9f

Please sign in to comment.