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
|
/*
* 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 <stdlib.h>
#include <vector>
#include <list>
#include <string>
#include <sstream>
#include <algorithm>
#include <csignal>
using namespace std;
#ifdef NMZ_GPERF
#include <gperftools/profiler.h>
#endif
#include "normaliz.h"
#include "libnormaliz/integer.h"
#include "libnormaliz/libnormaliz.h"
#include "libnormaliz/cone.h"
//#include "libnormaliz/libnormaliz.cpp"
using namespace libnormaliz;
#include "input.cpp"
#include "options.cpp"
#include "output.cpp"
#ifndef STRINGIFY
#define STRINGIFYx(Token) #Token
#define STRINGIFY(Token) STRINGIFYx(Token)
#endif
long CCCCCCC=0;
void printHeader() {
cout << " \\.....|"<<endl;
cout << " Normaliz " << string( STRINGIFY(NMZ_VERSION) " " ,11)
<< " \\....|"<<endl;
cout << " \\...|"<<endl;
cout << " (C) The Normaliz Team, University of Osnabrueck \\..|"<<endl;
cout << " July 2018 \\.|"<<endl;
cout << " \\|"<<endl;
bool with_optional_packages=false;
string optional_packages;
#ifdef NMZ_COCOA
with_optional_packages=true;
optional_packages+=" CoCoALib";
#endif
#ifdef NMZ_FLINT
with_optional_packages=true;
optional_packages+=" Flint";
#endif
#ifdef NMZ_SCIP
with_optional_packages=true;
optional_packages+=" SCIP";
#endif
if(with_optional_packages){
cout << "------------------------------------------------------------" << endl;
cout << "with package(s)" << optional_packages << endl;
}
}
void printHelp(char* command) {
cout << "Usage: "<<command<<" [options] PROJECT"<<endl;
cout << " runs normaliz on PROJECT.in"<<endl;
cout << "Options:"<<endl;
cout << " -S\tcompute sublattice"<<endl;
cout << " -s\tcompute support hyperplanes"<<endl;
cout << " -t\tcompute triangulation"<<endl;
cout << " -v\tcompute multiplicity"<<endl;
cout << " -v\tcompute volume"<<endl;
cout << " -F\tcompute volume by decent in the face lattice"<<endl;
cout << " -n\tcompute Hilbert basis and multiplicity (needs full triangulation)"<<endl;
cout << " -N\tcompute Hilbert basis (with partial triangulation)"<<endl;
cout << " -w\tcheck for integrally closed and compute witness if not"<<endl;
cout << " -q\tcompute Hilbert (quasi-)polynomial"<<endl;
cout << " -p\tcompute Hilbert (quasi-)polynomial and degree 1 elements"<<endl;
cout << " -h\tcompute Hilbert basis and Hilbert polynomial (default)"<<endl;
cout << " -1\tcompute degree 1 elements"<<endl;
cout << " -y\tcompute Stanley decomposition (output in file .dec)"<<endl;
cout << " -C\tcompute class group (default)"<<endl;
cout << " -T\tcompute triangulation (output in file .tri)"<<endl;
cout << " -D\tcompute cone decomposition (includes -T)"<<endl;
cout << " -H\tcompute integer hull"<<endl;
cout << " -M\tcompute module generators over original monoid"<<endl;
cout << " -E\tcompute weighted Ehrhart series"<<endl;
cout << " -L\tcompute virtual multiplicity of weighted Ehrhart series"<<endl;
cout << " -I\tcompute integral"<<endl;
cout << " -G\tcheck Gorenstein"<<endl;
cout << endl;
cout << " -d\tcomputation mode: dual"<<endl;
cout << " -P\tcomputation mode: primal"<<endl;
cout << " -j\tcomputation mode: project-and-lift"<<endl;
cout << " -J\tcomputation mode: project-and-lift with floating point arithmetic"<<endl;
cout << " -r\tcomputation mode: approximate"<<endl;
cout << " -b\tcomputation mode: bottom decomposition"<<endl;
cout << " -o\tcomputation mode: no bottom decomposition"<<endl;
cout << " -k\tcomputation mode: keep order"<<endl;
cout << " -Y\tcomputation mode: symmetrization"<<endl;
cout << endl;
cout << " --<PROP> compute the ConeProperty <PROP>"<<endl;
cout << endl;
cout << " -f, --files write the files .out .gen .inv .cst"<<endl;
cout << " -a, --all-files write all output files (except .dec .tri .typ)"<<endl;
cout << " --<SUFFIX> write the file .<SUFFIX> where <SUFFIX> can be one of"<<endl;
cout << " cst, egn, esp, ext, gen, ht1, inv, lat, mod, msp, typ"<<endl;
cout << endl;
cout << " -B, --BigInt directly use indefinite precision arithmetic"<<endl;
cout << " --LongLong only use long long arithmetic, no conversion possible"<<endl;
cout << " -i, --ignore ignore the compute options set in the input file"<<endl;
cout << " -x=<T> limit the number of threads to <T>"<<endl;
cout << " --OutputDir=<path> set a path for the output files (relative to current directory)"<< endl;
cout << " -?, --help print this help text and exit"<<endl;
cout << " -c, --verbose verbose (prints control data)"<<endl;
cout << " --version print version info and exit"<<endl;
cout << endl;
cout << "Please report bugs to <normaliz@uos.de> or directly to our issue tracker:" << endl;
cout << "https://github.com/Normaliz/Normaliz/issues" << endl;
}
void printCopying() {
cout<<"Copyright (C) 2007-2018 The Normaliz Team, University of Osnabrueck."<<endl
<<"This program comes with ABSOLUTELY NO WARRANTY; This is free software,"<<endl
<<"and you are welcome to redistribute it under certain conditions;"<<endl
<<"See COPYING for details."<<endl;
}
void printVersion() {
cout << "Normaliz " << string(STRINGIFY(NMZ_VERSION)) << endl;
printCopying();
}
int process_data(OptionsHandler& options, const string& command_line,const string& arg0);
//---------------------------------------------------------------------------
int main(int argc, char* argv[])
{
#ifdef NMZ_GPERF
ProfilerStart("normaliz.prof");
#endif
// signal handler for interrupt
signal(SIGINT, &interrupt_signal_handler);
// read command line options
OptionsHandler options;
string command_line;
for(int i=1; i< argc;++i)
command_line=command_line+string(argv[i])+" ";
bool print_help = options.handle_commandline(argc, argv);
if (print_help) {
//printHeader();
printHelp(argv[0]);
exit(0);
}
if (verbose) {
printHeader();
}
string arg0(argv[0]);
process_data(options, command_line,arg0);
if(nmz_interrupted)
exit(10);
#ifdef NMZ_GPERF
ProfilerStop();
#endif
exit(0);
}
//---------------------------------------------------------------------------
template<typename Integer>
void compute_and_output(OptionsHandler& options, const map <Type::InputType,
vector< vector<mpq_class> > >& input, const string& polynomial, long nr_coeff_quasipol, long expansion_degree){
Output<Integer> Out; //all the information relevant for output is collected in this object
options.applyOutputOptions(Out);
options.activateDefaultMode(); // only if no real cone property is given!
Out.set_lattice_ideal_input(input.count(Type::lattice_ideal)>0);
Cone<Integer> MyCone = Cone<Integer>(input);
/* if (options.isUseBigInteger()) {
MyCone.deactivateChangeOfPrecision();
} */
MyCone.setPolynomial(polynomial);
MyCone.setNrCoeffQuasiPol(nr_coeff_quasipol);
MyCone.setExpansionDegree(expansion_degree);
MyCone.set_project(options.getProjectName());
MyCone.set_output_dir(options.getOutputDir());
// MyCone.set_nmz_call(arg0);
try {
MyCone.compute(options.getToCompute());
} catch(const NotComputableException& e) {
std::cout << "Not all desired properties could be computed." << endl;
std::cout << e.what() << endl;
std::cout << "Writing only available data." << endl;
} catch(const InterruptException& e) {
std::cout << endl;
std::cout << "Computation was interrupted." << endl;
std::cout << "Writing only available data." << endl;
}
Out.setCone(MyCone);
signal(SIGINT, SIG_DFL);
Out.write_files();
if(MyCone.isComputed(ConeProperty::IntegerHull)){
Output<Integer> IntHullOut;
options.applyOutputOptions(IntHullOut);
IntHullOut.set_name(options.getProjectName()+".IntHull");
IntHullOut.setCone(MyCone.getIntegerHullCone());
IntHullOut.write_files();
}
if(MyCone.isComputed(ConeProperty::ProjectCone)){
Output<Integer> ProjOut;
options.applyOutputOptions(ProjOut);
ProjOut.set_name(options.getProjectName()+".ProjectCone");
ProjOut.setCone(MyCone.getProjectCone());
ProjOut.write_files();
}
#ifdef NMZ_COCOA
if(MyCone.isComputed(ConeProperty::Symmetrize)){
Output<Integer> SymmOut;
options.applyOutputOptions(SymmOut);
SymmOut.set_name(options.getProjectName()+".symm");
SymmOut.setCone(MyCone.getSymmetrizedCone());
SymmOut.write_files();
}
#endif
}
//---------------------------------------------------------------------------
int process_data(OptionsHandler& options, const string& command_line,const string& arg0) {
#ifndef NCATCH
try {
#endif
if(options.getProjectName()==""){
cerr << "ERROR: No project name set!" << endl;
exit(1);
}
string name_in=options.getProjectName()+".in";
const char* file_in=name_in.c_str();
ifstream in;
in.open(file_in,ifstream::in);
if ( !in.is_open() ) {
cerr << "error: Failed to open file "<<name_in<<"."<<endl;
exit(1);
}
//read the file
string polynomial="";
long nr_coeff_quasipol=-1;
long expansion_degree=-1;
map <Type::InputType, vector< vector<mpq_class> > > input = readNormalizInput(in, options,polynomial,nr_coeff_quasipol,expansion_degree);
in.close();
if (verbose) {
cout << "------------------------------------------------------------" << endl;
cout << "Command line: " << command_line << endl;
cout << "Compute: " << options.getToCompute() << endl;
}
if(options.isUseLongLong())
compute_and_output<long long>(options, input, polynomial,nr_coeff_quasipol,expansion_degree);
else
compute_and_output<mpz_class>(options, input, polynomial,nr_coeff_quasipol,expansion_degree);
#ifndef NCATCH
} catch(const BadInputException& e) {
cerr << e.what() << endl;
cerr << "BadInputException caught... exiting." << endl;
exit(1);
} catch(const FatalException& e) {
cerr << e.what() << endl;
cerr << "FatalException caught... exiting." << endl;
exit(2);
} catch(const NmzCoCoAException& e) {
cerr << e.what() << endl;
cerr << "NmzCoCoAException caught... exiting." << endl;
exit(3);
} catch(const NormalizException& e) {
cerr << e.what() << endl;
cerr << "NormalizException caught... exiting." << endl;
exit(4);
} catch(const std::exception& e) {
cerr << "std::exception caught... \""<< e.what()<<"\" ... exiting." << endl;
exit(5);
}
#endif
return 0;
}
|