Skip to content

Commit

Permalink
chore: Rename IsLeftRightFPFs tests
Browse files Browse the repository at this point in the history
  • Loading branch information
limakzi committed Sep 5, 2024
1 parent 910b2ef commit 65adf68
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
19 changes: 19 additions & 0 deletions tst/test_properties_magma_ileftrightfpf.tst
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
gap> START_TEST( "test_properties_magma_leftrightisfpf.tst" );

## fixed-point-free failes for operations with fixed points
gap> IsLeftFPFInducted(MagmaByMultiplicationTable([ [1, 1], [2, 2] ] ));
false

## fixed-point-free failes for operations with fixed points
gap> IsRightFPFInducted(MagmaByMultiplicationTable([ [1, 2], [1, 2] ] ));
false

## fixed-point-free failes for operations with fixed points
gap> IsRightFPFInducted(MagmaByMultiplicationTable([ [1, 1], [2, 2] ] ));
false

## no-fixed-point-free-antimagma-is-both-left-hand-and-right-hand
gap> Filtered( Filtered(AllSmallAntimagmas([2 .. 3]), M -> IsLeftFPFInducted(M)), M -> IsRightFPFInducted(M) );
[ ]

gap> STOP_TEST( "test_properties_magma_leftrightisfpf.tst" );
19 changes: 0 additions & 19 deletions tst/test_properties_magma_isfpf.tst

This file was deleted.

0 comments on commit 65adf68

Please sign in to comment.