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 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071
|
/*
* 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 <iostream>
#include <cctype> // std::isdigit
#include <limits> // numeric_limits
#include "options.h"
#include "libnormaliz/libnormaliz.h"
#include "libnormaliz/map_operations.h"
#include "libnormaliz/cone_property.h"
// eats up a comment, stream must start with "/*", eats everything until "*/"
void skip_comment(istream& in) {
int i = in.get();
int j = in.get();
if (i != '/' || j != '*') {
throw BadInputException("Bad comment start!");
}
while (in.good()) {
in.ignore(numeric_limits<streamsize>::max(), '*'); //ignore everything until next '*'
i = in.get();
if (in.good() && i == '/') return; // successfully skipped comment
}
throw BadInputException("Incomplete comment!");
}
void save_matrix(map<Type::InputType, vector<vector<mpq_class> > >& input_map,
InputType input_type, const vector<vector<mpq_class> >& M) {
//check if this type already exists
if (exists_element(input_map, input_type)) {
/*throw BadInputException("Multiple inputs of type \"" + type_string
+ "\" are not allowed!");*/
input_map[input_type].insert(input_map[input_type].end(),M.begin(),M.end());
return;
}
input_map[input_type] = M;
}
void save_empty_matrix(map<Type::InputType, vector<vector<mpq_class> > >& input_map,
InputType input_type){
vector<vector<mpq_class> > M;
save_matrix(input_map, input_type, M);
}
vector<vector<mpq_class> > transpose_mat(const vector<vector<mpq_class> >& mat){
if(mat.size()==0 || mat[0].size()==0)
return vector<vector<mpq_class> >(0);
size_t m=mat[0].size();
size_t n=mat.size();
vector<vector<mpq_class> > transpose(m,vector<mpq_class> (n,0));
for(size_t i=0;i<m;++i)
for(size_t j=0;j<n;++j)
transpose[i][j]=mat[j][i];
return transpose;
}
void append_row(const vector<mpq_class> row, map <Type::InputType, vector< vector<mpq_class> > >& input_map,
Type::InputType input_type) {
vector<vector<mpq_class> > one_row(1,row);
save_matrix(input_map,input_type,one_row);
}
void process_constraint(const string& rel, const vector<mpq_class>& left, mpq_class right, const mpq_class modulus,
map <Type::InputType, vector< vector<mpq_class> > >& input_map, bool forced_hom) {
vector<mpq_class> row=left;
bool inhomogeneous=false;
if(right!=0 || rel=="<" || rel==">")
inhomogeneous=true;
string modified_rel=rel;
bool strict_inequality=false;
if(rel=="<"){
strict_inequality=true;
right-=1;
modified_rel="<=";
}
if(rel==">"){
strict_inequality=true;
right+=1;
modified_rel=">=";
}
if(strict_inequality && forced_hom){
throw BadInputException("Strict inequality not allowed in hom_constraints!");
}
if(inhomogeneous || forced_hom)
row.push_back(-right); // rhs --> lhs
if(modified_rel=="<="){ // convert <= to >=
for(size_t j=0; j<row.size();++j)
row[j]=-row[j];
modified_rel=">=";
}
if(rel=="~")
row.push_back(modulus);
if(inhomogeneous && !forced_hom){
if(modified_rel=="="){
append_row(row,input_map,Type::inhom_equations);
return;
}
if(modified_rel==">="){
append_row(row,input_map,Type::inhom_inequalities);
return;
}
if(modified_rel=="~"){
append_row(row,input_map,Type::inhom_congruences);
return;
}
}
else {
if(modified_rel=="="){
append_row(row,input_map,Type::equations);
return;
}
if(modified_rel==">="){
append_row(row,input_map,Type::inequalities);
return;
}
if(modified_rel=="~"){
append_row(row,input_map,Type::congruences);
return;
}
}
throw BadInputException("Illegal constrint type "+rel+" !");
}
mpq_class mpq_read(istream& in){
const string numeric="+-0123456789/.e";
in >> std::ws;
string s;
char c;
bool is_float=false;
while(true){
c = in.peek();
size_t pos=numeric.find(c);
if(pos==string::npos)
break;
if(pos>12)
is_float=true;
in >> c;
s+=c;
}
if(s==""){
string t;
t+=c;
throw BadInputException("Empty number string preceding character "+t+ ". Most likely mismatch of amb_space and matrix format or forgotten keyword.");
}
// cout << "t " << s << " f " << is_float << endl;
if(s[0]=='+')
s=s.substr(1); // must suppress + sign for mpq_class
try{
if(!is_float)
return mpq_class(s);
else
return dec_fraction_to_mpq(s);
}
catch(const std::exception& e) {
cerr << e.what() << endl;
cerr << "Illegal number string "+s+" in input, Exiting." << endl;
exit(1);
}
}
bool read_modulus(istream& in, mpq_class& modulus) {
in >> std::ws; // gobble any leading white space
char dummy;
in >> dummy;
if(dummy != '(')
return false;
in >> modulus;
if(in.fail() || modulus==0)
return false;
in >> std::ws; // gobble any white space before closing
in >> dummy;
if(dummy != ')')
return false;
return true;
}
/* void read_symbolic_constraint(istream& iFside
* n, string& rel, vector<mpq_class>& left, mpq_class& right, mpq_class& modulus, bool forced_hom) {
bool congruence=false;
bool modulus_read=false;
mpq_class side=1,sign;
right=0;
long hom_correction=0;
if(forced_hom)
hom_correction=1;
in >> std::ws;
char c = in.peek();
while(true){
if(c=='('){
if(modulus_read || !congruence || !read_modulus(in,modulus))
throw BadInputException("Error while reading modulus of congruence!");
modulus_read=true;
in >> std::ws;
c = in.peek();
}
if(modulus_read && c!=';')
throw BadInputException("Error while reading modulus of congruence!");
if(c==';'){
if(rel=="")
throw BadInputException("Missing relation in constraint");
in >> c;
if(congruence && !modulus_read)
throw BadInputException("Modulus missing in congrruence");
// cout << "LLLLL " << left << " " << rel << " RRR " << right << endl;
return;
}
bool rel_read=false;
if(c=='~' || c=='<' || c=='>' || c=='='){
rel_read=true;
if(rel!="")
throw BadInputException("Error while reading relation in constraint!");
if(c=='~')
congruence=true;
in >> c;
rel+=c;
}
c = in.peek();
if(rel!="" && (rel=="<" || rel==">") && c=='='){
in >> c;
rel+=c;
}
in >> std::ws;
c = in.peek();
if(rel_read){
side=-1;
continue;
}
sign=1;
if(c=='-'){
sign=-1;
in >> c;
}
if(c=='+'){
in >> c;
}
mpq_class entry=1;
in >> std::ws;
c = in.peek();
if(c!='x'){
if(c=='+' || c=='-')
throw BadInputException("Double sign in constraint");
entry=mpq_read(in);
if(in.fail())
throw BadInputException("Error while reading coefficient in constraint");
in >> std::ws;
c = in.peek();
}
if(c!='x'){
right-=side*sign*entry;
continue;
}
in >> c;
in >> std::ws;
c = in.peek();
if(c!='[')
throw BadInputException("Error while reading index in constraint");
in >> c;
long index;
in >> index;
if(in.fail() || index <1 || index+hom_correction> (long) left.size())
throw BadInputException("Error while reading index in constraint");
index-=1;
left[index]+=side*sign*entry;
in >> std::ws;
c = in.peek();
if(c!=']')
throw BadInputException("Error while reading index in constraint");
in >> c;
in >> std::ws;
c = in.peek();
continue;
}
}*/
void read_symbolic_constraint(istream& in, string& rel, vector<mpq_class>& left, mpq_class& right, mpq_class& modulus, bool forced_hom) {
string constraint;
while(true){
char c;
c=in.get();
if(in.fail())
throw BadInputException("Symbolic constraint does not end with semicolon");
if(c==';')
break;
constraint+=c;
}
// remove white space
// we must take care that the removal of white space does not
// shadow syntax errors
string without_spaces;
bool digit_then_spaces=false;
bool has_content=false;
for(size_t j=0;j<constraint.size();++j){
char test=constraint[j];
if(!isspace(test))
has_content=true;
if(isspace(test))
continue;
if(test=='.'){
if(j==constraint.size()-1 || isspace(constraint[j+1]))
throw BadInputException("Incomplete number");
}
if(test=='e'){
if(j==constraint.size()-1 || isspace(constraint[j+1]))
throw BadInputException("Incomplete number");
if(j<=constraint.size()-3 && (constraint[j+1]=='+' || constraint[j+1]=='-')
&& isspace(constraint[j+2]))
throw BadInputException("Incomplete number");
}
if(!isdigit(test))
digit_then_spaces=false;
else{
if(digit_then_spaces)
throw BadInputException("Incomplete number");
// cout << "jjjj " << j << " |" << constraint[j+1] << "|" << endl;
if(j<constraint.size()-1 && isspace(constraint[j+1])){
digit_then_spaces=true;
// cout << "Drin" << endl;
}
}
without_spaces+=test;
}
if(!has_content)
throw BadInputException("Empty symbolic constraint");
// split into terms
// we separate by + and -
// except: first on lhs or rhs, between ( and ) and following e.
bool first_sign=true;
bool in_brackets=false;
bool relation_read=false;
size_t RHS_start=0;
vector<string> terms;
string current_term;
for(size_t j=0;j<without_spaces.size();++j){
char test=without_spaces[j];
if(test=='(')
in_brackets=true;
if(test==')'){
if(!in_brackets)
throw BadInputException("Closing bracket without opening bracket");
in_brackets=false;
}
if(test=='+' || test=='-'){
if(!first_sign && !in_brackets){
terms.push_back(current_term);
current_term.clear();
}
}
first_sign=false;
if(test=='e'){
current_term+=test;
if(j==without_spaces.size()-1)
throw BadInputException("Incomplete number");
if(without_spaces[j+1]=='+' || without_spaces[j+1]=='-'){
current_term+=without_spaces[j+1];
j++;
}
continue;
}
if(test=='=' || test=='<' || test=='>' || test=='~'){
terms.push_back(current_term);
current_term.clear();
rel+=test;
RHS_start=terms.size();
if(relation_read)
throw BadInputException("Double relation in constraint");
relation_read=true;
if(j==without_spaces.size()-1)
throw BadInputException("Relation last character in constraint");
if(without_spaces[j+1]=='='){
rel+=without_spaces[j+1];
j++;
}
first_sign=true;
continue;
}
current_term+=test;
}
terms.push_back(current_term);
if(!relation_read)
throw BadInputException("No relation in constraint");
// for(size_t i=0;i<terms.size();++i)
// cout << i << ": " << terms[i] << "| " << terms[i].size() << endl;
//now we split off the modulus if necessary
if(rel=="~"){
string last_term=terms.back();
size_t last_bracket_at=0;
bool has_bracket=false;
for(size_t i=0;i<last_term.size();++i){
if(last_term[i]=='('){
last_bracket_at=i;
has_bracket=true;
}
}
if(!has_bracket || last_term.back()!=')')
throw BadInputException("Error in modulus of congruence");
string modulus_string=last_term.substr(last_bracket_at+1,last_term.size()-last_bracket_at-2);
terms.back()=last_term.substr(0,last_bracket_at);
if(terms.back()=="")
terms.pop_back();
modulus=mpq_class(modulus_string);
modulus.canonicalize();
// cout << "mod " << modulus << endl;
if(modulus <=0 || modulus.get_den()!=1)
throw BadInputException("Error in modulus of congruence");
}
// for(size_t i=0;i<terms.size();++i)
// cout << i << ": " << terms[i] << "| " << terms[i].size() << endl;
// now we must process the terns
right=0;
mpq_class side=1;
for(size_t i=0;i<terms.size();++i){
if(i==RHS_start)
side=-1;
string& this_term =terms[i];
if(this_term=="")
throw BadInputException("Empty term in symbolic constraint");
if(this_term=="+" || this_term=="-")
throw BadInputException("Double sign or incomplete number");
size_t coeff_length=0;
for(size_t j=0;j<this_term.size();++j){
if(this_term[j]!='x')
coeff_length++;
else
break;
}
string coeff_string=this_term.substr(0,coeff_length);
string comp_string=this_term.substr(coeff_length,this_term.size()-coeff_length);
mpq_class coeff=0;
if(coeff_length==0 || (coeff_length==1 && coeff_string[0]=='+'))
coeff=1;
if(coeff_length==1 && coeff_string[0]=='-')
coeff=-11;
if(coeff==0){
// cout << i << " coeff string: " << coeff_string << endl;
const string numeric="+-0123456789/.e";
for(size_t j=0;j<coeff_string.size();++j){
size_t pos=numeric.find(coeff_string[j]);
if(pos==string::npos)
throw BadInputException("Illegal character in number");
}
stringstream for_coeff;
for_coeff << coeff_string;
coeff=mpq_read(for_coeff);
}
if(comp_string!=""){
bool bracket_read=false;
string expo_string;
for(size_t j=0;j<comp_string.size();++j){
if(comp_string[j]==']')
break;
if(comp_string[j]=='['){
bracket_read=true;
continue;
}
if(bracket_read)
expo_string+=comp_string[j];
}
if(expo_string.size()!=comp_string.size()-3)
throw BadInputException("Error in naming variable in symbolic constraint");
long index=stol(expo_string);
if(index <1 || index > (long) left.size())
throw BadInputException("Index " + expo_string +" in symbolic constraint out of bounds");
index--;
left[index]+=side*coeff;
}
else{ // absolute term
right-=side*coeff;
}
// cout << "constraint " << left << rel << " " << right << endl;
}
}
void read_constraints(istream& in, long dim, map <Type::InputType, vector< vector<mpq_class> > >& input_map, bool forced_hom) {
long nr_constraints;
in >> nr_constraints;
if(in.fail() || nr_constraints < 0) {
throw BadInputException("Cannot read "
+ toString(nr_constraints) + " constraints!");
}
if(nr_constraints==0)
return;
bool symbolic=false;
in >> std::ws;
int c = in.peek();
if(c=='s'){
string dummy;
in >> dummy;
if(dummy!="symbolic")
throw BadInputException("Illegal keyword " + dummy
+ " in input!");
symbolic=true;
}
long hom_correction=0;
if(forced_hom)
hom_correction=1;
for(long i=0;i< nr_constraints; ++i) {
vector<mpq_class> left(dim-hom_correction);
string rel;
mpq_class right, modulus=0;
if(symbolic){
read_symbolic_constraint(in,rel,left,right,modulus,forced_hom);
}
else{ // ordinary constraint read here
for(long j=0;j<dim-hom_correction;++j){
left[j]=mpq_read(in);
}
in >> rel;
right=mpq_read(in);
if(rel=="~") {
if(!read_modulus(in,modulus))
throw BadInputException("Error while reading modulus of congruence!");
}
if (in.fail()) {
throw BadInputException("Error while reading constraint!");
}
}
process_constraint(rel,left,right,modulus,input_map,forced_hom);
}
}
void read_polynomial(istream& in, string& polynomial) {
char c;
while(true){
in >> c;
if(in.fail())
throw BadInputException("Error while reading polynomial!");
if(c==';'){
if(polynomial.size()==0)
throw BadInputException("Error while reading polynomial!");
return;
}
polynomial+=c;
}
}
bool read_sparse_vector(istream& in, vector<mpq_class>& input_vec, long length){
input_vec=vector<mpq_class> (length,0);
char dummy;
while(true){
in >> std::ws;
int c = in.peek();
if(c==';'){
in >> dummy; // swallow ;
return true;
}
long pos;
in >> pos;
if(in.fail())
return false;
pos--;
if(pos<0 || pos>=length)
return false;
in >> std::ws;
c=in.peek();
if(c!=':')
return false;
in >> dummy; // skip :
mpq_class value;
// in >> value;
value=mpq_read(in);
if(in.fail())
return false;
input_vec[pos]=value;
}
}
bool read_formatted_vector(istream& in, vector<mpq_class>& input_vec) {
input_vec.clear();
in >> std::ws;
char dummy;
in >> dummy; // read first proper character
if(dummy!='[')
return false;
bool one_more_entry_required=false;
while(true){
in >> std::ws;
if(!one_more_entry_required && in.peek()==']'){
in >> dummy;
return true;
}
mpq_class number;
number=mpq_read(in);
if(in.fail())
return false;
input_vec.push_back(number);
in >> std::ws;
one_more_entry_required=false;
if(in.peek()==',' || in.peek()==';'){ // skip potential separator
in >> dummy;
one_more_entry_required=true;
}
}
}
bool read_formatted_matrix(istream& in, vector<vector<mpq_class> >& input_mat, bool transpose) {
input_mat.clear();
in >> std::ws;
char dummy;
in >> dummy; // read first proper character
if(dummy!='[')
return false;
bool one_more_entry_required=false;
while(true){
in >> std::ws;
if(!one_more_entry_required && in.peek()==']'){ // closing ] found
in >> dummy;
if(transpose)
input_mat=transpose_mat(input_mat);
return true;
}
vector<mpq_class> input_vec;
if(!read_formatted_vector(in,input_vec)){
throw BadInputException("Error in reading input vector!");
}
if(input_mat.size()>0 && input_vec.size()!=input_mat[0].size()){
throw BadInputException("Rows of input matrix have unequal lengths!");
}
input_mat.push_back(input_vec);
in >> std::ws;
one_more_entry_required=false;
if(in.peek()==',' || in.peek()==';'){ // skip potential separator
in >> dummy;
one_more_entry_required=true;
}
}
}
map <Type::InputType, vector< vector<mpq_class> > > readNormalizInput (istream& in, OptionsHandler& options,
string& polynomial, long& nr_coeff_quasipol, long& expansion_degree) {
string type_string;
long i,j;
long nr_rows,nr_columns,nr_rows_or_columns;
InputType input_type;
mpq_class number;
ConeProperty::Enum cp;
bool we_have_a_polynomial=false;
bool we_have_nr_coeff=false;
bool we_have_expansion_degree=false;
map<Type::InputType, vector< vector<mpq_class> > > input_map;
typename map<Type::InputType, vector< vector<mpq_class> > >::iterator it;
in >> std::ws; // eat up any leading white spaces
int c = in.peek();
if ( c == EOF ) {
throw BadInputException("Empty input file!");
}
bool new_input_syntax = !std::isdigit(c);
if (new_input_syntax) {
long dim;
while (in.peek() == '/') {
skip_comment(in);
in >> std::ws;
}
in >> type_string;
if (!in.good() || type_string != "amb_space") {
throw BadInputException("First entry must be \"amb_space\"!");
}
bool dim_known=false;
in >> std::ws;
c=in.peek();
if(c=='a'){
string dummy;
in >> dummy;
if(dummy!="auto"){
throw BadInputException("Bad amb_space value!");
}
}
else{
in >> dim;
if (!in.good() || dim < 0) {
throw BadInputException("Bad amb_space value!");
}
dim_known=true;
}
while (in.good()) { //main loop
bool transpose=false;
in >> std::ws; // eat up any leading white spaces
c = in.peek();
if (c == EOF) break;
if (c == '/') {
skip_comment(in);
} else {
in >> type_string;
if (in.fail()) {
throw BadInputException("Could not read type string!");
}
if (std::isdigit(c)) {
throw BadInputException("Unexpected number " + type_string
+ " when expecting a type!");
}
if (isConeProperty(cp, type_string)) {
options.activateInputFileConeProperty(cp);
continue;
}
/* if (type_string == "BigInt") {
options.activateInputFileBigInt();
continue;
} */
if (type_string == "LongLong") {
options.activateInputFileLongLong();
continue;
}
if (type_string == "NoExtRaysOutput") {
options.activateNoExtRaysOutput();
continue;
}
if (type_string == "NoSuppHypsOutput") {
options.activateNoSuppHypsOutput();
continue;
}
if (type_string == "total_degree") {
if(!dim_known){
throw BadInputException("Ambient space must be known for "+type_string+"!");
}
input_type = Type::grading;
save_matrix(input_map, input_type, vector< vector<mpq_class> >(1,vector<mpq_class>(dim+type_nr_columns_correction(input_type),1)));
continue;
}
if (type_string == "nonnegative") {
if(!dim_known){
throw BadInputException("Ambient space must be known for "+type_string+"!");
}
input_type = Type::signs;
save_matrix(input_map, input_type, vector< vector<mpq_class> >(1,vector<mpq_class>(dim+type_nr_columns_correction(input_type),1)));
continue;
}
if(type_string == "constraints") {
if(!dim_known){
throw BadInputException("Ambient space must be known for "+type_string+"!");
}
read_constraints(in,dim,input_map,false);
continue;
}
if(type_string == "hom_constraints") {
if(!dim_known){
throw BadInputException("Ambient space must be known for "+type_string+"!");
}
read_constraints(in,dim,input_map,true);
continue;
}
if(type_string == "polynomial") {
if(we_have_a_polynomial)
throw BadInputException("Only one polynomial allowed");
read_polynomial(in,polynomial);
we_have_a_polynomial=true;
continue;
}
if(type_string=="nr_coeff_quasipol"){
if(we_have_nr_coeff)
throw BadInputException("Only one nr_coeff_quasipol allowed");
in >> nr_coeff_quasipol;
we_have_nr_coeff=true;
if(in.fail())
throw BadInputException("Error while reading nr_coeff_quasipol");
continue;
}
if(type_string=="expansion_degree"){
if(we_have_expansion_degree)
throw BadInputException("Only one expansion_degree allowed");
in >> expansion_degree;
we_have_expansion_degree=true;
if(in.fail())
throw BadInputException("Error while reading expansion_degree");
continue;
}
input_type = to_type(type_string);
if(dim_known)
nr_columns = dim + type_nr_columns_correction(input_type);
if (type_is_vector(input_type)) {
nr_rows_or_columns = nr_rows = 1;
in >> std::ws; // eat up any leading white spaces
c = in.peek();
if (c=='u') { // must be unit vector
string vec_kind;
in >> vec_kind;
if (vec_kind != "unit_vector") {
throw BadInputException("Error while reading "
+ type_string
+ ": unit_vector expected!");
}
long pos = 0;
in >> pos;
if (in.fail()) {
throw BadInputException("Error while reading "
+ type_string
+ " as a unit_vector!");
}
if(!dim_known){
throw BadInputException("Ambient space must be known for unit vector "+type_string+"!");
}
vector< vector<mpq_class> > e_i = vector< vector<mpq_class> >(1,vector<mpq_class>(nr_columns,0));
if (pos < 1 || pos > static_cast<long>(e_i[0].size())) {
throw BadInputException("Error while reading "
+ type_string + " as a unit_vector "
+ toString(pos) + "!");
}
pos--; // in input file counting starts from 1
e_i[0].at(pos) = 1;
save_matrix(input_map, input_type, e_i);
continue;
} // end unit vector
if(c=='s'){ // must be "sparse"
string vec_kind;
in >> vec_kind;
if (vec_kind != "sparse") {
throw BadInputException("Error while reading "
+ type_string
+ ": sparse vector expected!");
}
if(!dim_known){
throw BadInputException("Ambient space must be known for sparse vector "+type_string+"!");
}
vector<mpq_class> sparse_vec;
nr_columns = dim + type_nr_columns_correction(input_type);
bool success = read_sparse_vector(in,sparse_vec,nr_columns);
if(!success){
throw BadInputException("Error while reading "
+ type_string
+ " as a sparse vector!");
}
save_matrix(input_map, input_type, vector<vector<mpq_class> > (1,sparse_vec));
continue;
}
if (c == '[') { // must be formatted vector
vector<mpq_class> formatted_vec;
bool success = read_formatted_vector(in,formatted_vec);
if(!dim_known){
dim=formatted_vec.size()- type_nr_columns_correction(input_type);
dim_known=true;
nr_columns = dim + type_nr_columns_correction(input_type);
}
if(!success || (long) formatted_vec.size()!=nr_columns){
throw BadInputException("Error while reading "
+ type_string
+ " as a formatted vector!");
}
save_matrix(input_map, input_type, vector<vector<mpq_class> > (1,formatted_vec));
continue;
} // end formatted vector
} else { // end vector, it is a matrix. Plain vector read as a one row matrix later on
in >> std::ws;
c = in.peek();
if(c!='[' && !std::isdigit(c)){ // must be transpose
string transpose_str;
in >> transpose_str;
if(transpose_str!="transpose"){
throw BadInputException("Illegal keyword "+transpose_str+" following matrix type!");
}
transpose=true;
in >> std::ws;
c = in.peek();
}
if(c=='['){ // it is a formatted matrix
vector<vector<mpq_class> > formatted_mat;
bool success=read_formatted_matrix(in,formatted_mat, transpose);
if(!success){
throw BadInputException("Error while reading formatted matrix "
+ type_string + "!");
}
if(formatted_mat.size() ==0){ // empty matrix
input_type = to_type(type_string);
save_empty_matrix(input_map, input_type);
continue;
}
if(!dim_known){
dim=formatted_mat[0].size()- type_nr_columns_correction(input_type);
dim_known=true;
nr_columns = dim + type_nr_columns_correction(input_type);
}
if((long) formatted_mat[0].size()!=nr_columns){
throw BadInputException("Error while reading formatted matrix "
+ type_string + "!");
}
save_matrix(input_map, input_type, formatted_mat);
continue;
} // only plain matrix left
in >> nr_rows_or_columns; // is number of columns if transposed
nr_rows=nr_rows_or_columns; // most of the time
}
if(!dim_known){
throw BadInputException("Ambient space must be known for plain matrix or vector "+type_string+"!");
}
if(transpose)
swap(nr_rows,nr_columns);
if(in.fail() || nr_rows_or_columns < 0) {
throw BadInputException("Error while reading "
+ type_string + " (a " + toString(nr_rows)
+ "x" + toString(nr_columns)
+ " matrix) !");
}
if(nr_rows==0){
input_type = to_type(type_string);
save_empty_matrix(input_map, input_type);
continue;
}
vector< vector<mpq_class> > M(nr_rows);
in >> std::ws;
c=in.peek();
if(c=='s'){ // must be sparse
string sparse_test;
in >> sparse_test;
if (sparse_test!= "sparse") {
throw BadInputException("Error while reading "
+ type_string
+ ": sparse matrix expected!");
}
for(long i=0;i<nr_rows;++i){
bool success=read_sparse_vector(in,M[i],nr_columns);
if(!success){
throw BadInputException("Error while reading "
+ type_string
+ ": corrupted sparse matrix");
}
}
} else{ // dense matrix
for(i=0; i<nr_rows; i++){
M[i].resize(nr_columns);
for(j=0; j<nr_columns; j++) {
M[i][j]=mpq_read(in);
}
}
}
if(transpose)
M=transpose_mat(M);
save_matrix(input_map, input_type, M);
}
if (in.fail()) {
throw BadInputException("Error while reading " + type_string
+ " (a " + toString(nr_rows) + "x"
+ toString(nr_columns) + " matrix) !");
}
}
} else {
// old input syntax
while (in.good()) {
in >> nr_rows;
if(in.fail())
break;
in >> nr_columns;
if((nr_rows <0) || (nr_columns < 0)){
throw BadInputException("Error while reading matrix format "
+ toString(nr_rows) + "x" + toString(nr_columns));
}
vector< vector<mpq_class> > M(nr_rows,vector<mpq_class>(nr_columns));
for(i=0; i<nr_rows; i++){
for(j=0; j<nr_columns; j++) {
number=mpq_read(in);
M[i][j] = number;
}
}
in >> type_string;
if ( in.fail() ) {
throw BadInputException("Error while reading type string of "
+ toString(nr_rows) + "x" + toString(nr_columns)
+ " matrix!");
}
input_type = to_type(type_string);
//check if this type already exists
save_matrix(input_map, input_type, M);
}
}
return input_map;
}
|