package Math::ModInt::GF2; use 5.006; use strict; use warnings; # ----- object definition ----- # Math::ModInt::GF2=ARRAY(...) # .......... index .......... # .......... value .......... use constant F_RESIDUE => 0; # residue r, either 0 or 1 use constant NFIELDS => 1; # ----- class data ----- BEGIN { require Math::ModInt; our @ISA = qw(Math::ModInt); our $VERSION = '0.013'; } my @base = map { bless [$_] } 0..1; # singletons # ----- private methods ----- sub _NEG { $_[0] } sub _ADD { my ($this, $that) = @_; return $base[$this->[F_RESIDUE] ^ $that->[F_RESIDUE]]; } sub _SUB { my ($this, $that) = @_; return $base[$this->[F_RESIDUE] ^ $that->[F_RESIDUE]]; } sub _MUL { my ($this, $that) = @_; return $base[$this->[F_RESIDUE] & $that->[F_RESIDUE]]; } sub _DIV { my ($this, $that) = @_; return $that->[F_RESIDUE]? $this: Math::ModInt->undefined; } sub _POW { my ($this, $exp) = @_; return $this->[F_RESIDUE] || $exp > 0? $this: $exp? $this->undefined: $base[1]; } sub _INV { my ($this) = @_; return $this->[F_RESIDUE]? $this: Math::ModInt->undefined; } sub _NEW { my ($this, $int) = @_; return $base[$int & 1]; } sub _NEW2 { my ($this, $int) = @_; if ($int < 0) { # no arithmetic shift operation for negative perl integers, alas my $residue = $int & 1; return (($int - $residue) / 2, $base[$residue]); } return ($int >> 1, $base[$int & 1]); } sub residue { my ($this) = @_; return $this->[F_RESIDUE]; } sub signed_residue { my ($this) = @_; return - $this->[F_RESIDUE]; } sub centered_residue { my ($this) = @_; return $this->[F_RESIDUE]; } sub modulus { return 2; } 1; __END__ =head1 NAME Math::ModInt::GF2 - integer arithmetic modulo 2 =head1 VERSION This documentation refers to version 0.013 of Math::ModInt::GF2. =head1 SYNOPSIS use Math::ModInt; $a = Math::ModInt->new(1, 2); # 1 [mod 2] $b = $a->new(0); # 0 [mod 2] $c = $a + $b; # 1 [mod 2] $d = $a**2 - $b/$a; # 1 [mod 2] print $d->residue, " [mod ", $b->modulus, "]"; # prints 1 [mod 2] print "$d"; # prints mod(1, 2) $bool = $c == $d; # true =head1 DESCRIPTION Math::ModInt::GF2 is an implementation of Math::ModInt for modulus two. Like all Math::ModInt implementations, it is loaded behind the scenes when there is demand for it, without applications needing to worry about it. Implementations for special cases like this can take advantage of properties specific to their subdomain and be therefore substantially more efficient than generic ones. =head1 SEE ALSO =over 4 =item * L =back =head1 AUTHOR Martin Becker, Ebecker-cpan-mp I cozap.comE =head1 LICENSE AND COPYRIGHT Copyright (c) 2009-2021 Martin Becker, Blaubeuren. This library is free software; you can distribute it and/or modify it under the terms of the Artistic License 2.0 (see LICENSE file). =head1 DISCLAIMER OF WARRANTY This library is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose. =cut