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
|
/*
* 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;
#include "Qnormaliz.h"
#include "libQnormaliz/Qinteger.h"
#include "libQnormaliz/libQnormaliz.h"
#include "libQnormaliz/Qcone.h"
#include "libQnormaliz/Qmy_omp.h"
//#include "libnormaliz/libnormaliz.cpp"
using namespace libQnormaliz;
#include "Qinput.cpp"
#include "Qoptions.cpp"
#include "Qoutput.cpp"
#ifndef STRINGIFY
#define STRINGIFYx(Token) #Token
#define STRINGIFY(Token) STRINGIFYx(Token)
#endif
void printHeader() {
cout << " \\.....|"<<endl;
cout << " QNormaliz " << string( STRINGIFY(QNMZ_VERSION) " " ,11)
<< " \\....|"<<endl;
cout << " \\...|"<<endl;
cout << " (C) The Normaliz Team, University of Osnabrueck \\..|"<<endl;
cout << " July 2018 \\.|"<<endl;
cout << " \\|"<<endl;
string optional_packages;
bool with_optional_packages;
#ifdef ENFNORMALIZ
with_optional_packages=true;
optional_packages+=" Flint antic arb e-antic";
#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 (output in file .tri)"<<endl;
cout << " -D\tcompute cone decomposition (includes -T)"<<endl;
cout << endl;
cout << " -k\tcomputation mode: keep order"<<endl;
cout << endl;
cout << " --<PROP> compute the ConeProperty <PROP>"<<endl;
cout << endl;
cout << " -f, --files write the files .out .gen .inv .cst .msp"<<endl;
cout << " -a, --all-files write all output files (except .tri)"<<endl;
cout << " --<SUFFIX> write the file .<SUFFIX> where <SUFFIX> can be one of"<<endl;
cout << " cst, esp, ext, inv, lat, msp"<<endl;
cout << 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(QNMZ_VERSION)) << endl;
printCopying();
}
template<typename Number, typename NumberField> int process_data(OptionsHandler& options, const string& command_line);
//---------------------------------------------------------------------------
int main(int argc, char* argv[])
{
// 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();
}
#ifdef ENFNORMALIZ
try {
if(verbose)
verboseOutput() << "Trying to process first with rationals..." << endl;
#endif
process_data<mpq_class, bool>(options, command_line);
if(nmz_interrupted)
exit(10);
#ifdef ENFNORMALIZ
}
catch (const NumberFieldInputException& e) {
if(verbose)
verboseOutput() << "Input specifies a number field, trying again with number field implementation..." << endl;
// input file specifies a number field
process_data<renf_elem_class, renf_class>(options, command_line);
if(nmz_interrupted)
exit(10);
}
#endif
}
//---------------------------------------------------------------------------
template<typename Number, typename NumberField> int process_data(OptionsHandler& options, const string& command_line) {
#ifndef NCATCH
try {
#endif
Output<Number, NumberField> Out; //all the information relevant for output is collected in this object
options.applyOutputOptions(Out);
string name_in=options.getOutputName()+".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
NumberField number_field;
map <QType::InputType, vector< vector<Number> > > input = readNormalizInput<Number,NumberField>(in, options, number_field);
options.activateDefaultMode(); // only if no real cone property is given!
Out.set_lattice_ideal_input(input.count(QType::lattice_ideal)>0);
in.close();
if (verbose) {
cout << "************************************************************" << endl;
cout << "Command line: " << command_line << endl;
cout << "Compute: " << options.getToCompute() << endl;
}
Cone<Number> MyCone = Cone<Number>(input);
/* long dim= (long) MyCone.getEmbeddingDim();
#ifdef _OPENMP
long max_threads=omp_get_max_threads();
if(!options.nr_threads_explicitly_set && std::getenv("OMP_NUM_THREADS")==NULL){
max_threads=min(max_threads,4*dim); // we limit the implicit number of threads
omp_set_num_threads(max_threads);
}
#endif
*/
/* if (options.isUseBigNumber()) {
MyCone.deactivateChangeOfPrecision();
} */
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);
Out.set_renf(&number_field);
Out.write_files();
if(MyCone.isComputed(QConeProperty::IntegerHull)){
Output<Number, NumberField> IntHullOut;
options.applyOutputOptions(IntHullOut);
IntHullOut.set_name(options.getOutputName()+".IntHull");
IntHullOut.setCone(MyCone.getIntegerHullCone());
IntHullOut.set_renf(&number_field);
IntHullOut.write_files();
}
#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 NumberFieldInputException& e) {
throw;
} catch(const NormalizException& e) {
cerr << e.what() << endl;
cerr << "NormalizException caught... exiting." << endl;
exit(3);
} catch(const std::exception& e) {
cerr << "std::exception caught... \""<< e.what()<<"\" ... exiting." << endl;
exit(4);
}
#endif
return 0;
}
|