Changeset e8c9869 in git
- Timestamp:
- Oct 15, 2015, 7:13:38 PM (8 years ago)
- Branches:
- (u'spielwiese', '8d54773d6c9e2f1d2593a28bc68b7eeab54ed529')
- Children:
- 410eb0d71bde766384554dff9b80f5e23bc9977c
- Parents:
- c47090ae9dbedefd3c145b53b25acbca57bd31e1
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
IntegerProgramming/IP_algorithms.cc
rc47090 re8c9869 130 130 { 131 131 cerr<<"ERROR: int Conti_Traverso(INPUT_FILE, const BOOLEAN&):\n" 132 "number of variables / matrix columns must be posit ve"<<endl;132 "number of variables / matrix columns must be positive"<<endl; 133 133 return 0; 134 134 } … … 211 211 { 212 212 cerr<<"ERROR: int Conti_Traverso(INPUT_FILE, const BOOLEAN&):\n" 213 "number of constraints / matrix rows must be posit ve"<<endl;213 "number of constraints / matrix rows must be positive"<<endl; 214 214 // Solving problems without constraints is possible, but not very 215 215 // interesting (because trivial). To avoid the problems and the overhead … … 418 418 { 419 419 cerr<<"ERROR: int Positive_Conti_Traverso(INPUT_FILE, const BOOLEAN&):\n" 420 "number of variables / matrix columns must be posit ve"<<endl;420 "number of variables / matrix columns must be positive"<<endl; 421 421 return 0; 422 422 } … … 499 499 { 500 500 cerr<<"ERROR: int Positive_Conti_Traverso(INPUT_FILE, const BOOLEAN&):\n" 501 "number of constraints / matrix rows must be posit ve"<<endl;501 "number of constraints / matrix rows must be positive"<<endl; 502 502 // Solving problems without constraints is possible, but not very 503 503 // interesting (because trivial). To avoid the problems and the overhead … … 715 715 { 716 716 cerr<<"ERROR: int Elim_Conti_Traverso(INPUT_FILE, const BOOLEAN&):\n" 717 "number of variables / matrix columns must be posit ve"<<endl;717 "number of variables / matrix columns must be positive"<<endl; 718 718 return 0; 719 719 } … … 796 796 { 797 797 cerr<<"ERROR: int Elim_Conti_Traverso(INPUT_FILE, const BOOLEAN&):\n" 798 "number of constraints / matrix rows must be posit ve"<<endl;798 "number of constraints / matrix rows must be positive"<<endl; 799 799 // Solving problems without constraints is possible, but not very 800 800 // interesting (because trivial). To avoid the problems and the overhead … … 1004 1004 { 1005 1005 cerr<<"ERROR: int Pottier(INPUT_FILE, const BOOLEAN&):\n" 1006 "number of variables / matrix columns must be posit ve"<<endl;1006 "number of variables / matrix columns must be positive"<<endl; 1007 1007 return 0; 1008 1008 } … … 1085 1085 { 1086 1086 cerr<<"ERROR: int Pottier(INPUT_FILE, const BOOLEAN&):\n" 1087 "number of constraints / matrix rows must be posit ve"<<endl;1087 "number of constraints / matrix rows must be positive"<<endl; 1088 1088 // Solving problems without constraints is possible, but not very 1089 1089 // interesting (because trivial). To avoid the problems and the overhead … … 1292 1292 { 1293 1293 cerr<<"ERROR: int Hosten_Sturmfels(INPUT_FILE, const BOOLEAN&):\n" 1294 "number of variables / matrix columns must be posit ve"<<endl;1294 "number of variables / matrix columns must be positive"<<endl; 1295 1295 return 0; 1296 1296 } … … 1373 1373 { 1374 1374 cerr<<"ERROR: int Hosten_Sturmfels(INPUT_FILE, const BOOLEAN&):\n" 1375 "number of constraints / matrix rows must be posit ve"<<endl;1375 "number of constraints / matrix rows must be positive"<<endl; 1376 1376 // Solving problems without constraints is possible, but not very 1377 1377 // interesting (because trivial). To avoid the problems and the overhead … … 1703 1703 { 1704 1704 cerr<<"ERROR: int DiBiase_Urbanke(INPUT_FILE, const BOOLEAN&):\n" 1705 "number of variables / matrix columns must be posit ve"<<endl;1705 "number of variables / matrix columns must be positive"<<endl; 1706 1706 return 0; 1707 1707 } … … 1784 1784 { 1785 1785 cerr<<"ERROR: int DiBiase_Urbanke(INPUT_FILE, const BOOLEAN&):\n" 1786 "number of constraints / matrix rows must be posit ve"<<endl;1786 "number of constraints / matrix rows must be positive"<<endl; 1787 1787 // Solving problems without constraints is possible, but not very 1788 1788 // interesting (because trivial). To avoid the problems and the overhead … … 2071 2071 { 2072 2072 cerr<<"ERROR: int Bigatti_LaScala_Robbiano(INPUT_FILE, const BOOLEAN&):\n" 2073 "number of variables / matrix columns must be posit ve"<<endl;2073 "number of variables / matrix columns must be positive"<<endl; 2074 2074 return 0; 2075 2075 } … … 2155 2155 { 2156 2156 cerr<<"ERROR: int Bigatti_LaScala_Robbiano(INPUT_FILE, const BOOLEAN&):\n" 2157 "number of constraints / matrix rows must be posit ve"<<endl;2157 "number of constraints / matrix rows must be positive"<<endl; 2158 2158 // Solving problems without constraints is possible, but not very 2159 2159 // interesting (because trivial). To avoid the problems and the overhead … … 3712 3712 { 3713 3713 cerr<<"ERROR: int change_cost(INPUT_FILE, INPUT_FILE):\n" 3714 "number of variables in second input file must be posit ve"<<endl;3714 "number of variables in second input file must be positive"<<endl; 3715 3715 return 0; 3716 3716 } -
IntegerProgramming/ideal.cc
rc47090 re8c9869 352 352 353 353 w=_w; 354 // The argument term_ordering should be given by a homogen ous grading.354 // The argument term_ordering should be given by a homogeneous grading. 355 355 356 356 if(A._kernel_dimension==-2) … … 433 433 cerr<<"\nWARNING: ideal& ideal::Hosten_Sturmfels_ideal(matrix&, " 434 434 "const term_ordering&):\nInvalid row space vector does not induce " 435 "homogen ous grading."<<endl;435 "homogeneous grading."<<endl; 436 436 437 437 binomial* bin=new binomial(A.columns,generator,w); … … 576 576 577 577 w=_w; 578 // The argument term_ordering should be given by a homogen ous grading.578 // The argument term_ordering should be given by a homogeneous grading. 579 579 580 580 if(A._kernel_dimension==-2) … … 685 685 cerr<<"\nWARNING: ideal& ideal::Bigatti_LaScala_Robbiano_ideal(matrix&, " 686 686 "const term_ordering&):\nInvalid row space vector does not induce " 687 "homogen ous grading."<<endl;687 "homogeneous grading."<<endl; 688 688 689 689 binomial* bin=new binomial(A.columns+1,generator,w); -
kernel/linear_algebra/linearAlgebra.h
rc47090 re8c9869 457 457 * These will be combuted by Heron's iteration formula, with iteration 458 458 * stopping when two successive approximations of the square root differ by 459 * no more than the given tolerance, which is assumed to be a posit ve real459 * no more than the given tolerance, which is assumed to be a positive real 460 460 * number. 461 461 **/
Note: See TracChangeset
for help on using the changeset viewer.