Skip to content

Commit

Permalink
Fixed typos wrt spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
zljlzljlz committed Nov 20, 2024
1 parent f6d8649 commit 64b5c0f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tst/standard/oper.tst
Original file line number Diff line number Diff line change
Expand Up @@ -2844,23 +2844,23 @@ gap> IsOrderIdeal(D, [1]);
Error, the 1st argument (a digraph) must be a partial order digraph

# IsOrderFilter
gap> D := DigraphByEdges([[1,1],[1,2],[1,3],[2,3],[3,3],[2,2],[2,4],[4,4],[1,4]]);
gap> D := DigraphByEdges([[1, 1], [1, 2], [1, 3], [2, 3], [3, 3], [2, 2], [2, 4], [4, 4], [1, 4]]);
<immutable digraph with 4 vertices, 9 edges>
gap> IsOrderFilter(D,[1,2]);
gap> IsOrderFilter(D, [1, 2]);
true
gap> IsOrderFilter(D,[2,3]);
gap> IsOrderFilter(D, [2, 3]);
false
gap> IsOrderFilter(D,[1,4]);
gap> IsOrderFilter(D, [1, 4]);
false
gap> IsOrderFilter(D,[4]);
gap> IsOrderFilter(D, [4]);
false
gap> IsOrderFilter(4);
Error, no method found! For debugging hints type ?Recovery from NoMethodFound
Error, no 1st choice method found for `IsOrderFilter' on 1 arguments
gap> IsOrderFilter(D,4);
gap> IsOrderFilter(D, 4);
Error, no method found! For debugging hints type ?Recovery from NoMethodFound
Error, no 1st choice method found for `IsOrderFilter' on 2 arguments
gap> IsOrderFilter(D,[5]);
gap> IsOrderFilter(D, [5]);
Error, an element of the 2nd argument (roots) is not a vertex of the 1st argum\
ent (a digraph)

Expand Down

0 comments on commit 64b5c0f

Please sign in to comment.