Skip to content

Commit

Permalink
Merge pull request #150 from zickgraf/master
Browse files Browse the repository at this point in the history
Use "list_of_objects"
  • Loading branch information
kamalsaleh authored Apr 27, 2023
2 parents a531bdd + 4e8f331 commit 51fddce
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion TriangulatedCategories/PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ SetPackageInfo( rec(

PackageName := "TriangulatedCategories",
Subtitle := "Framework for triangulated categories",
Version := "2023.04-01",
Version := "2023.04-02",
Date := (function ( ) if IsBound( GAPInfo.SystemEnvironment.GAP_PKG_RELEASE_DATE ) then return GAPInfo.SystemEnvironment.GAP_PKG_RELEASE_DATE; else return Concatenation( ~.Version{[ 1 .. 4 ]}, "-", ~.Version{[ 6, 7 ]}, "-01" ); fi; end)( ),
License := "GPL-2.0-or-later",

Expand Down
8 changes: 4 additions & 4 deletions TriangulatedCategories/gap/MethodRecord.gi
Original file line number Diff line number Diff line change
Expand Up @@ -186,25 +186,25 @@ WitnessIsomorphismFromStandardConeObjectByInverseRotationAxiomWithGivenObjects :
),

ShiftExpandingIsomorphismWithGivenObjects := rec(
filter_list := [ "category", "object", IsList, "object" ],
filter_list := [ "category", "object", "list_of_objects", "object" ],
io_type := [ [ "s", "L", "r" ], [ "s", "r" ] ],
return_type := "morphism"
),

ShiftFactoringIsomorphismWithGivenObjects := rec(
filter_list := [ "category", "object", IsList, "object" ],
filter_list := [ "category", "object", "list_of_objects", "object" ],
io_type := [ [ "s", "L", "r" ], [ "s", "r" ] ],
return_type := "morphism"
),

InverseShiftExpandingIsomorphismWithGivenObjects := rec(
filter_list := [ "category", "object", IsList, "object" ],
filter_list := [ "category", "object", "list_of_objects", "object" ],
io_type := [ [ "s", "L", "r" ], [ "s", "r" ] ],
return_type := "morphism"
),

InverseShiftFactoringIsomorphismWithGivenObjects := rec(
filter_list := [ "category", "object", IsList, "object" ],
filter_list := [ "category", "object", "list_of_objects", "object" ],
io_type := [ [ "s", "L", "r" ], [ "s", "r" ] ],
return_type := "morphism"
)
Expand Down

0 comments on commit 51fddce

Please sign in to comment.