1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016
|
#############################################################################
##
## This file is part of GAP, a system for computational discrete algebra.
## This file's authors include Martin Schönert.
##
## Copyright of GAP belongs to its developers, whose names are too numerous
## to list here. Please refer to the COPYRIGHT file for details.
##
## SPDX-License-Identifier: GPL-2.0-or-later
##
## This file contains some list types and functions that have to be known
## very early in the bootstrap stage (therefore they are not in list.gi)
##
#############################################################################
##
#C IsListDefault( <list> ) . . . . . . . . methods for arithmetic operations
##
## <#GAPDoc Label="IsListDefault">
## <ManSection>
## <Filt Name="IsListDefault" Arg='list' Type='Category'/>
##
## <Description>
## For a list <A>list</A>, <Ref Filt="IsListDefault"/> indicates that the
## default methods for arithmetic operations of lists, such as pointwise
## addition and multiplication as inner product or matrix product,
## shall be applicable to <A>list</A>.
## <P/>
## <Ref Filt="IsListDefault"/> implies <Ref Filt="IsGeneralizedRowVector"/>
## and <Ref Filt="IsMultiplicativeGeneralizedRowVector"/>.
## <P/>
## All internally represented lists are in this category,
## and also all lists in the representations <C>IsGF2VectorRep</C>,
## <C>Is8BitVectorRep</C>, <C>IsGF2MatrixRep</C>, and
## <C>Is8BitMatrixRep</C>
## (see <Ref Sect="Row Vectors over Finite Fields"/> and
## <Ref Sect="Matrices over Finite Fields"/>).
## <!-- strings and blists:-->
## <!-- It does not really make sense to have them in <C>IsGeneralizedRowVector</C>.-->
## Note that the result of an arithmetic operation with lists in
## <Ref Filt="IsListDefault"/> will in general be an internally represented
## list, so most <Q>wrapped list objects</Q> will not lie in
## <Ref Filt="IsListDefault"/>.
## <P/>
## <Example><![CDATA[
## gap> v:= [ 1, 2 ];; m:= [ v, 2*v ];;
## gap> IsListDefault( v ); IsListDefault( m );
## true
## true
## gap> IsListDefault( bas ); IsListDefault( liemat );
## true
## false
## ]]></Example>
## </Description>
## </ManSection>
## <#/GAPDoc>
##
DeclareCategory( "IsListDefault", IsMultiplicativeGeneralizedRowVector );
#T IsListDefault should imply IsAdditiveElement and IsMultiplicativeElement?
InstallTrueMethod( IsListDefault, IsInternalRep and IsList );
# This is an auxiliary filter intended to simplify method installations.
# We must declare it here because the implication from 'IsList and IsEmpty'
# must be installed before the types 'TYPE_LIST_EMPTY_MUTABLE' and
# 'TYPE_LIST_EMPTY_IMMUTABLE' are created.
DeclareCategory( "IsRowVectorOrVectorObj", IsObject );
InstallTrueMethod( IsRowVectorOrVectorObj, IsRowVector );
InstallTrueMethod( IsRowVectorOrVectorObj, IsEmpty );
#############################################################################
##
#P IsRectangularTable( <list> ) . . . . table with all rows the same length
##
## <#GAPDoc Label="IsRectangularTable">
## <ManSection>
## <Prop Name="IsRectangularTable" Arg='list'/>
##
## <Description>
## A list lies in <C>IsRectangularTable</C> when it is nonempty and its elements
## are all homogeneous lists of the same family and the same length.
## </Description>
## </ManSection>
## <#/GAPDoc>
##
## This filter is a Property, not a Category, because it is not
## always possible to determine cheaply the length of a row (which
## might be some sort of Enumerator). If the rows are plain lists
## then this property should always be known (the kernel type determination
## for plain lists handles this). Plain lists without mutable
## elements will remember their rectangularity once it is determined.
##
DeclareProperty( "IsRectangularTable", IsList );
InstallTrueMethod( IsTable, IsRectangularTable );
#############################################################################
##
#V TYPE_LIST_NDENSE_MUTABLE . . . . . . . . type of non-dense, mutable list
##
## <ManSection>
## <Var Name="TYPE_LIST_NDENSE_MUTABLE"/>
##
## <Description>
## </Description>
## </ManSection>
##
BIND_GLOBAL( "TYPE_LIST_NDENSE_MUTABLE", NewType( ListsFamily,
IsMutable and IsList and IsPlistRep ) );
#############################################################################
##
#V TYPE_LIST_NDENSE_IMMUTABLE . . . . . . type of non-dense, immutable list
##
## <ManSection>
## <Var Name="TYPE_LIST_NDENSE_IMMUTABLE"/>
##
## <Description>
## </Description>
## </ManSection>
##
BIND_GLOBAL( "TYPE_LIST_NDENSE_IMMUTABLE", NewType( ListsFamily,
IsList and IsPlistRep ) );
#############################################################################
##
#V TYPE_LIST_DENSE_NHOM_MUTABLE . . . type of dense, non-homo, mutable list
##
## <ManSection>
## <Var Name="TYPE_LIST_DENSE_NHOM_MUTABLE"/>
##
## <Description>
## </Description>
## </ManSection>
##
BIND_GLOBAL( "TYPE_LIST_DENSE_NHOM_MUTABLE", NewType( ListsFamily,
IsMutable and IsList and IsDenseList and IsPlistRep ) );
#############################################################################
##
#V TYPE_LIST_DENSE_NHOM_IMMUTABLE . type of dense, non-homo, immutable list
##
## <ManSection>
## <Var Name="TYPE_LIST_DENSE_NHOM_IMMUTABLE"/>
##
## <Description>
## </Description>
## </ManSection>
##
BIND_GLOBAL( "TYPE_LIST_DENSE_NHOM_IMMUTABLE", NewType( ListsFamily,
IsList and IsDenseList and IsPlistRep ) );
#############################################################################
##
#V TYPE_LIST_DENSE_NHOM_SSORT_MUTABLE . . .
##
## <ManSection>
## <Var Name="TYPE_LIST_DENSE_NHOM_SSORT_MUTABLE"/>
##
## <Description>
## </Description>
## </ManSection>
##
BIND_GLOBAL( "TYPE_LIST_DENSE_NHOM_SSORT_MUTABLE", NewType( ListsFamily,
IsMutable and IsList and IsDenseList and IsPlistRep and IsSSortedList ) );
#############################################################################
##
#V TYPE_LIST_DENSE_NHOM_NSORT_MUTABLE . . .
##
## <ManSection>
## <Var Name="TYPE_LIST_DENSE_NHOM_NSORT_MUTABLE"/>
##
## <Description>
## </Description>
## </ManSection>
##
BIND_GLOBAL( "TYPE_LIST_DENSE_NHOM_NSORT_MUTABLE", NewType( ListsFamily,
IsMutable and IsList and IsDenseList and IsPlistRep ) );
#############################################################################
##
#V TYPE_LIST_DENSE_NHOM_SSORT_IMMUTABLE .
##
## <ManSection>
## <Var Name="TYPE_LIST_DENSE_NHOM_SSORT_IMMUTABLE"/>
##
## <Description>
## </Description>
## </ManSection>
##
BIND_GLOBAL( "TYPE_LIST_DENSE_NHOM_SSORT_IMMUTABLE", NewType( ListsFamily,
IsList and IsDenseList and IsPlistRep and IsSSortedList ) );
#############################################################################
##
#V TYPE_LIST_DENSE_NHOM_NSORT_IMMUTABLE .
##
## <ManSection>
## <Var Name="TYPE_LIST_DENSE_NHOM_NSORT_IMMUTABLE"/>
##
## <Description>
## </Description>
## </ManSection>
##
BIND_GLOBAL( "TYPE_LIST_DENSE_NHOM_NSORT_IMMUTABLE", NewType( ListsFamily,
IsList and IsDenseList and IsPlistRep ) );
#############################################################################
##
#V TYPE_LIST_EMPTY_MUTABLE . . . . . . . . . type of the empty, mutable list
##
## <ManSection>
## <Var Name="TYPE_LIST_EMPTY_MUTABLE"/>
##
## <Description>
## </Description>
## </ManSection>
##
BIND_GLOBAL( "TYPE_LIST_EMPTY_MUTABLE", NewType( ListsFamily,
IsMutable and IsList and IsDenseList and IsHomogeneousList
and IsEmpty and IsString and IsPlistRep ) );
#############################################################################
##
#V TYPE_LIST_EMPTY_IMMUTABLE . . . . . . . type of the empty, immutable list
##
## <ManSection>
## <Var Name="TYPE_LIST_EMPTY_IMMUTABLE"/>
##
## <Description>
## </Description>
## </ManSection>
##
BIND_GLOBAL( "TYPE_LIST_EMPTY_IMMUTABLE", NewType( ListsFamily,
IsList and IsDenseList and IsHomogeneousList
and IsEmpty and IsString and IsPlistRep ) );
#############################################################################
##
#V TYPE_BLIST_*
##
## <ManSection>
## <Var Name="TYPE_BLIST_MUT"/>
##
## <Description>
## </Description>
## </ManSection>
##
BIND_GLOBAL( "TYPE_BLIST_MUT",
NewType( CollectionsFamily(BooleanFamily),
IsMutable and IsInternalRep and IsDenseList and IsHomogeneousList and
IS_BLIST_REP ) );
BIND_GLOBAL( "TYPE_BLIST_IMM",
NewType( CollectionsFamily(BooleanFamily),
IsCopyable and IsInternalRep and IsDenseList and IsHomogeneousList and
IS_BLIST_REP ) );
BIND_GLOBAL( "TYPE_BLIST_NSORT_MUT",
NewType( CollectionsFamily(BooleanFamily),
IsMutable and IsInternalRep and IsDenseList and IsHomogeneousList and
IS_BLIST_REP and Tester(IsSSortedList) ) );
BIND_GLOBAL( "TYPE_BLIST_NSORT_IMM",
NewType( CollectionsFamily(BooleanFamily),
IsCopyable and IsInternalRep and IsDenseList and IsHomogeneousList and
IS_BLIST_REP and Tester(IsSSortedList) ) );
BIND_GLOBAL( "TYPE_BLIST_SSORT_MUT",
NewType( CollectionsFamily(BooleanFamily),
IsMutable and IsInternalRep and IsDenseList and IsHomogeneousList and
IS_BLIST_REP and Tester(IsSSortedList) and IsSSortedList ) );
BIND_GLOBAL( "TYPE_BLIST_SSORT_IMM",
NewType( CollectionsFamily(BooleanFamily),
IsCopyable and IsInternalRep and IsDenseList and IsHomogeneousList and
IS_BLIST_REP and Tester(IsSSortedList) and IsSSortedList ) );
BIND_GLOBAL( "TYPE_BLIST_EMPTY_MUT",
NewType( CollectionsFamily(BooleanFamily),
IsMutable and IsInternalRep and IsDenseList and IsHomogeneousList and
IS_BLIST_REP and IsEmpty and Tester(IsEmpty) ) );
BIND_GLOBAL( "TYPE_BLIST_EMPTY_IMM",
NewType( CollectionsFamily(BooleanFamily),
IsCopyable and IsInternalRep and IsDenseList and IsHomogeneousList and
IS_BLIST_REP and IsEmpty and Tester(IsEmpty) ) );
#############################################################################
##
#F TYPE_LIST_HOM( <family>, <isMutable>, <sort>, <table> )
##
## <ManSection>
## <Func Name="TYPE_LIST_HOM" Arg='family, isMutable, sort, table'/>
##
## <Description>
## Return the type of a homogeneous list whose elements are in <family>,
## with additional properties indicated by <isMutable>, <sort> and <table>.
## </Description>
## </ManSection>
##
BIND_GLOBAL( "TYPE_LIST_HOM", function ( family, isMutable, sort, table )
local colls, filter;
colls := CollectionsFamily( family );
filter := IsPlistRep and IsList and IsDenseList and
IsHomogeneousList and IsCollection;
if isMutable then
filter := filter and IsMutable;
fi;
if sort <> fail then
filter := filter and Tester(IsSSortedList);
if sort then
filter := filter and IsSSortedList;
fi;
fi;
if table = 1 then
filter := filter and IsTable;
elif table = 2 then
filter := filter and IsTable and IsRectangularTable;
fi;
return NewType(colls, filter);
end );
#############################################################################
##
#M ASS_LIST( <plist>, <pos>, <obj> ) . . . . . . . . . . default assignment
##
InstallMethod( ASS_LIST,
"for plain list and external objects",
[ IsMutable and IsList and IsPlistRep,
IsPosInt,
IsObject ],
ASS_PLIST_DEFAULT );
#############################################################################
##
#C IsRange( <obj> )
##
## <#GAPDoc Label="IsRange">
## <ManSection>
## <Filt Name="IsRange" Arg='obj' Type='Category'/>
##
## <Description>
## tests if the object <A>obj</A> is a range, i.e. is a dense list of
## integers that is also a range
## (see <Ref Sect="Ranges"/> for a definition of <Q>range</Q>).
## <Example><![CDATA[
## gap> IsRange( [1,2,3] ); IsRange( [7,5,3,1] );
## true
## true
## gap> IsRange( [1 .. 3] );
## true
## gap> IsRange( [1,2,4,5] ); IsRange( [1,,3,,5,,7] );
## false
## false
## gap> IsRange( [] ); IsRange( [1] );
## true
## true
## ]]></Example>
## </Description>
## </ManSection>
## <#/GAPDoc>
##
DeclareCategoryKernel( "IsRange",
IsCollection and IsDenseList and IsCyclotomicCollection, IS_RANGE );
#############################################################################
##
#R IsRangeRep( <obj> )
##
## <#GAPDoc Label="IsRangeRep">
## <ManSection>
## <Filt Name="IsRangeRep" Arg='obj' Type='Representation'/>
##
## <Description>
## Tests whether <A>obj</A> is represented as a range,
## that is by internally storing only the first value, the in- or decrement,
## and the last value of the range.
## <P/>
## To test whether a list is a range in the mathematical sense see <Ref
## Filt="IsRange"/>.
## <P/>
## Lists created by the syntactic construct
## <C>[ <A>first</A>, <A>second</A> .. <A>last</A> ]</C>,
## see <Ref Sect="Ranges"/>, are in <Ref Filt="IsRangeRep"/>.
## <P/>
# Note that if you modify an <Ref Filt="IsRangeRep"/> object by assigning to
# one of its entries, or by using <Ref Oper="Add"/> or <Ref Oper="Append"/>,
## then the range may be converted into a plain list, even
## though the resulting list may still be a range, mathematically.
## <P/>
## <Example><![CDATA[
## gap> IsRangeRep( [1 .. 3] );
## true
## gap> IsRangeRep( [1, 2, 3] );
## false
## gap> l := [1..3];;
## gap> l[1] := 1;;
## gap> l;
## [ 1, 2, 3 ]
## ]]></Example>
## </Description>
## </ManSection>
## <#/GAPDoc>
##
DeclareRepresentationKernel( "IsRangeRep",
IsInternalRep, IS_RANGE_REP );
#############################################################################
##
#F ConvertToRangeRep( <list> )
##
## <#GAPDoc Label="ConvertToRangeRep">
## <ManSection>
## <Func Name="ConvertToRangeRep" Arg='list'/>
##
## <Description>
## For some lists the &GAP; kernel knows that they are in fact ranges.
## Those lists are represented internally in a compact way,
## namely in <Ref Filt="IsRangeRep"/>, instead of as plain lists.
## A list that is represented as a plain list might still be a
## range but &GAP; may not know this.
## <P/>
## If <A>list</A> is a range then <Ref Func="ConvertToRangeRep"/> changes
## the representation of <A>list</A> to <Ref Filt="IsRangeRep"/>.
## A call of <Ref Func="ConvertToRangeRep"/> for a list that is not a range
## is ignored.
## <P/>
## <Example><![CDATA[
## gap> r:= [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ];
## [ 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 ]
## gap> ConvertToRangeRep( r ); r;
## [ 1 .. 10 ]
## gap> l:= [ 1, 2, 4, 5 ];; ConvertToRangeRep( l ); l;
## [ 1, 2, 4, 5 ]
## ]]></Example>
## </Description>
## </ManSection>
## <#/GAPDoc>
##
BIND_GLOBAL( "ConvertToRangeRep", function( list )
IsRange( list );
end );
#N
#N This must change -- a range is NOT is IS_PLIST_REP
#N
#############################################################################
##
#V TYPE_RANGE_SSORT_MUTABLE . . . . . . . . . type of sorted, mutable range
##
## <ManSection>
## <Var Name="TYPE_RANGE_SSORT_MUTABLE"/>
##
## <Description>
## </Description>
## </ManSection>
##
BIND_GLOBAL( "TYPE_RANGE_SSORT_MUTABLE",
NewType(CollectionsFamily(CyclotomicsFamily),
IsList and IsDenseList and
IsHomogeneousList and IsCollection and
Tester(IsSSortedList) and IsRange and IsMutable and
IsSSortedList
and IsRangeRep and IsInternalRep));
#############################################################################
##
#V TYPE_RANGE_NSORT_MUTABLE . . . . . . . . type of unsorted, mutable range
##
## <ManSection>
## <Var Name="TYPE_RANGE_NSORT_MUTABLE"/>
##
## <Description>
## </Description>
## </ManSection>
##
BIND_GLOBAL( "TYPE_RANGE_NSORT_MUTABLE",
NewType(CollectionsFamily(CyclotomicsFamily),
IsList and IsDenseList and
IsHomogeneousList and IsCollection and
Tester(IsSSortedList) and IsRange and IsMutable
and IsRangeRep and IsInternalRep));
#############################################################################
##
#V TYPE_RANGE_SSORT_IMMUTABLE . . . . . . . type of sorted, immutable range
##
## <ManSection>
## <Var Name="TYPE_RANGE_SSORT_IMMUTABLE"/>
##
## <Description>
## </Description>
## </ManSection>
##
BIND_GLOBAL( "TYPE_RANGE_SSORT_IMMUTABLE",
NewType(CollectionsFamily(CyclotomicsFamily),
IsList and IsDenseList and
IsHomogeneousList and IsCollection and
Tester(IsSSortedList) and IsRange and
IsSSortedList
and IsRangeRep and IsInternalRep));
#############################################################################
##
#V TYPE_RANGE_NSORT_IMMUTABLE . . . . . . type of unsorted, immutable range
##
## <ManSection>
## <Var Name="TYPE_RANGE_NSORT_IMMUTABLE"/>
##
## <Description>
## </Description>
## </ManSection>
##
BIND_GLOBAL( "TYPE_RANGE_NSORT_IMMUTABLE",
NewType(CollectionsFamily(CyclotomicsFamily),
IsList and IsDenseList and
IsHomogeneousList and IsCollection and
Tester(IsSSortedList) and IsRange
and IsRangeRep and IsInternalRep));
#############################################################################
##
#C IsBlist(<obj>)
##
## <#GAPDoc Label="IsBlist">
## <ManSection>
## <Filt Name="IsBlist" Arg='obj' Type='Category'/>
##
## <Description>
## A boolean list (<Q>blist</Q>) is a list that has no holes and contains
## only <K>true</K> and <K>false</K>.
## Boolean lists can be represented in an efficient compact form, see
## <Ref Sect="More about Boolean Lists"/> for details.
## <P/>
## <Example><![CDATA[
## gap> IsBlist( [ true, true, false, false ] );
## true
## gap> IsBlist( [] );
## true
## gap> IsBlist( [false,,true] ); # has holes
## false
## gap> IsBlist( [1,1,0,0] ); # contains not only boolean values
## false
## gap> IsBlist( 17 ); # is not even a list
## false
## ]]></Example>
## <P/>
## Boolean lists are lists and all operations for lists are therefore
## applicable to boolean lists.
## <P/>
## Boolean lists can be used in various ways, but maybe the most important
## application is their use for the description of <E>subsets</E> of finite
## sets.
## Suppose <M>set</M> is a finite set, represented as a list.
## Then a subset <M>sub</M> of <M>set</M> is represented by a boolean list
## <M>blist</M> of the same length as <M>set</M> such that
## <M>blist[i]</M> is <K>true</K>
## if <M>set[i]</M> is in <M>sub</M>,
## and <K>false</K> otherwise.
## </Description>
## </ManSection>
## <#/GAPDoc>
##
DeclareCategoryKernel( "IsBlist", IsHomogeneousList, IS_BLIST );
#############################################################################
##
#R IsBlistRep( <obj> )
##
## <#GAPDoc Label="IsBlistRep">
## <ManSection>
## <Filt Name="IsBlistRep" Arg='obj' Type='Representation'/>
## <Func Name="ConvertToBlistRep" Arg='blist' />
## <Returns><K>true</K> or <K>false</K></Returns>
## <Description>
## The first function is a filter that returns <K>true</K> if
## the object <A>obj</A> is
## a boolean list in compact representation and <K>false</K> otherwise,
## see <Ref Sect="More about Boolean Lists"/>.<P/>
##
## The second function converts the object <A>blist</A> to a boolean list
## in compact representation and returns <K>true</K> if this is possible.
## Otherwise <A>blist</A> is unchanged and <K>false</K> is returned.
## <Example>
## gap> l := [true, false, true];
## [ true, false, true ]
## gap> IsBlistRep(l);
## true
## gap> l := [true, false, 1];
## [ true, false, 1 ]
## gap> l[3] := false;
## false
## gap> IsBlistRep(l);
## false
## gap> ConvertToBlistRep(l);
## true
## </Example>
## </Description>
## </ManSection>
## <#/GAPDoc>
##
DeclareRepresentationKernel( "IsBlistRep",
IsInternalRep, IS_BLIST_REP );
BIND_GLOBAL( "ConvertToBlistRep", IS_BLIST_CONV );
#############################################################################
##
#F BlistList( <list>, <sub> )
##
## <#GAPDoc Label="BlistList">
## <ManSection>
## <Func Name="BlistList" Arg='list, sub'/>
##
## <Description>
## returns a new boolean list that describes the list <A>sub</A>
## as a sublist of the dense list <A>list</A>.
## That is <Ref Func="BlistList"/> returns a boolean list <M>blist</M> of
## the same length as <A>list</A> such that <M>blist[i]</M>
## is <K>true</K> if <A>list</A><M>[i]</M> is in <A>sub</A>
## and <K>false</K> otherwise.
## <P/>
## <A>list</A> need not be a proper set
## (see <Ref Sect="Sorted Lists and Sets"/>),
## even though in this case <Ref Func="BlistList"/> is most efficient.
## In particular <A>list</A> may contain duplicates.
## <A>sub</A> need not be a proper sublist of <A>list</A>,
## i.e., <A>sub</A> may contain elements that are not in <A>list</A>.
## Those elements of course have no influence on the result of
## <Ref Func="BlistList"/>.
## <P/>
## <Example><![CDATA[
## gap> BlistList( [1..10], [2,3,5,7] );
## [ false, true, true, false, true, false, true, false, false, false ]
## gap> BlistList( [1,2,3,4,5,2,8,6,4,10], [4,8,9,16] );
## [ false, false, false, true, false, false, true, false, true, false ]
## ]]></Example>
## <P/>
## See also <Ref Func="UniteBlistList"/>.
## </Description>
## </ManSection>
## <#/GAPDoc>
##
DeclareSynonym( "BlistList", BLIST_LIST );
#############################################################################
##
#F UniteBlistList( <list>, <blist>, <sub> )
##
## <#GAPDoc Label="UniteBlistList">
## <ManSection>
## <Func Name="UniteBlistList" Arg='list, blist, sub'/>
##
## <Description>
## works like
## <C>UniteBlist(<A>blist</A>,BlistList(<A>list</A>,<A>sub</A>))</C>.
## As no intermediate blist is created, the performance is better than the
## separate function calls.
## </Description>
## </ManSection>
## <#/GAPDoc>
##
DeclareSynonym( "UniteBlistList", UNITE_BLIST_LIST );
#############################################################################
##
#O ListBlist( <list>, <blist> )
##
## <#GAPDoc Label="ListBlist">
## <ManSection>
## <Func Name="ListBlist" Arg='list, blist'/>
##
## <Description>
## returns the sublist <M>sub</M> of the list <A>list</A>, which must have
## no holes, represented by the boolean list <A>blist</A>, which must have
## the same length as <A>list</A>.
## <P/>
## <M>sub</M> contains the element <A>list</A><M>[i]</M> if
## <A>blist</A><M>[i]</M> is <K>true</K> and does not contain the
## element if <A>blist</A><M>[i]</M> is <K>false</K>.
## The order of the elements in <M>sub</M> is
## the same as the order of the corresponding elements in <A>list</A>.
## <P/>
## <Example><![CDATA[
## gap> ListBlist([1..8],[false,true,true,true,true,false,true,true]);
## [ 2, 3, 4, 5, 7, 8 ]
## gap> ListBlist( [1,2,3,4,5,2,8,6,4,10],
## > [false,false,false,true,false,false,true,false,true,false] );
## [ 4, 8, 4 ]
## ]]></Example>
## </Description>
## </ManSection>
## <#/GAPDoc>
##
DeclareSynonym( "ListBlist", LIST_BLIST );
#############################################################################
##
#F SizeBlist(<blist>)
##
## <#GAPDoc Label="SizeBlist">
## <ManSection>
## <Func Name="SizeBlist" Arg='blist'/>
##
## <Description>
## returns the number of entries of the boolean list <A>blist</A> that are
## <K>true</K>.
## This is the size of the subset represented by the boolean list
## <A>blist</A>.
## <P/>
## <Example><![CDATA[
## gap> SizeBlist( [ false, true, false, true, false ] );
## 2
## ]]></Example>
## </Description>
## </ManSection>
## <#/GAPDoc>
##
DeclareSynonym( "SizeBlist", SIZE_BLIST );
#############################################################################
##
#F IsSubsetBlist( <blist1>, <blist2> )
##
## <#GAPDoc Label="IsSubsetBlist">
## <ManSection>
## <Func Name="IsSubsetBlist" Arg='blist1, blist2'/>
##
## <Description>
## returns <K>true</K> if the boolean list <A>blist2</A> is a subset of the
## boolean list <A>blist1</A>, which must have equal length,
## and <K>false</K> otherwise.
## <A>blist2</A> is a subset of <A>blist1</A> if
## <A>blist1</A><M>[i] =</M> <A>blist1</A><M>[i]</M> <K>or</K>
## <A>blist2</A><M>[i]</M> for all <M>i</M>.
## <P/>
## <Example><![CDATA[
## gap> blist1 := [ true, true, false, false ];;
## gap> blist2 := [ true, false, true, false ];;
## gap> IsSubsetBlist( blist1, blist2 );
## false
## gap> blist2 := [ true, false, false, false ];;
## gap> IsSubsetBlist( blist1, blist2 );
## true
## ]]></Example>
## </Description>
## </ManSection>
## <#/GAPDoc>
##
DeclareSynonym( "IsSubsetBlist", IS_SUB_BLIST );
#############################################################################
##
#F UniteBlist( <blist1>, <blist2> )
##
## <#GAPDoc Label="UniteBlist">
## <ManSection>
## <Func Name="UniteBlist" Arg='blist1, blist2'/>
##
## <Description>
## <Ref Func="UniteBlist"/> unites the boolean list <A>blist1</A> with the
## boolean list <A>blist2</A>, which must have the same length.
## This is equivalent to assigning
## <A>blist1</A><M>[i] :=</M> <A>blist1</A><M>[i]</M> <K>or</K>
## <A>blist2</A><M>[i]</M> for all <M>i</M>.
## <P/>
## <Ref Func="UniteBlist"/> returns nothing, it is only
## called to change <A>blist1</A>.
## <P/>
## <Example><![CDATA[
## gap> blist1 := [ true, true, false, false ];;
## gap> blist2 := [ true, false, true, false ];;
## gap> UniteBlist( blist1, blist2 );
## gap> blist1;
## [ true, true, true, false ]
## ]]></Example>
## <P/>
## The function <Ref Func="UnionBlist" Label="for a list"/> is the
## nondestructive counterpart to <Ref Func="UniteBlist"/>.
## </Description>
## </ManSection>
## <#/GAPDoc>
##
DeclareSynonym( "UniteBlist", UNITE_BLIST );
#############################################################################
##
#F IntersectBlist( <blist1>, <blist2> )
##
## <#GAPDoc Label="IntersectBlist">
## <ManSection>
## <Func Name="IntersectBlist" Arg='blist1, blist2'/>
##
## <Description>
## intersects the boolean list <A>blist1</A> with the boolean list
## <A>blist2</A>, which must have the same length.
## This is equivalent to assigning
## <A>blist1</A><M>[i]:=</M> <A>blist1</A><M>[i]</M> <K>and</K>
## <A>blist2</A><M>[i]</M> for all <M>i</M>.
## <P/>
## <Ref Func="IntersectBlist"/> returns nothing,
## it is only called to change <A>blist1</A>.
## <P/>
## <Example><![CDATA[
## gap> blist1 := [ true, true, false, false ];;
## gap> blist2 := [ true, false, true, false ];;
## gap> IntersectBlist( blist1, blist2 );
## gap> blist1;
## [ true, false, false, false ]
## ]]></Example>
## <P/>
## The function <Ref Func="IntersectionBlist" Label="for a list"/> is the
## nondestructive counterpart to <Ref Func="IntersectBlist"/>.
## </Description>
## </ManSection>
## <#/GAPDoc>
##
DeclareSynonym( "IntersectBlist", INTER_BLIST );
#############################################################################
##
#F SubtractBlist( <blist1>, <blist2> )
##
## <#GAPDoc Label="SubtractBlist">
## <ManSection>
## <Func Name="SubtractBlist" Arg='blist1, blist2'/>
##
## <Description>
## subtracts the boolean list <A>blist2</A> from the boolean list
## <A>blist1</A>, which must have equal length.
## This is equivalent to assigning
## <A>blist1</A><M>[i]:=</M> <A>blist1</A><M>[i]</M> <K>and</K> <K>not</K>
## <A>blist2</A><M>[i]</M>
## for all <M>i</M>.
## <P/>
## <Ref Func="SubtractBlist"/> returns nothing, it is only called to change
## <A>blist1</A>.
## <P/>
## <Example><![CDATA[
## gap> blist1 := [ true, true, false, false ];;
## gap> blist2 := [ true, false, true, false ];;
## gap> SubtractBlist( blist1, blist2 );
## gap> blist1;
## [ false, true, false, false ]
## ]]></Example>
## <P/>
## The function <Ref Func="DifferenceBlist"/> is the
## nondestructive counterpart to <Ref Func="SubtractBlist"/>.
## </Description>
## </ManSection>
## <#/GAPDoc>
##
DeclareSynonym( "SubtractBlist", SUBTR_BLIST );
#############################################################################
##
#F MeetBlist( <blist1>, <blist2> )
##
## <#GAPDoc Label="MeetBlist">
## <ManSection>
## <Func Name="MeetBlist" Arg='blist1, blist2'/>
##
## <Description>
## Returns <K>true</K> if there is a position at which both <A>blist1</A>
## and <A>blist2</A> contain <K>true</K>, and <K>false</K> otherwise.
## It is equivalent to, but faster than
## <C>SizeBlist(IntersectionBlist(blist1, blist2)) <> 0</C>.
## An error is thrown if the lists do not have the same length.
## <Example><![CDATA[
## gap> blist1 := [ true, true, true, true ];;
## gap> blist2 := [ true, false, true, false ];;
## gap> MeetBlist( blist1, blist2 );
## true
## gap> FlipBlist( blist1 );
## gap> MeetBlist( blist1, blist2 );
## false
## ]]></Example>
## </Description>
## </ManSection>
## <#/GAPDoc>
##
DeclareSynonym( "MeetBlist", MEET_BLIST );
#############################################################################
##
#F FlipBlist( <blist> )
##
## <#GAPDoc Label="FlipBlist">
## <ManSection>
## <Func Name="FlipBlist" Arg='blist'/>
##
## <Description>
## Changes every entry in <A>blist</A> that equals <K>true</K> to <K>false</K>
## and vice versa. If <C>blist1</C> and <C>blist2</C> are boolean lists with
## equal length and every value in <C>blist2</C> is <K>true</K>,
## then <C>FlipBlist( blist1 )</C> is equivalent to
## <C>SubtractBlist( blist2, blist1 ); blist1 := blist2;</C>
## but <C>FlipBlist</C> is faster, and simpler to type.
## <P/>
## <Ref Func="FlipBlist"/> returns nothing, it is only called to change
## <A>blist</A> in-place.
## <P/>
## <Example><![CDATA[
## gap> blist1 := [ true, true, true, true ];;
## gap> blist2 := [ true, false, true, false ];;
## gap> SubtractBlist( blist1, blist2 );
## gap> blist1;
## [ false, true, false, true ]
## gap> FlipBlist( blist2 );
## gap> blist2;
## [ false, true, false, true ]
## ]]></Example>
## </Description>
## </ManSection>
## <#/GAPDoc>
##
DeclareSynonym( "FlipBlist", FLIP_BLIST );
#############################################################################
##
#F ClearAllBlist( <blist> )
##
## <#GAPDoc Label="ClearAllBlist">
## <ManSection>
## <Func Name="ClearAllBlist" Arg='blist'/>
##
## <Description>
## Changes every entry in <A>blist</A> to <K>false</K>.
## If <C>blist1</C> and <C>blist2</C> are boolean lists with
## equal length and every value in <C>blist2</C> is <K>false</K>,
## then <C>ClearAllBlist( blist1 )</C> is equivalent to
## <C>IntersectBlist( blist1, blist2 );</C> but is faster, and simpler to
## type.
## <P/>
## <Ref Func="ClearAllBlist"/> returns nothing, it is only called to change
## <A>blist</A> in-place.
## <P/>
## <Example><![CDATA[
## gap> blist1 := [ true, true, true, true ];;
## gap> blist2 := [ true, false, true, false ];;
## gap> ClearAllBlist( blist1 );
## gap> blist1;
## [ false, false, false, false ]
## gap> ClearAllBlist(blist2);
## gap> blist2;
## [ false, false, false, false ]
## ]]></Example>
## </Description>
## </ManSection>
## <#/GAPDoc>
##
DeclareSynonym( "ClearAllBlist", CLEAR_ALL_BLIST );
#############################################################################
##
#F SetAllBlist( <blist> )
##
## <#GAPDoc Label="SetAllBlist">
## <ManSection>
## <Func Name="SetAllBlist" Arg='blist'/>
##
## <Description>
## Changes every entry in <A>blist</A> to <K>true</K>.
## If <C>blist1</C> and <C>blist2</C> are boolean lists with
## equal length and every value in <C>blist2</C> is <K>true</K>,
## then <C>SetAllBlist( blist1 )</C> is equivalent to
## <C>UniteBlist( blist1, blist2 );</C> but is faster, and simpler to
## type.
## <P/>
## <Ref Func="SetAllBlist"/> returns nothing, it is only called to change
## <A>blist</A> in-place.
## <P/>
## <Example><![CDATA[
## gap> blist1 := [ true, true, true, true ];;
## gap> blist2 := [ true, false, true, false ];;
## gap> SetAllBlist( blist1 );
## gap> blist1;
## [ true, true, true, true ]
## gap> SetAllBlist(blist2);
## gap> blist2;
## [ true, true, true, true ]
## ]]></Example>
## </Description>
## </ManSection>
## <#/GAPDoc>
##
DeclareSynonym( "SetAllBlist", SET_ALL_BLIST );
|