Skip to content

Commit

Permalink
add some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin committed Nov 24, 2022
1 parent 4cd0355 commit 2266634
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/matobjplist.gd
Original file line number Diff line number Diff line change
Expand Up @@ -94,14 +94,14 @@ DeclareRepresentation( "IsPlistMatrixRep",


# Some constants for matrix access:
BindGlobal( "BDPOS", 1 );
BindGlobal( "EMPOS", 2 );
BindGlobal( "RLPOS", 3 );
BindGlobal( "ROWSPOS", 4 );
BindGlobal( "BDPOS", 1 ); # base domain
BindGlobal( "EMPOS", 2 ); # empty vector as template for new vectors
BindGlobal( "RLPOS", 3 ); # row length
BindGlobal( "ROWSPOS", 4 ); # list of row vectors

# For vector access:
#BindGlobal( "BDPOS", 1 ); # see above
BindGlobal( "ELSPOS", 2 );
BindGlobal( "ELSPOS", 2 ); # list of elements

# Two filters to speed up some methods:
DeclareFilter( "IsIntVector" );
Expand Down

0 comments on commit 2266634

Please sign in to comment.