openSUSE:Backports:SLE-15-SP4 Backports for SLE-15-SP4 Backports for SLE-15-SP4 https://download.opensuse.org/repositories/openSUSE:/Backports:/SLE-15-SP4/standard/ openSUSE:Backports:SLE-15-SP4:Checks Checks for Backports for SLE-15-SP4 Checks for Backports for SLE-15-SP4 https://download.opensuse.org/repositories/openSUSE:/Backports:/SLE-15-SP4:/Checks/standard/ SUSE:SLE-15-SP4:GA https://download.opensuse.org/repositories/SUSE:/SLE-15-SP4:/GA/pool/ SUSE:SLE-15-SP3:Update SLE 15 SP3 SLE 15 SP3 https://download.opensuse.org/distribution/leap/15.4/repo/oss/ SUSE:SLE-15-SP3:GA https://download.opensuse.org/repositories/SUSE:/SLE-15-SP3:/GA/pool/ SUSE:SLE-15-SP2:Update SLE 15 SP2 SLE 15 SP2 https://download.opensuse.org/distribution/leap/15.4/repo/oss/ SUSE:SLE-15-SP2:GA SLE 15 SP2 SLE 15 SP2 https://download.opensuse.org/repositories/SUSE:/SLE-15-SP2:/GA/pool/ SUSE:SLE-15-SP1:Update SLE 15 SP1 SLE 15 SP1 https://download.opensuse.org/distribution/leap/15.4/repo/oss/ SUSE:SLE-15-SP1:GA SLE 15 SP1 SLE 15 SP1 https://download.opensuse.org/repositories/SUSE:/SLE-15-SP1:/GA/pool/ SUSE:SLE-15:Update SLE 15 SLE 15 https://download.opensuse.org/distribution/leap/15.4/repo/oss/ SUSE:SLE-15:GA SLE 15 SLE 15 https://download.opensuse.org/repositories/SUSE:/SLE-15:/GA/pool/ perl-Quantum-Superpositions QM-like superpositions in Perl The 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.