perl-Quantum-Superpositions-2.03-bp155.2.8 >  A dd:I%z r60q R2wk|$ Kl^ 8J`ִ[h?`f6 LgNڀuv1҈&SWc+Sr~,5jVxPx5+ܷkOEckv.g D`EG#[Y 4[sp,ߝzlĝi61-J"˱ZKq~Pw7-ƲHc(|YHԅPy&;wjHZ'C&`=HĬպp>ŇlőI3 AYO|EML ]HFyP5+~Ձ:m.{0lդ$nfQNf91504b9f79867eff62825b298628c4706ba18d3a773ab051d6cf1961a70fe82b5f59538d75a11133f013450b37e0c3541a90ebachdd:I%z MF >BD8֛!a6!E% %S5 #R1/`;.tWǑNm@8_ti\O.,emI{h'uItDɑJK}yZHWldj;%mD +2BѐbGsB:6cs{20ݪK;iPedZc=_ @uG&E'?( 9rVdܤzWTz/)//^A2>F逜`}֋&ނ}L20Up]3&};90MZ)ѷo/y$Fc6fѪlXѤ^\PrLnjEڸ֭`~7n*w6`GԮ ۪eEQA|O %jS5|j֪-C!L!t3++\Oj\#]2/x>p>?d# - L        - H |           (@(8 9 : FCGXHpIXY\]^Kbcd"e'f*l,u@vXwxyz$48>Cperl-Quantum-Superpositions2.03bp155.2.8QM-like superpositions in PerlThe Quantum::Superpositions module adds two new operators to Perl: 'any' and 'all'. Each of these operators takes a list of values (states) and superimposes them into a single scalar value (a superposition), which can then be stored in a standard scalar variable. The 'any' and 'all' operators produce two distinct kinds of superposition. The 'any' operator produces a disjunctive superposition, which may (notionally) be in any one of its states at any time, according to the needs of the algorithm that uses it. In contrast, the 'all' operator creates a conjunctive superposition, which is always in every one of its states simultaneously. Superpositions are scalar values and hence can participate in arithmetic and logical operations just like any other type of scalar. However, when an operation is applied to a superposition, it is applied (notionally) in parallel to each of the states in that superposition. For example, if a superposition of states 1, 2, and 3 is multiplied by 2: $result = any(1,2,3) * 2; the result is a superposition of states 2, 4, and 6. If that result is then compared with the value 4: if ($result == 4) { print "fore!" } then the comparison also returns a superposition: one that is both true and false (since the equality is true for one of the states of '$result' and false for the other two). Of course, a value that is both true and false is of no use in an 'if' statement, so some mechanism is needed to decide which superimposed boolean state should take precedence. This mechanism is provided by the two types of superposition available. A disjunctive superposition is true if any of its states is true, whereas a conjunctive superposition is true only if all of its states are true. Thus the previous example does print "fore!", since the 'if' condition is equivalent to: if (any(2,4,6) == 4)... It suffices that any one of 2, 4, or 6 is equal to 4, so the condition is true and the 'if' block executes. On the other hand, had the control statement been: if (all(2,4,6) == 4)... the condition would fail, since it is not true that all of 2, 4, and 6 are equal to 4. Operations are also possible between two superpositions: if (all(1,2,3)*any(5,6) < 21) { print "no alcohol"; } if (all(1,2,3)*any(5,6) < 18) { print "no entry"; } if (any(1,2,3)*all(5,6) < 18) { print "under-age" } In this example, the string "no alcohol" is printed because the superposition produced by the multiplication is the Cartesian product of the respective states of the two operands: 'all(5,6,10,12,15,18)'. Since all of these resultant states are less that 21, the condition is true. In contrast, the string "no entry" is not printed, because not all the product's states are less than 18. Note that the type of the first operand determines the type of the result of an operation. Hence the third string -- "underage" -- is printed, because multiplying a disjunctive superposition by a conjunctive superposition produces a result that is disjunctive: 'any(5,6,10,12,15,18)'. The condition of the 'if' statement asks whether any of these values is less than 18, which is true.dd2lamb67SUSE Linux Enterprise 15 SP5openSUSEArtistic-1.0https://bugs.opensuse.orgDevelopment/Libraries/Perlhttp://search.cpan.org/dist/Quantum-Superpositions/linuxnoarch|A$AA큤$dd2[Btdd2dd2[Btdd2a251139344e133b1639f6bc7d051d1e9f36e276cbecb83525a492d92ee1c2e2cc08e4519cf2cf6eac0cf5f1e5b6933fb55acc536ca43a7b1252a9d7c17d7737d217ce16cc29b3e52ebf48057755e87ebbf1a68e376c0e5b8f20414b337b1c6fcrootrootrootrootrootrootrootrootrootrootrootrootperl-Quantum-Superpositions-2.03-bp155.2.8.src.rpmperl(Quantum::Superpositions)perl(Quantum::Superpositions::Conj)perl(Quantum::Superpositions::Conj::True)perl(Quantum::Superpositions::Disj)perl-Quantum-Superpositions    perl(:MODULE_COMPAT_5.26.1)perl(Class::Multimethods)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.3[CN@NHL8LKI@Ch@@:?F?@?coolo@suse.comcoolo@suse.comcoolo@novell.comcoolo@novell.comjengelh@medozas.demls@suse.deadrian@suse.demjancar@suse.czmjancar@suse.czmjancar@suse.cz- updated to 2.03 see /usr/share/doc/packages/perl-Quantum-Superpositions/Changes 2.0.2 Sun Jul 8 15:28:31 CDT 2018 - POD, thanks for Florian Schlichting- use original tar.gz- switch to perl_requires macro- remove /var/adm/perl-modules- enable parallel build- converted neededforbuild to BuildRequires- build as user- require the perl version we build with- update to 2.02- adapt to perl-5.8.1 - use %perl_process_packlistlamb67 16843323382.032.03-bp155.2.8QuantumSuperpositions.pmx86_64-linux-thread-multiperl-Quantum-SuperpositionsChangesQuantum::Superpositions.3pm.gz/usr/lib/perl5/vendor_perl/5.26.1//usr/lib/perl5/vendor_perl/5.26.1/Quantum//usr/share/doc/packages//usr/share/doc/packages/perl-Quantum-Superpositions//usr/share/man/man3/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.opensuse.org/openSUSE:Backports:SLE-15-SP5/standard/cb365357d3f2ee62fd1ea7f48c108e78-perl-Quantum-Superpositionscpioxz5noarch-suse-linuxdirectoryPerl5 module source textASCII texttroff or preprocessor input, ASCII text (gzip compressed data, max compression, from Unix)PPPPteӵO0?I!utf-86ed0b345991d0cc67c59c28d9d9622e76840b653b0c6e6c42ad86c57e88653df? 7zXZ !t/wG] crt:bLL S?O<2FfY,m,BZgDg°}j Ǫ?JZN؟2}7 ׮pQ[,;FL=.@]WmtWvmsUbZw'C?gK:I%(qkZ8h~2)ٚ(1"q Sj o7myRQX+tLrjD΅g/H 8SIJ obG+x)'Po%L'957FjG{}-LGLGsއs2=Od(x@;\OAUU]=µ2\AyuAW;b,Ks>5X`B1OZz X!=5Nmiu4Hˈ"Z:k~#P*]g`ҧ. Ic&AMeamH0|h1w?!>4#@JMZ2C$c~U 6ǹֶ1NXWoWzR"WwVoO>?@2mczlAZatޒO4啫rW".B 䎬TمG3F. 5 o(WZ "h^ EPP.(s6vo\c*[uGVjiԌÂ:9 Or{õ 73avMql |0d !~>Ԟ~%tb ]=9bu H'u=~R]Rv8t),Q505#Qx5xȩ/v'cԈ<>g$g9UйM@l %]edWI~gGX=F|聝r js=D UጮZ/pÂH#1q\ЖL Aӳs)u5bZ^x B2wsbUzNcNJT5A* \{::3)dtOؠŹ tdJ_-}5pWj؞9nο_*=xv7X!5CI<8Rz5S%EPȓM(5Z`5HNBCqmyl-h"GsVW7 ,$éuJqWEh_Q.LBO =LQ d!00g $4c{'D8LIs)g˙D (ENGԥ՝c+Ys"#N{T 3R|)z 4u/O %%ڽ7PWw~@SXI >f:-Z /f݀(C}܃y^r@jdSZʛlBu+$5h\{6ȡňkFVlz9Nb`0]H̎@2p&kdbn_SxƇDf# UAXIqQ3Y:帢ix)R'K8=dyr kZ$2J\h!s"F!bSٵf 9c-ut789 ҷ&ʫЀՓ9)3Ci?Q Ƶ`vim!H#@ESٙ%&yW{ă#ʉ{rčA#3-F;LR@?o"p3W54PO^)q> 6zL\=Sߨr'.jUV*xyfŖ6z.#"Z!KO}|f-RʙfTSHtGsX)Ac6sU2G( ~pJSʞog#,aS\'9~Խ^߷^O5oVuLL@4۱+LVѕ+; ^p6ox}dwkP{pEؠ$˗C{'re = K%ψӕ9o8b6vnYätR r亂9љA`Rke}J+|"96Į$ 8S۞qu!+PYB(/T2-cbxhApC: [n;+-D3<${U_RN<յM,AuWV*p,qS/>cxuV%hX9T}z;t)1ٜ&Q`#Bvy]b.tZ/2Kaab+}M4ou6'6ַXn}. x5d;\ߩT6oJdX p[RZcG(ˍMWMG/}< _7F 4.P|6g ?8Щז D&`mjK&jW0t|`꡴%km$`ڟYuIc1|^b4igQK`RҜr qDs-_e_ύ[ǘeNi^GZ-r0_jγi2Jjic L`Pqp?2ktD!1Uhy /\F\gm\CB8P#t'!-!.Xdڶ܍9,)qM`BMN7NGC^BBVSy碣Vg퓲;c5*@p?Hkܙe!8v[;&lI+q/I(, 5#x{F)VVIƎ;PZ=U  S~jSP%^QifLa4*= ,ܓ%h,1G(΋\XTO4I7$qQ|Ѱ-lZ]lzl8ޔذEamYk[bXɟ|E1_ʺUY2(} O'+g٧fr[u^a5kRMDފ6/S ~$N:ob(_{|Dj?h3jWGzZ lu@VM>и^tS'-qJ/Py^d- I^ෝ*Zz2=l-`m̸Q5f2B{,P'ˍl^֑3i{Ryģ&4 Ry2+^<C[@bDK=\ RLf:ONPxwV ZEᏈYNez4YXS!;r-P ;zoBZ: M4%&3Ieq`{Os6VzdۿlJ0%3P4Ǯcآ'Bݮj~X"o5Cm1Oգ z1'.m3[wg0 CXܬ )X5Bk~Pa$:%+i`s vw?l{ "L݄zrJlG=;Y;OʇbI?waVQ80Wu^fg߾O:`I"4MkO 7ۖךӫ~y Aڕr\WՅÍF 29 椇1~"x; *1/+|tP$3-] zw,CC*t/Xt\T'a\&bݧϑ'2 k'orPop<PDJxHmmQc,D^?ΑdK_Apb@ ' NrC(aCR"ӣ{ly:$M*dZ@:0DQk.D5̛QB < MV5-dlqzioc ^H0'D6ʹaH:\y7-/GŽ7쿓rdspEH̼sU5˷ Vz“u`nT9R|lr !Q+oi` $-z7蠏Si%_&s/66CQz Qye2PIʤQ]yJf.̃?JAk,&EqNG4m%锪U۶$V\2O\υAS{C)3oC3 m^.i\{ !Yx_Jx5Ď5Z + b)VY\55EsY`?E7&4ˑɣK"OdXBSl7]$$zI-"Ն(p(psE>;-0Nb#paߟf|3爎wN ى֌!4i&uF /ɮ䯅j(U :ܷGBmJ+,="/z2G Ҙ-BWZgmkXp!U[0<ɞʶQ߷e:(AOvz 寁.0حη'>6Œ5KK\7O#WQF~)c#;+ ~W8c9e`vyLkNi5Kj2QON9 0UGZaݫ)UL A^Rx-`yCX4ϟY揁ڀ MՅWONP$׭Rj Wř(cYWl?5 pep^)_B;kG<*=b,‡U(H@>/g?vb Vb˛xr=' 6@z"_LT՞@{v#Z$gϒ'~; ; z}].ԑ_&lFv }H?0ץU=rg Bm,۳ L5(EIe$$gq*.=jn/ޯ[md4QGdd#?`ȝwD;D3t7#ue'I%q C￸)JK>%wo Ăw9ap4 j@&8d)X3?g<cˎy G苴weۭ} <GlrE@ c'/\d}#P?w$XIp} vȽxzC|: 13ZSj>m l \8NIU{I `Bū*5!@' m|EЩvE Mf#>U5g'9>7&(Sakx<7"LXвIDcfV*;p u>A'~S05(^?^{B|T PïKȋ#rƇq d}$S:tQjiM"P3`6tӮ@$"InvV|c GX,U{Eeua-,}qj4b3Wk9+=| .I_ϖ}Bjq1hJa3%M7`9M#9?WUm"BdFׂ=w灠{ȦXC{p.gVGa-0ltwp( } !ax$QjmaY3j׶lۅYc- >CaXfQeM(91ȥG.{\=;GlxYIGM-\%^"F n\Dh@+ 'MQYYH;s]V<D[SS5C1-3ݩ+~d$H2"LП⼋@ٕ iBgݴ S)Ml):e̼aęilN - Cj^ѠɃSחx]v{?vF~8ڰ !>opKon;m3wf|[7JPC", ~.$c`-{2f.kR+'B1/(HV|qpk`I$D;+[b*&ϻaEFXp-yN#h}˃oܯ] Z[,xp^ G Zp5ԬWm0뿨5HRgu\C@0K6*4U- f%ԷWǡ޲?. Ut^x"q|s/ Ll]7%˚~ݷt vfM4^C rn7!qFLpS=oCRqa|Z**| ƑeT#.h%P#AW]gu042/8MsƅyDrTVf9(C4;lVF R4x<;eDCԂYK:X"?*djY#dݒp͈g㒌A,M1>&Sœ>[T1q!qR,44~Q.QcR_T2e|,=k#G̤h|@+z{E#)K5mB8?,m_MTF ACj/5 6W/!UU'XTZ#ȕ hlRa|^θ7y xIjjs_A>?쪝#|~ğq}-/QZ3uQuq7,=ʱ8w! 2W;HP˜wM3hw^m"L]q;u-.F8@DzZѦònp /晹Hdغ(NIynRʜzpz45I_l摷ۉ+[l 0e _=`=kIj=x~˜\ DG!D9xMTx-,xluTMu ȗB(%y oT0X&] =q0M^u@w7EHQ:Kο;AɗOa)QQue7x,w[q[k MA>Yrg|_T^@p-L cX,/H*HdWmJ_&? ĖS{K&ҿ_ XGx~ȈC9&l^a?vfӥ^! w0ɗeƖW9L>U !Y&jK.T 5ю?R;'֥L„wtxUJ \*LCkzJ۸ڶB 5ொ-o9ȵ# HyMCU b\ek^% =nR7{zwR[Bdj)9Ho0*,>K"Y3$$98xr>xwHxäBj[P ˭%~TfA=/ ^$W+Z6 N%k MQ5{N|Y~ݱEQN+h=rvvkSլG>גZ0zֻ|cAOz4 @4ш"2ه# DMJx[&ܚD8!bxްsp#ye$R-̨s!L6`,Up:A[kc':]R?,a}eO)[/[bOgVb&Osxz'ais˾n ١ORVP{Yf/Y+e!a^κsR|qZJXOZgK/"&/ yde6,v.b[͌,iVw6 e?V:eRSCjvK.'1V+DQ8foo_:pV^gdT̆ o48h"K@_t6E^"Dx%5+<ڰ lݩrcaV) AacLJ:q_Hl˫{#T1 S9sms, v[q_4̅90rЍV4䄟sGY3j9Z5WMdݗx-bֶbr3ݭQyONV-03GTq5`"F)jպ &o&)ڜ?f]3r\np+Oտ7j8^tXF& X781ƠjQ48wsfezLs|%Eʟv (2dǾdx"-+\z ^S5d%aJIchȦsCIXFW/fۖy ^}\GOL`zt76QPڷ#ɜx T  BHwvk6gEHj+o?߁n ejB2˟H/Dz:'Q-ǜk d0|O8 W?%d`3E VXU \/ 7-{D{ǣ林Rch?bbBgo"1ZD!X|ϋy0/^x\xtKDX;jV.@a(Etɡp'2Z1 m*q[\G5*PZZ XY;EtA앲p/bp$"=cϒ"\ { af;> & KתOSMzy،{tHE\2 Q#Q#Y:?sHy >pXVL͜xQMaIL!#Qv_G註ܴyMO=q+ayi sa[]9TqʊrA]l@RYX<oh68#2É"M81SZq|1J$į[7 Z3Ӣ,bl.y.ˡg);YЋNPWE̺DAGC!|U&B1T;{1 ) M]܁pb?hLcXCA5lkuXF (@#̏ \btj# Zsu+[JXJ.y"xmK⩩7JKSRnȁ4o6 oyuؐ[3,Tkyg'>oh@:-a_t%CoxQH!nuTSCzH}* ~7'3m]ˋۣ6X!BeR5p LQ* 42~aMNCcD8 ~,)څh]bnUÔ>$ǵ;D#L0iV`B̽Y~F'6a]F*+}1mb=׃P=cra[×lWŘ9Yq9k= wilahhF}._,gQjoaP\^ӊHw4yNŧMbaX17[ j.tծ*=oI3@f2rF爌 MP uq笷`-jmtۯev EeBܕ &jՐ /ߊn0\>҂,kX@m NjmZYP;Fzz!nS# g#i_PvjHr3y )L2O=ĬK~|si<&1{]4DAm8O=$bCH8/L0֩,D+ҚTS`[J׹ pIR:s3jE뛄Ӻ@s\34m˫(]"ԙs7Z,;KY+Tf3JݡK,|?GweWpUF}puM٭AʹJ0PUIh5j2I,NbQlͤmKGxwB|t(m(/qٰ\`2BK36N߲Sd`@5n{M)BEE\ ]Dat7a5qmBNޓzW@D}~Ihkx,J$(?xllb1JDi.=Ewi4}afӨfEvL@׾|e퇡ҀnRף2GVqMZBP2Ļyxy`k NE#"+R'1LƀdZƆ a";eDh7J\%PwnE8%7rq|fOtL4~ fԍab /o([Kܖ({*OUPWǨK!GA``]#-qg@|ӔෳMo5k~?c$~0h|<@;-''f4XpAbeb-\j8_FKk>Pq|ݺ }wL4]2U~:4mawX;ݦcւ[`` ~/Mn߀HNk[B#(MER0G4ovcJ6w2'v4@GMcg.l[@Xb_ F-/?GoqLM*Q7$-nVI65GARa|ӅUi, |1@X0?Z*9: $HyDFRrQU=9]§z-'qw)lXV?5_:~-'ah+*E3w@Evh@9$D#ş 8}r%%Pޕ(֓֗>ʲ'ҳ)v/bBo,rs Ī;dpx%"z{{{i񡇩wYl{<KY3xl{+~gV]`Yrkod^NP$v šk"H$۱^e{PMh-˝i) QOcxB.D]e紏&V{>_[zyEp&l~Y읿J+iJ4sNƕW=i;ҩ+"2TM\ryx0].E ȥOA3Y%qI$")=̄ {-+.5+,*L Ha_.Wu0D++j0<|`#_~y+]߁aEZ6AN7D:˨]>NIbs7MA)|rT49$ETa)JZ,%~r_6¡ٲro޲ڂlf2qJL3=NF6Eo_`+NL4Gnj#ݽub.^+= lNkQdtAڳ(+/I-FݘѳL0Ό6MG騼RX*ITAAzܼJ A*t)A5_!wZE95r,y?׈4UITĊYx_~^W1BrGKA&)prxoM۹BnPQ.ǔ ٰ }1