2008-02-26 14:55:23 +01:00
|
|
|
/*
|
|
|
|
LA: linear algebra C++ interface library
|
2023-12-28 23:48:05 +01:00
|
|
|
Copyright (C) 2008-2023 Jiri Pittner <jiri.pittner@jh-inst.cas.cz> or <jiri@pittnerovi.com>
|
2008-02-26 14:55:23 +01:00
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program 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. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2006-03-30 21:16:40 +02:00
|
|
|
#include "bitvector.h"
|
2021-04-21 15:04:37 +02:00
|
|
|
#include <unistd.h>
|
2024-01-01 10:58:30 +01:00
|
|
|
#include "numbers.h"
|
2006-03-30 21:16:40 +02:00
|
|
|
|
2009-11-12 22:01:19 +01:00
|
|
|
namespace LA {
|
|
|
|
|
2006-03-30 21:16:40 +02:00
|
|
|
//inefficient I/O operators
|
2009-11-12 22:01:19 +01:00
|
|
|
std::ostream & operator<<(std::ostream &s, const bitvector &x)
|
2006-03-30 21:16:40 +02:00
|
|
|
{
|
|
|
|
for(unsigned int i=0; i<x.size(); ++i) s<< x[i];
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2009-11-12 22:01:19 +01:00
|
|
|
std::istream & operator>>(std::istream &s, bitvector &x)
|
2006-03-30 21:16:40 +02:00
|
|
|
{
|
2019-11-13 23:22:25 +01:00
|
|
|
std::string str;
|
|
|
|
s >> str;
|
|
|
|
x.resize(str.size());
|
|
|
|
for(unsigned int i=0; i<x.size(); ++i) {x.assign(i,str[i]!='0');}
|
2006-03-30 21:16:40 +02:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2024-01-01 21:26:35 +01:00
|
|
|
void bitvector::zero_padding() const
|
|
|
|
{
|
|
|
|
if(!modulo) return;
|
|
|
|
bitvector *p = const_cast<bitvector *>(this);
|
|
|
|
p->v[nn-1] &= (1ULL<<modulo)-1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bitvector& bitvector::operator++()
|
|
|
|
{
|
|
|
|
copyonwrite();
|
|
|
|
zero_padding();
|
|
|
|
int i=0;
|
|
|
|
while(i<nn) if(++v[i++]) break;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bitvector& bitvector::operator--()
|
|
|
|
{
|
|
|
|
copyonwrite();
|
|
|
|
zero_padding();
|
|
|
|
int i=0;
|
|
|
|
while(i<nn) if(v[i++]--) break;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2006-03-31 21:01:14 +02:00
|
|
|
//implemented so that vectors of different length are considered different automatically
|
|
|
|
bool bitvector::operator!=(const bitvector &rhs) const
|
|
|
|
{
|
2024-01-01 21:26:35 +01:00
|
|
|
if(nn==rhs.nn && modulo==rhs.modulo && v==rhs.v) return false;
|
|
|
|
zero_padding();
|
|
|
|
rhs.zero_padding();
|
|
|
|
int minnn=nn; if(rhs.nn<minnn) minnn=rhs.nn;
|
|
|
|
int maxnn=nn; if(rhs.nn>maxnn) maxnn=rhs.nn;
|
|
|
|
if(memcmp(v,rhs.v,minnn*sizeof(bitvector_block))) return true;
|
|
|
|
if(minnn==maxnn) return false;
|
|
|
|
if(nn==minnn) {for(int i=minnn; i<maxnn; ++i) if(rhs.v[i]) return true;}
|
|
|
|
if(rhs.nn==minnn){for(int i=minnn; i<maxnn; ++i) if(v[i]) return true;}
|
|
|
|
return false;
|
2006-03-31 21:01:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool bitvector::operator>(const bitvector &rhs) const
|
|
|
|
{
|
|
|
|
if(nn!=rhs.nn || modulo!=rhs.modulo) laerror("at the moment only bitvectors of the same length comparable");
|
|
|
|
if(v==rhs.v) return 0;
|
|
|
|
if(!modulo) return memcmp(v,rhs.v,nn*sizeof(bitvector_block)>0);
|
|
|
|
int r;
|
|
|
|
if((r=memcmp(v,rhs.v,(nn-1)*sizeof(bitvector_block)))) return r>0;
|
|
|
|
bitvector_block a=v[nn-1];
|
|
|
|
bitvector_block b=rhs.v[nn-1];
|
|
|
|
//zero out the irrelevant bits
|
|
|
|
bitvector_block mask= ~((bitvector_block)0);
|
|
|
|
mask <<=modulo;
|
|
|
|
mask = ~mask;
|
|
|
|
a&=mask; b&=mask;
|
|
|
|
return a>b;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool bitvector::operator<(const bitvector &rhs) const
|
|
|
|
{
|
|
|
|
if(nn!=rhs.nn || modulo!=rhs.modulo) laerror("at the moment only bitvectors of the same length comparable");
|
|
|
|
if(v==rhs.v) return 0;
|
|
|
|
if(!modulo) return memcmp(v,rhs.v,nn*sizeof(bitvector_block)<0);
|
|
|
|
int r;
|
|
|
|
if((r=memcmp(v,rhs.v,(nn-1)*sizeof(bitvector_block)))) return r<0;
|
|
|
|
bitvector_block a=v[nn-1];
|
|
|
|
bitvector_block b=rhs.v[nn-1];
|
|
|
|
//zero out the irrelevant bits
|
|
|
|
bitvector_block mask= ~((bitvector_block)0);
|
|
|
|
mask <<=modulo;
|
|
|
|
mask = ~mask;
|
|
|
|
a&=mask; b&=mask;
|
|
|
|
return a<b;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bitvector bitvector::operator~() const
|
|
|
|
{
|
|
|
|
bitvector r((*this).size());
|
|
|
|
for(int i=0; i<nn; ++i) r.v[i] = ~v[i];
|
2024-01-01 21:26:35 +01:00
|
|
|
r.zero_padding();
|
2006-03-31 21:01:14 +02:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
bitvector& bitvector::operator&=(const bitvector &rhs)
|
|
|
|
{
|
2023-12-27 23:24:13 +01:00
|
|
|
if(size()<rhs.size()) resize(rhs.size(),true);
|
2006-03-31 21:01:14 +02:00
|
|
|
copyonwrite();
|
2023-12-28 17:06:07 +01:00
|
|
|
for(int i=0; i<nn; ++i) v[i] &= (i>=rhs.nn? 0 : rhs.v[i]);
|
2006-03-31 21:01:14 +02:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
bitvector& bitvector::operator|=(const bitvector &rhs)
|
|
|
|
{
|
2023-12-27 23:24:13 +01:00
|
|
|
if(size()<rhs.size()) resize(rhs.size(),true);
|
2006-03-31 21:01:14 +02:00
|
|
|
copyonwrite();
|
2023-12-28 17:06:07 +01:00
|
|
|
for(int i=0; i<nn && i<rhs.nn; ++i) v[i] |= rhs.v[i];
|
2006-03-31 21:01:14 +02:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
bitvector& bitvector::operator^=(const bitvector &rhs)
|
|
|
|
{
|
2023-12-27 23:24:13 +01:00
|
|
|
if(size()<rhs.size()) resize(rhs.size(),true);
|
2006-03-31 21:01:14 +02:00
|
|
|
copyonwrite();
|
2023-12-28 17:06:07 +01:00
|
|
|
for(int i=0; i<nn && i<rhs.nn; ++i) v[i] ^= rhs.v[i];
|
2006-03-31 21:01:14 +02:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*number of ones in a binary number, from "Hacker's delight" book*/
|
|
|
|
#ifdef LONG_IS_32
|
2013-11-04 15:56:39 +01:00
|
|
|
static unsigned int word_popul(unsigned long x)
|
2006-03-31 21:01:14 +02:00
|
|
|
{
|
|
|
|
x -= ((x>>1)&0x55555555);
|
|
|
|
x = (x&0x33333333) + ((x>>2)&0x33333333);
|
|
|
|
x=(x + (x>>4))&0x0f0f0f0f;
|
|
|
|
x+= (x>>8);
|
|
|
|
x+= (x>>16);
|
|
|
|
return x&0x3f;
|
|
|
|
}
|
2007-06-26 11:57:15 +02:00
|
|
|
#else
|
2023-12-28 17:06:07 +01:00
|
|
|
//@@@@ use an efficient trick too
|
2013-11-04 15:56:39 +01:00
|
|
|
static unsigned int word_popul(unsigned long x)
|
2007-06-26 11:57:15 +02:00
|
|
|
{
|
2013-11-04 15:56:39 +01:00
|
|
|
unsigned int s=0;
|
2007-06-26 11:57:15 +02:00
|
|
|
for(int i=0; i<64; ++i)
|
|
|
|
{
|
|
|
|
if(x&1) ++s;
|
|
|
|
x>>=1;
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2006-03-31 21:01:14 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2023-12-27 23:24:13 +01:00
|
|
|
bitvector& bitvector::operator>>=(unsigned int i)
|
|
|
|
{
|
|
|
|
if(i==0) return *this;
|
|
|
|
copyonwrite();
|
|
|
|
unsigned int imod = i%blockbits;
|
|
|
|
unsigned int ishift = i/blockbits;
|
|
|
|
for(int dest=0; dest<nn; ++dest)
|
|
|
|
{
|
|
|
|
int src=dest+ishift;
|
|
|
|
if(src>=nn) v[dest]=0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
v[dest] = v[src]>>imod;
|
|
|
|
if(imod && (src+1<nn)) v[dest] |= (v[src+1]&((1ULL<<imod)-1)) <<(blockbits-imod);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
bitvector& bitvector::leftshift(unsigned int i, bool autoresize)
|
|
|
|
{
|
|
|
|
if(i==0) return *this;
|
|
|
|
copyonwrite();
|
|
|
|
unsigned int imod = i%blockbits;
|
|
|
|
unsigned int ishift = i/blockbits;
|
|
|
|
if(autoresize) resize(size()+i,true);
|
|
|
|
for(int dest=nn-1; dest>=0; --dest)
|
|
|
|
{
|
|
|
|
int src=dest-ishift;
|
|
|
|
if(src<0) v[dest]=0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
v[dest] = v[src]<<imod;
|
|
|
|
if(imod && (src-1>=0)) v[dest] |= (v[src-1]& (((1ULL<<imod)-1) <<(blockbits-imod)))>>(blockbits-imod);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void bitvector::randomize()
|
|
|
|
{
|
|
|
|
copyonwrite();
|
|
|
|
for(int i=0; i<nn; ++i) v[i]=RANDINT64();
|
2024-01-01 21:26:35 +01:00
|
|
|
zero_padding();
|
2023-12-27 23:24:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2006-03-31 21:01:14 +02:00
|
|
|
unsigned int bitvector::population(const unsigned int before) const
|
|
|
|
{
|
2021-09-24 16:12:07 +02:00
|
|
|
if(before) laerror("before parameter in population() not implemented yet");
|
2006-03-31 21:01:14 +02:00
|
|
|
int i;
|
|
|
|
unsigned int s=0;
|
|
|
|
for(i=0; i<nn-1; ++i) s+=word_popul(v[i]);
|
|
|
|
bitvector_block a=v[nn-1];
|
|
|
|
if(modulo)
|
|
|
|
{
|
|
|
|
bitvector_block mask= ~((bitvector_block)0);
|
|
|
|
mask <<=modulo;
|
|
|
|
a &= ~mask;
|
|
|
|
}
|
|
|
|
return s+word_popul(a);
|
|
|
|
}
|
|
|
|
|
2023-12-28 17:06:07 +01:00
|
|
|
unsigned int bitvector::bitdiff(const bitvector &y) const
|
2013-11-04 15:56:39 +01:00
|
|
|
{
|
|
|
|
if(nn!=y.nn) laerror("incompatible size in bitdifference");
|
|
|
|
|
|
|
|
unsigned int s=0;
|
|
|
|
for(int i=0; i<nn-1; ++i) s+=word_popul(v[i]^y.v[i]);
|
|
|
|
bitvector_block a=v[nn-1]^y.v[nn-1];
|
|
|
|
if(modulo)
|
|
|
|
{
|
|
|
|
bitvector_block mask= ~((bitvector_block)0);
|
|
|
|
mask <<=modulo;
|
|
|
|
a &= ~mask;
|
|
|
|
}
|
|
|
|
return s+word_popul(a);
|
2023-12-28 17:06:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned int nlz64(uint64_t x0)
|
|
|
|
{
|
|
|
|
int64_t x=x0;
|
|
|
|
uint64_t y;
|
|
|
|
unsigned int n;
|
|
|
|
n=0;
|
|
|
|
y=x;
|
|
|
|
L: if ( x<0) return n;
|
|
|
|
if(y==0) return 64-n;
|
|
|
|
++n;
|
|
|
|
x<<=1;
|
|
|
|
y>>=1;
|
|
|
|
goto L;
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned int ntz64(uint64_t x)
|
|
|
|
{
|
|
|
|
unsigned int n;
|
|
|
|
if(x==0) return 64;
|
|
|
|
n=1;
|
|
|
|
if((x&0xffffffff)==0) {n+=32; x>>=32;}
|
|
|
|
if((x&0xffff)==0) {n+=16; x>>=16;}
|
|
|
|
if((x&0xff)==0) {n+=8; x>>=8;}
|
|
|
|
if((x&0xf)==0) {n+=4; x>>=4;}
|
|
|
|
if((x&0x3)==0) {n+=2; x>>=2;}
|
|
|
|
return n-(x&1);
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int bitvector::nlz() const
|
|
|
|
{
|
|
|
|
int leadblock=nn-1;
|
|
|
|
unsigned int n=0;
|
|
|
|
while(leadblock>0 && v[leadblock] == 0)
|
|
|
|
{
|
|
|
|
--leadblock;
|
|
|
|
n+=blockbits;
|
|
|
|
}
|
|
|
|
n+= nlz64(v[leadblock]);
|
|
|
|
if(modulo) n-= blockbits-modulo;
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int bitvector::ntz() const
|
|
|
|
{
|
|
|
|
int tailblock=0;
|
|
|
|
unsigned int n=0;
|
|
|
|
if(iszero()) return size();
|
|
|
|
while(tailblock<nn-1 && v[tailblock] == 0)
|
|
|
|
{
|
|
|
|
++tailblock;
|
|
|
|
n+=blockbits;
|
|
|
|
}
|
|
|
|
n+= ntz64(v[tailblock]);
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
//NOTE: naive algorithm, just for testing
|
|
|
|
//does not perform modulo irreducible polynomial, is NOT GF(2^n) multiplication
|
2023-12-31 19:48:07 +01:00
|
|
|
bitvector bitvector::multiply(const bitvector &rhs, bool autoresize) const
|
2023-12-28 17:06:07 +01:00
|
|
|
{
|
2023-12-31 19:48:07 +01:00
|
|
|
int maxsize=size(); if(rhs.size()>maxsize) maxsize=rhs.size();
|
|
|
|
bitvector r(autoresize?size()+rhs.size():maxsize);
|
2023-12-28 17:06:07 +01:00
|
|
|
r.clear();
|
|
|
|
bitvector tmp(rhs);
|
2023-12-31 19:48:07 +01:00
|
|
|
if(autoresize) tmp.resize(size()+rhs.size(),true);
|
2023-12-28 17:06:07 +01:00
|
|
|
for(int i=0; i<=degree(); ++i)
|
|
|
|
{
|
|
|
|
if((*this)[i]) r+= tmp;
|
|
|
|
tmp.leftshift(1,false);
|
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2023-12-31 19:48:07 +01:00
|
|
|
|
|
|
|
//this is GF(2^n) multiplication
|
|
|
|
bitvector bitvector::field_mult(const bitvector &rhs, const bitvector &irpolynom) const
|
|
|
|
{
|
|
|
|
int d=irpolynom.degree();
|
|
|
|
if(d>size()||d>rhs.size()) laerror("inconsistent dimensions in field_mult");
|
|
|
|
bitvector r(size());
|
|
|
|
r.clear();
|
|
|
|
bitvector tmp(*this);
|
|
|
|
tmp.resize(size()+1,true);
|
2024-01-01 21:26:35 +01:00
|
|
|
tmp.copyonwrite();
|
2023-12-31 19:48:07 +01:00
|
|
|
int rd=rhs.degree();
|
|
|
|
for(int i=0; i<=rd; ++i) //avoid making a working copy of rhs and shifting it
|
|
|
|
{
|
|
|
|
if(rhs[i]) r+= tmp;
|
|
|
|
tmp.leftshift(1,false);
|
|
|
|
if(tmp[d]) tmp -= irpolynom;
|
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//this is GF(2^n) multiplicative inverseion
|
|
|
|
//cf. https://en.wikipedia.org/wiki/Extended_Euclidean_algorithm
|
|
|
|
bitvector bitvector::field_inv(const bitvector &irpolynom) const
|
|
|
|
{
|
|
|
|
int d=irpolynom.degree();
|
|
|
|
if(d>size()) laerror("inconsistent dimensions in field_inv");
|
|
|
|
|
|
|
|
bitvector t(size()); t.clear();
|
|
|
|
bitvector newt(size()); newt.clear(); newt.set(0);
|
|
|
|
bitvector r(irpolynom); r.copyonwrite();
|
|
|
|
bitvector newr(*this); if(r.size()>newr.size()) newr.resize(r.size(),true); newr.copyonwrite();
|
|
|
|
int rs=r.size();
|
|
|
|
|
|
|
|
|
|
|
|
while(!newr.is_zero())
|
|
|
|
{
|
|
|
|
//std::cout <<"r "<<r<<" newr "<<newr <<" "; std::cout <<"t "<<t<<" newt "<<newt; std::cout <<std::endl;
|
|
|
|
bitvector remainder(rs);
|
|
|
|
bitvector quotient = r.division(newr,remainder);
|
|
|
|
r=newr; newr=remainder;
|
|
|
|
remainder= t - quotient.multiply(newt,false); //avoid size growth
|
|
|
|
t=newt; newt=remainder;
|
|
|
|
}
|
|
|
|
|
2024-01-01 21:26:35 +01:00
|
|
|
if(r.degree()>0) laerror("field_inv: polynomial is not irreducible or input is zero modulo the polynomial");
|
2023-12-31 19:48:07 +01:00
|
|
|
if(!r[0]) laerror("zero in field_inv");
|
|
|
|
|
|
|
|
return t;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-12-28 17:06:07 +01:00
|
|
|
void bitvector::resize(const unsigned int n, bool preserve)
|
|
|
|
{
|
2024-01-01 21:26:35 +01:00
|
|
|
if(preserve) zero_padding();
|
|
|
|
int oldnn=nn;
|
2023-12-28 17:06:07 +01:00
|
|
|
NRVec<bitvector_block>::resize((n+blockbits-1)/blockbits,preserve);
|
|
|
|
modulo=n%blockbits;
|
|
|
|
if(preserve) //clear newly allocated memory
|
|
|
|
{
|
2024-01-01 21:26:35 +01:00
|
|
|
for(int i=oldnn; i<nn; ++i) v[i]=0;
|
2023-12-28 17:06:07 +01:00
|
|
|
}
|
|
|
|
else clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bitvector bitvector::division(const bitvector &rhs, bitvector &remainder) const
|
|
|
|
{
|
|
|
|
if(rhs.is_zero()) laerror("division by zero binary polynomial");
|
|
|
|
if(is_zero() || rhs.is_one()) {remainder.clear(); return *this;}
|
|
|
|
bitvector r(size());
|
|
|
|
r.clear();
|
|
|
|
remainder= *this;
|
|
|
|
remainder.copyonwrite();
|
|
|
|
|
|
|
|
int rhsd = rhs.degree();
|
|
|
|
int d;
|
|
|
|
while((d=remainder.degree()) >= rhsd)
|
|
|
|
{
|
|
|
|
unsigned int pos = d-rhsd;
|
|
|
|
r.set(pos);
|
2023-12-31 19:48:07 +01:00
|
|
|
remainder -= rhs<<pos;
|
2023-12-28 17:06:07 +01:00
|
|
|
}
|
2023-12-31 19:48:07 +01:00
|
|
|
remainder.resize(rhs.size(),true);
|
2023-12-28 17:06:07 +01:00
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
bitvector bitvector::gcd(const bitvector &rhs) const
|
|
|
|
{
|
|
|
|
bitvector big,small;
|
|
|
|
|
|
|
|
if(degree()>=rhs.degree())
|
|
|
|
{big= *this; small=rhs;}
|
|
|
|
else
|
|
|
|
{big=rhs; small= *this;}
|
|
|
|
|
|
|
|
if(big.is_zero())
|
|
|
|
{
|
|
|
|
if(small.is_zero()) laerror("two zero arguments in gcd");
|
|
|
|
return small;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(small.is_zero()) return big;
|
|
|
|
if(small.is_one()) return small;
|
|
|
|
if(big.is_one()) return big;
|
|
|
|
|
|
|
|
do {
|
|
|
|
bitvector help=small;
|
|
|
|
small= big%small;
|
|
|
|
big=help;
|
|
|
|
}
|
|
|
|
while(! small.is_zero());
|
|
|
|
return big;
|
2024-01-01 10:58:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//cf. Brent & Zimmermann ANZMC08t (2008) paper
|
2024-01-01 21:26:35 +01:00
|
|
|
//
|
2024-01-01 10:58:30 +01:00
|
|
|
bool bitvector::is_irreducible() const
|
|
|
|
{
|
|
|
|
bitvector tmp(size());
|
|
|
|
tmp.clear(); tmp.set(1);
|
|
|
|
unsigned int d=degree();
|
|
|
|
|
|
|
|
//repeated squaring test
|
|
|
|
for(unsigned int j=0; j<d; ++j) tmp = tmp.field_mult(tmp,*this);
|
|
|
|
tmp.flip(1);
|
|
|
|
if(!tmp.is_zero()) return false;
|
|
|
|
|
|
|
|
FACTORIZATION<uint64_t> f = factorization((uint64_t)d);
|
|
|
|
if(f.begin()->first==d) return true; //d was prime
|
2023-12-28 17:06:07 +01:00
|
|
|
|
2024-01-01 10:58:30 +01:00
|
|
|
//additional tests needed for non-prime degrees
|
|
|
|
for(auto p=f.begin(); p!=f.end(); ++p)
|
|
|
|
{
|
|
|
|
unsigned int dm= d / p->first;
|
|
|
|
tmp.clear(); tmp.set(1);
|
|
|
|
for(unsigned int j=0; j<dm; ++j) tmp = tmp.field_mult(tmp,*this);
|
|
|
|
tmp.flip(1);
|
|
|
|
bitvector g=tmp.gcd(*this);
|
2024-01-01 21:26:35 +01:00
|
|
|
//std::cout << "TEST tmp, ir, gcd, is_one "<<tmp<<" "<<*this<<" "<<g<<" : "<<g.is_one()<<std::endl;
|
|
|
|
if(!g.is_one()) return false;
|
2024-01-01 10:58:30 +01:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2023-12-28 17:06:07 +01:00
|
|
|
|
|
|
|
|
2024-01-01 10:58:30 +01:00
|
|
|
//horner scheme
|
|
|
|
bitvector bitvector::composition(const bitvector &x) const
|
|
|
|
{
|
|
|
|
bitvector r(size());
|
|
|
|
r.clear();
|
|
|
|
int d=degree();
|
|
|
|
for(int i=d; i>0; --i)
|
|
|
|
{
|
|
|
|
if((*this)[i]) r.flip(0);
|
|
|
|
r*=x;
|
|
|
|
}
|
|
|
|
if((*this)[0]) r.flip(0);
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
bitvector bitvector::field_composition(const bitvector &x, const bitvector &ir) const
|
|
|
|
{
|
|
|
|
bitvector r(size());
|
|
|
|
r.clear();
|
|
|
|
int d=degree();
|
|
|
|
for(int i=d; i>0; --i)
|
|
|
|
{
|
|
|
|
if((*this)[i]) r.flip(0);
|
|
|
|
r= r.field_mult(x,ir);
|
|
|
|
}
|
|
|
|
if((*this)[0]) r.flip(0);
|
|
|
|
return r;
|
2013-11-04 15:56:39 +01:00
|
|
|
}
|
|
|
|
|
2024-01-01 10:58:30 +01:00
|
|
|
|
2021-04-21 15:04:37 +02:00
|
|
|
void bitvector::read(int fd, bool dimensions, bool transp)
|
|
|
|
{
|
|
|
|
if(dimensions)
|
|
|
|
{
|
|
|
|
int r = ::read(fd,&modulo,sizeof(modulo));
|
|
|
|
if(r!=sizeof(modulo)) laerror("cannot read in bitvector");
|
|
|
|
}
|
|
|
|
NRVec<bitvector_block>::get(fd,dimensions,transp);
|
|
|
|
}
|
|
|
|
|
|
|
|
void bitvector::write(int fd, bool dimensions, bool transp)
|
|
|
|
{
|
|
|
|
if(dimensions)
|
|
|
|
{
|
|
|
|
int r = ::write(fd,&modulo,sizeof(modulo));
|
|
|
|
if(r!=sizeof(modulo)) laerror("cannot write in bitvector");
|
|
|
|
}
|
|
|
|
NRVec<bitvector_block>::put(fd,dimensions,transp);
|
|
|
|
}
|
|
|
|
|
2024-01-01 21:26:35 +01:00
|
|
|
static bitvector *tryme;
|
|
|
|
static bool irfound;
|
|
|
|
static int mynth;
|
|
|
|
|
|
|
|
static void irfinder(int nones, int top)
|
|
|
|
{
|
|
|
|
if(irfound) return;
|
|
|
|
if(nones==0) //terminate recursion
|
|
|
|
{
|
|
|
|
bool testit = tryme->is_irreducible();
|
|
|
|
//std::cout <<"candidate = "<< *tryme<< " result = "<<testit<<std::endl;
|
|
|
|
if(testit)
|
|
|
|
{
|
|
|
|
--mynth;
|
|
|
|
if(!mynth) irfound=true;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
for(int i=nones; i<=top; ++i)
|
|
|
|
{
|
|
|
|
tryme->set(i);
|
|
|
|
irfinder(nones-1,i-1);
|
|
|
|
if(irfound) break;
|
|
|
|
else tryme->reset(i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bitvector find_irreducible(int deg, int pop, int nth)
|
|
|
|
{
|
|
|
|
if(deg<=0) laerror("illegal degree in find_irreducible");
|
|
|
|
if(deg==1) {bitvector r(2); r.set(1); r.reset(0); return r;}
|
|
|
|
bitvector r(deg+1);
|
|
|
|
if(pop== -1)
|
|
|
|
{
|
|
|
|
do {
|
|
|
|
r.randomize();
|
|
|
|
r.set(0);
|
|
|
|
r.set(deg);
|
|
|
|
if((r.population()&1)==0) r.flip(1+RANDINT32()%(deg-2));
|
|
|
|
}
|
|
|
|
while(!r.is_irreducible());
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
if(pop<3 || (pop&1)==0) laerror("impossible population of irreducible polynomial requested");
|
|
|
|
r.clear();
|
|
|
|
r.set(0);
|
|
|
|
r.set(deg);
|
|
|
|
pop-=2;
|
|
|
|
tryme= &r;
|
|
|
|
irfound=false;
|
|
|
|
mynth=nth;
|
|
|
|
irfinder(pop,deg-1);
|
|
|
|
if(!irfound) r.clear();
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bitvector bitvector::pow(unsigned int n) const
|
|
|
|
{
|
|
|
|
if(n==0) {bitvector r(size()); r.clear(); r.set(0); return r;}
|
|
|
|
if(n==1) return *this;
|
|
|
|
bitvector y,z;
|
|
|
|
z= *this;
|
|
|
|
while(!(n&1))
|
|
|
|
{
|
|
|
|
z = z*z;
|
|
|
|
n >>= 1;
|
|
|
|
}
|
|
|
|
y=z;
|
|
|
|
while((n >>= 1)/*!=0*/)
|
|
|
|
{
|
|
|
|
z = z*z;
|
|
|
|
if(n&1) y *= z;
|
|
|
|
}
|
|
|
|
return y;
|
|
|
|
}
|
|
|
|
|
|
|
|
bitvector bitvector::field_pow(unsigned int n, const bitvector &ir) const
|
|
|
|
{
|
|
|
|
if(n==0) {bitvector r(size()); r.clear(); r.set(0); return r;}
|
|
|
|
if(n==1) return *this;
|
|
|
|
bitvector y,z;
|
|
|
|
z= *this;
|
|
|
|
while(!(n&1))
|
|
|
|
{
|
|
|
|
z = z.field_mult(z,ir);
|
|
|
|
n >>= 1;
|
|
|
|
}
|
|
|
|
y=z;
|
|
|
|
while((n >>= 1)/*!=0*/)
|
|
|
|
{
|
|
|
|
z = z.field_mult(z,ir);
|
|
|
|
if(n&1) y = y.field_mult(z,ir);
|
|
|
|
}
|
|
|
|
return y;
|
|
|
|
}
|
|
|
|
|
|
|
|
//sqrt(x) is x^(2^(d-1))
|
|
|
|
bitvector bitvector::field_sqrt(const bitvector &ir) const
|
|
|
|
{
|
|
|
|
int d=ir.degree();
|
|
|
|
bitvector r(*this);
|
|
|
|
for(int i=0; i<d-1; ++i)
|
|
|
|
{
|
|
|
|
r= r.field_mult(r,ir);
|
|
|
|
}
|
|
|
|
r.resize(d+1,true);
|
|
|
|
return r;
|
|
|
|
}
|
2021-04-21 15:04:37 +02:00
|
|
|
|
2013-11-04 15:56:39 +01:00
|
|
|
|
2023-12-28 17:06:07 +01:00
|
|
|
|
2009-11-12 22:01:19 +01:00
|
|
|
}//namespace
|