read `AbelBijection.txt`: for i from 1 to 10 do print(``): print(`-------------------------------`): print(``): print(``): TL:=RandAB(20,3); TLR:=GK(TL,3); print(`The AB object`, TL): print(``): print( `goes to the CD object`): print(``): print(TLR): print(``): TLRL:=iGK(TLR,3): print(``): if TL=TLRL then print(`if you apply the inverse mapping you get it back`): else print(`the bijection is wrong`): fi: od: print(``): print(`-----------------------------`): print(``): for i from 1 to 10 do print(``): print(`-------------------------------`): print(``): TR:=RandCD(20,3); TRL:=iGK(TR,3); print(`The CD object`, TR): print(``): print(`goes to the AB object`): print(``): print(TRL): print(``): TRLR:=GK(TRL,3): print(``): if TR=TRLR then print(`if you apply the inverse mapping you get it back`): else print(`the bijection is wrong`): fi: od: quit: