@@ -225,7 +225,7 @@ e 3 and 2)
225225gap> x:= [ false ,true ,true ,false ] ;;
226226gap> UniteBlist(Immutable(x), [ true ,true ,false ,false ] );
227227Error, UNITE_BLIST: < blist1> must be a mutable boolean list (not a list (boole\
228- an,imm ))
228+ an))
229229gap> x;
230230[ false , true , true , false ]
231231gap> UniteBlist(x, [ true ,true ,false ,false ] );
@@ -247,7 +247,7 @@ Error, UNITE_BLIST_LIST: <sub> must be a small list (not the value 'fail')
247247gap> x:= [ true ,true ,false ] ;;
248248gap> UniteBlistList([ 1 ,2 ,3 ] , Immutable(x), [ 2 ,3 ] );
249249Error, UNITE_BLIST_LIST: < blist> must be a mutable boolean list (not a list (b\
250- oolean,imm ))
250+ oolean))
251251gap> x;
252252[ true , true , false ]
253253gap> UniteBlistList([ 1 ,2 ,3 ] , x, [ 2 ,3 ] );
@@ -278,7 +278,7 @@ e 3 and 2)
278278gap> x:= [ false ,true ,true ,false ] ;;
279279gap> IntersectBlist(Immutable(x), [ true ,true ,false ,false ] );
280280Error, INTER_BLIST: < blist1> must be a mutable boolean list (not a list (boole\
281- an,imm ))
281+ an))
282282gap> x;
283283[ false , true , true , false ]
284284gap> IntersectBlist(x, [ true ,true ,false ,false ] );
@@ -296,7 +296,7 @@ e 3 and 2)
296296gap> x:= [ false ,true ,true ,false ] ;;
297297gap> SubtractBlist(Immutable(x), [ true ,true ,false ,false ] );
298298Error, SUBTR_BLIST: < blist1> must be a mutable boolean list (not a list (boole\
299- an,imm ))
299+ an))
300300gap> x;
301301[ false , true , true , false ]
302302gap> SubtractBlist(x, [ true ,true ,false ,false ] );
@@ -323,7 +323,7 @@ Error, FLIP_BLIST: <blist> must be a boolean list (not the value 'fail')
323323gap> x:= [ false ,true ,true ,false ] ;;
324324gap> FlipBlist(Immutable(x));
325325Error, FLIP_BLIST: < blist> must be a mutable boolean list (not a list (boolean\
326- ,imm ))
326+ ))
327327gap> x;
328328[ false , true , true , false ]
329329gap> FLIP_BLIST(x);
@@ -347,7 +347,7 @@ Error, SET_ALL_BLIST: <blist> must be a boolean list (not the value 'fail')
347347gap> x:= [ false ,true ,true ,false ] ;;
348348gap> SET_ALL_BLIST(Immutable(x));
349349Error, SET_ALL_BLIST: < blist> must be a mutable boolean list (not a list (bool\
350- ean,imm ))
350+ ean))
351351gap> x;
352352[ false , true , true , false ]
353353gap> SET_ALL_BLIST(x);
@@ -369,7 +369,7 @@ Error, CLEAR_ALL_BLIST: <blist> must be a boolean list (not the value 'fail')
369369gap> x:= [ false ,true ,true ,false ] ;;
370370gap> CLEAR_ALL_BLIST(Immutable(x));
371371Error, CLEAR_ALL_BLIST: < blist> must be a mutable boolean list (not a list (bo\
372- olean,imm ))
372+ olean))
373373gap> x;
374374[ false , true , true , false ]
375375gap> CLEAR_ALL_BLIST(x);
0 commit comments