1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322
|
/*
* Normaliz
* Copyright (C) 2007-2014 Winfried Bruns, Bogdan Ichim, Christof Soeger
* 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/>.
*
* As an exception, when this program is distributed through (i) the App Store
* by Apple Inc.; (ii) the Mac App Store by Apple Inc.; or (iii) Google Play
* by Google Inc., then that store may impose any digital rights management,
* device limits and/or redistribution restrictions that are required by its
* terms of service.
*/
//---------------------------------------------------------------------------
#include <algorithm>
#include <sstream>
#include "libnormaliz/integer.h"
#include "libnormaliz/vector_operations.h"
//---------------------------------------------------------------------------
namespace libnormaliz {
using namespace std;
bool try_convert(long& ret, const long long& val) {
if (fits_long_range(val)) {
ret = val;
return true;
}
return false;
}
bool try_convert(long& ret, const mpz_class& val) {
if (!val.fits_slong_p()) {
return false;
}
ret = val.get_si();
return true;
}
bool try_convert(long long& ret, const mpz_class& val) {
if (val.fits_slong_p()) {
ret = val.get_si();
return true;
}
if (sizeof(long long)==sizeof(long)) {
return false;
}
mpz_class quot;
ret = mpz_fdiv_q_ui(quot.get_mpz_t(), val.get_mpz_t(), LONG_MAX); //returns remainder
if (!quot.fits_slong_p()){
return false;
}
ret += ((long long) quot.get_si())*((long long) LONG_MAX);
return true;
}
bool try_convert(mpz_class& ret, const long long& val) {
if (fits_long_range(val)) {
ret = mpz_class(long(val));
} else {
ret = mpz_class(long (val % LONG_MAX)) + mpz_class(LONG_MAX) * mpz_class(long(val/LONG_MAX));
}
return true;
}
bool fits_long_range(long long a) {
return sizeof(long long) == sizeof(long) || (a <= LONG_MAX && a >= LONG_MIN);
}
//---------------------------------------------------------------------------
template <typename Integer>
Integer gcd(const Integer& a, const Integer& b){
if (a==0) {
return Iabs<Integer>(b);
}
if (b==0) {
return Iabs<Integer>(a);
}
Integer q0,q1,r;
q0=Iabs<Integer>(a);
r=Iabs<Integer>(b);
do {
q1=r;
r=q0%q1;
q0=q1;
} while (r!=0);
return q1;
}
template<> mpz_class gcd<mpz_class>(const mpz_class& a, const mpz_class& b) {
mpz_class g;
mpz_gcd (g.get_mpz_t(), a.get_mpz_t(), b.get_mpz_t());
return g;
}
template void sign_adjust_and_minimize<long long>(const long long& a, const long long& b, long long& d, long long& u, long long&v);
template long long ext_gcd<long long>(const long long& a, const long long& b, long long& u, long long&v);
template <typename Integer>
void sign_adjust_and_minimize(const Integer& a, const Integer& b, Integer& d, Integer& u, Integer&v){
if(d<0){
d=-d;
u=-u;
v=-v;
}
// cout << u << " " << v << endl;
if(b==0)
return;
Integer sign=1;
if(a<0)
sign=-1;
Integer u1= (sign*u) % (Iabs(b)/d);
if(u1==0)
u1+=Iabs(b)/d;
u=sign*u1;
v=(d-a*u)/b;
}
template <typename Integer>
Integer ext_gcd(const Integer& a, const Integer& b, Integer& u, Integer&v){
u=1;
v=0;
Integer d=a;
if (b==0) {
sign_adjust_and_minimize(a,b,d,u,v);
return(d);
}
Integer v1=0;
Integer v3=b;
Integer q,t1,t3;
while(v3!=0){
q=d/v3;
t3=d-q*v3;
t1=u-q*v1;
u=v1;
d=v3;
v1=t1;
v3=t3;
}
sign_adjust_and_minimize(a,b,d,u,v);
return(d);
}
//---------------------------------------------------------------------------
template <typename Integer>
Integer lcm(const Integer& a, const Integer& b){
if ((a==0)||(b==0)) {
return 0;
}
else
return Iabs<Integer>(a*b/gcd<Integer>(a,b));
}
template<> mpz_class lcm<mpz_class>(const mpz_class& a, const mpz_class& b) {
mpz_class g;
mpz_lcm (g.get_mpz_t(), a.get_mpz_t(), b.get_mpz_t());
return g;
}
//---------------------------------------------------------------------------
template <typename Integer>
size_t decimal_length(Integer a){
size_t l=1;
if (a<0) {
a=-a;
l++;
}
while((a/=10)!=0)
l++;
return l;
}
//---------------------------------------------------------------------------
template <typename Integer>
Integer permutations(const size_t& a, const size_t& b){
unsigned long i;
Integer P=1;
for (i = a+1; i <= b; i++) {
P*=i;
}
return P;
}
//---------------------------------------------------------------------------
template<typename Integer>
Integer permutations_modulo(const size_t& a, const size_t& b, long m) {
unsigned long i;
Integer P=1;
for (i = a+1; i <= b; i++) {
P*=i; P%=m;
}
return P;
}
//---------------------------------------------------------------------------
template<typename Integer>
Integer int_max_value_dual(){
Integer k=sizeof(Integer)*8-2; // number of bytes convetred to number of bits
Integer test=1;
test = test << k; // (maximal positive number)/2^k
return test;
}
//---------------------------------------------------------------------------
template<typename Integer>
Integer int_max_value_primary(){
Integer k=sizeof(Integer)*8-12; // number of bytes convetred to number of bits
Integer test=1;
test = test << k; // (maximal positive number)/2^k
// test=0; // 10000;
return test;
}
//---------------------------------------------------------------------------
template<>
mpz_class int_max_value_dual<mpz_class>(){
assert(false);
return 0;
}
//---------------------------------------------------------------------------
template<>
mpz_class int_max_value_primary<mpz_class>(){
assert(false);
return 0;
}
//---------------------------------------------------------------------------
template<typename Integer>
void check_range_list(const CandidateList<Integer>& ll){
check_range_list(ll.Candidates);
}
//---------------------------------------------------------------------------
template<typename Integer>
void check_range_list(const std::list<Candidate<Integer> >& ll){
if (using_GMP<Integer>())
return;
typename list<Candidate<Integer> >::const_iterator v=ll.begin();
Integer test=int_max_value_dual<Integer>();
// cout << "test " << test << endl;
for(;v!=ll.end();++v){
for(size_t i=0;i<v->values.size();++i)
if(Iabs(v->values[i])>= test){
// cout << *v;
// cout << "i " << i << " " << Iabs((*v)[i]) << endl;
throw ArithmeticException("Vector entry out of range. Imminent danger of arithmetic overflow.");
}
}
}
//---------------------------------------------------------------------------
template<typename Integer>
void minimal_remainder(const Integer& a, const Integer&b, Integer& quot, Integer& rem) {
quot=a/b;
rem=a-quot*b;
if(rem==0)
return;
if(2*Iabs(rem)>Iabs(b)){
if((rem<0 && b>0) || (rem >0 && b<0)){
rem+=b;
quot--;
}
else{
rem-=b;
quot++;
}
}
}
//---------------------------------------------------------------------------
// String conversion functions
//---------------------------------------------------------------------------
template<typename Integer> string toString(Integer a) {
ostringstream ostream;
ostream << a;
return ostream.str();
}
template<> string toString(mpz_class a) {
return a.get_str();
}
template<> string toString(mpq_class a) {
return a.get_str();
}
} //end namespace libnormaliz
|