@@ -11,73 +11,73 @@ InstallMethod( ViewObj, [IsEmptySubspace],
1111 Print(" < empty subspace >" );
1212 end );
1313
14- InstallMethod( IsIncident, " for the empty subspace and a nonempty subspace" ,
14+ InstallMethod( IsIncident, " for the empty subspace and a nonempty subspace" ,
1515 [ IsEmptySubspace, IsSubspaceOfProjectiveSpace ] ,
1616 function ( x, y )
1717 return true ;
1818 end );
1919
20- InstallMethod( IsIncident, " for the empty subspace and a nonempty subspace" ,
20+ InstallMethod( IsIncident, " for the empty subspace and a nonempty subspace" ,
2121 [ IsSubspaceOfProjectiveSpace, IsEmptySubspace ] ,
2222 function ( x, y )
2323 return true ;
2424 end );
2525
26- InstallMethod( IsIncident, " for the empty subspace and a projective subspace" ,
26+ InstallMethod( IsIncident, " for the empty subspace and a projective subspace" ,
2727 [ IsEmptySubspace, IsProjectiveSpace ] ,
2828 function ( x, y )
2929 return true ;
3030 end );
3131
32- InstallMethod( IsIncident, " for the empty subspace and a projective subspace" ,
32+ InstallMethod( IsIncident, " for the empty subspace and a projective subspace" ,
3333 [ IsProjectiveSpace, IsEmptySubspace ] ,
3434 function ( x, y )
3535 return true ;
3636 end );
3737
38- InstallMethod( Span, " for the empty subspace and a projective subspace" ,
38+ InstallMethod( Span, " for the empty subspace and a projective subspace" ,
3939 [ IsEmptySubspace, IsSubspaceOfProjectiveSpace ] ,
4040 function ( x, y )
4141 return y;
4242 end );
4343
44- InstallMethod( Span, " for the empty subspace and a projective subspace" ,
44+ InstallMethod( Span, " for the empty subspace and a projective subspace" ,
4545 [ IsSubspaceOfProjectiveSpace, IsEmptySubspace ] ,
4646 function ( x, y )
4747 return x;
4848 end );
4949
50- InstallMethod( Span, " for the empty subspace and a projective subspace" ,
50+ InstallMethod( Span, " for the empty subspace and a projective subspace" ,
5151 [ IsEmptySubspace, IsProjectiveSpace ] ,
5252 function ( x, y )
5353 return y;
5454 end );
5555
56- InstallMethod( Span, " for the empty subspace and a projective subspace" ,
56+ InstallMethod( Span, " for the empty subspace and a projective subspace" ,
5757 [ IsProjectiveSpace, IsEmptySubspace ] ,
5858 function ( x, y )
5959 return x;
6060 end );
6161
62- InstallMethod( Meet, " for the empty subspace and a projective subspace" ,
62+ InstallMethod( Meet, " for the empty subspace and a projective subspace" ,
6363 [ IsEmptySubspace, IsSubspaceOfProjectiveSpace ] ,
6464 function ( x, y )
6565 return x;
6666 end );
6767
68- InstallMethod( Meet, " for the empty subspace and a projective subspace" ,
68+ InstallMethod( Meet, " for the empty subspace and a projective subspace" ,
6969 [ IsSubspaceOfProjectiveSpace, IsEmptySubspace ] ,
7070 function ( x, y )
7171 return y;
7272 end );
7373
74- InstallMethod( Meet, " for the empty subspace and a projective subspace" ,
74+ InstallMethod( Meet, " for the empty subspace and a projective subspace" ,
7575 [ IsEmptySubspace, IsProjectiveSpace ] ,
7676 function ( x, y )
7777 return x;
7878 end );
7979
80- InstallMethod( Meet, " for the empty subspace and a projective subspace" ,
80+ InstallMethod( Meet, " for the empty subspace and a projective subspace" ,
8181 [ IsProjectiveSpace, IsEmptySubspace ] ,
8282 function ( x, y )
8383 return y;
0 commit comments