test(N) :- L = [1,20,21,23, 44,50,51],
tools:start_ms_timer(T1),
t1(N,L,R),
tools:stop_ms_timer_with_msg(T1,test1_inter(N,R)),
ordlist_to_bitset(L,B),
tools:start_ms_timer(T1b),
t1bs(N,B,RBS), bitset_to_ordlist(RBS,R1BS),
tools:stop_ms_timer_with_msg(T1b,test1_bitset(N,RBS,R1BS)),
tools:start_ms_timer(T2),
t2(N,L,R2),
tools:stop_ms_timer_with_msg(T2,test2_member(N,R2)),
tools:start_ms_timer(T2b),
t2bs(N,B,R22),
tools:stop_ms_timer_with_msg(T2b,test2_bitset(N,R22)).