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
|
/* normalize.cpp -- Compute a Hilbert basis of a cone, as introduced by NORMALIZ
Copyright 2007, 2008, 2009 Matthias Koeppe
This file is part of LattE.
LattE is free software; you can redistribute it and/or modify it
under the terms of the version 2 of the GNU General Public License
as published by the Free Software Foundation.
LattE 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 LattE; if not, write to the Free Software Foundation,
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
*/
#include <cstdio>
#include <iostream>
#include <string>
#include <sstream>
#include <cctype>
#include <climits>
#include <vector>
#include <set>
#include <list>
#include <functional>
#include <unistd.h>
#include "print.h"
#include "triangulation/triangulate.h"
#include "dual.h"
#include "latte_cddlib.h"
#include "latte_4ti2.h"
#include "latte_4ti2_zsolve.h"
#include "timing.h"
#include "ReadSubcones.h"
#include "ReadLatteStyle.h"
#include "vertices/cdd.h"
#include "genFunction/piped.h"
#include "normalize/ReductionTest.h"
// from 4ti2:
#include "groebner/Globals.h"
// from 4ti2 zsolve:
#include "zsolve/Options.h"
#include "zsolve/DefaultController.hpp"
using namespace std;
string hil_filename;
IncrementalVectorFileWriter *hil_file_writer = NULL;
ReductionTest *reduction_test = NULL;
string filename;
string subcones_filename;
ofstream stats;
BarvinokParameters params;
int max_facets = INT_MAX;
volatile int verbosity = 1;
ZZ max_determinant_for_enumeration;
// Keeping track of the Hilbert basis candidates, to avoid duplicates
std::set < vector<int> > known_hilbert_vectors;
static bool insert_hilbert_basis_element(const vector<int> &v)
{
std::set<vector<int> >::const_iterator where = known_hilbert_vectors.find(v);
if (where == known_hilbert_vectors.end()) {
if (!reduction_test->IsReducible(v)) {
// Not known yet, so add it and print it.
known_hilbert_vectors.insert(v);
hil_file_writer->WriteVector(v);
return true;
}
}
return false;
}
static bool insert_hilbert_basis_element(const int *vec)
{
static vector<int> *v = NULL;
int numOfVars = params.Number_of_Variables;
if (v == NULL) v = new vector<int>(numOfVars);
int i;
for (i = 0; i<numOfVars; i++) {
(*v)[i] = vec[i];
}
return insert_hilbert_basis_element(*v);
}
// Computing (supersets) of Hilbert bases using LattE's enumeration
// of the fundamental parallelepiped.
static void
enumerate_simplicial_cone_with_latte(listCone *cone)
{
int numOfVars = params.Number_of_Variables;
listVector* points = pointsInParallelepiped(cone, numOfVars, ¶ms);
//printListVector(points, numOfVars);
vector<int> v(numOfVars);
bool any_new = false;
listVector *point;
for (point = points; point != NULL; point = point->rest) {
int i;
for (i = 0; i<numOfVars; i++) {
v[i] = convert_ZZ_to_int(point->first[i]);
}
if (insert_hilbert_basis_element(v))
any_new = true;
}
freeListVector(points);
if (any_new)
hil_file_writer->UpdateNumVectors();
}
// The recursive decomposition and Hilbert basis computation.
class RecursiveNormalizer : public ConeConsumer {
public:
int t_count;
int t_level;
int t_total;
RecursiveNormalizer(int level) : t_count(0), t_level(level), t_total(0) {};
int ConsumeCone(listCone *cone);
void SetNumCones(size_t num_cones) { t_total = num_cones; }
};
static void
handle_cone(listCone *t, int t_count, int t_total, int level);
int
RecursiveNormalizer::ConsumeCone(listCone *cone)
{
t_count++;
handle_cone(cone, t_count, t_total, t_level);
freeCone(cone);
return 1; /* OK */
}
bool
cone_unimodular(listCone *cone, int numOfVars)
{
int i;
listVector *rays;
mat_ZZ Mat;
Mat.SetDims(numOfVars, numOfVars);
rays=cone->rays;
for(i = 0; i < numOfVars; i++) {
Mat[i] = rays->first;
rays = rays -> rest;
}
ZZ d = determinant(Mat);
return abs(d) == 1;
}
struct ZSolveTimeLimitReached {};
template <typename T> class NormalizController
: public _4ti2_zsolve_::DefaultController <T>
{
double time_limit;
public:
NormalizController (std::ostream* console, std::ofstream* log,
const _4ti2_zsolve_::Options& options,
double a_time_limit)
: _4ti2_zsolve_::DefaultController <T> (console, log, options),
time_limit(a_time_limit) {}
void log_status (size_t variable, const T& sum, const T& max_sum,
const T& norm, size_t vectors, int backup_frequency,
_4ti2_zsolve_::Timer& timer)
{
if (time_limit != 0.0 && timer.get_elapsed_time() > time_limit) {
ZSolveTimeLimitReached reached;
throw reached;
}
}
};
int zsolve_time_limit = 0;
static void
handle_cone(listCone *t, int t_count, int t_total, int level)
{
params.Number_of_Variables = t->rays->first.length();
if (hil_file_writer == NULL) {
hil_file_writer
= new IncrementalVectorFileWriter(hil_filename, params.Number_of_Variables);
hil_file_writer->UpdateNumVectors();
}
int num_rays = lengthListVector(t->rays);
if (num_rays == params.Number_of_Variables
&& cone_unimodular(t, params.Number_of_Variables)) return;
int num_facets;
int dimension = t->rays->first.length();
Timer dualization_time("dualization", /*start_timer:*/ false);
Timer zsolve_time("zsolve", /*start_timer:*/ false);
if (verbosity > 0) {
cerr << "### " << "Level " << level << ": "
<< "Cone " << t_count << " of at most " << t_total << ": "
<< num_rays << " rays "
<< "(dim " << dimension << ")";
cerr.flush();
}
//printCone(t, params.Number_of_Variables);
/* Compute the facets of the cone. */
dualization_time.start();
dualizeCone(t, params.Number_of_Variables, ¶ms); // computes and swaps
dualizeCone(t, params.Number_of_Variables, ¶ms); // just swaps back
dualization_time.stop();
num_facets = lengthListVector(t->facets);
if (verbosity > 0) {
if (t->determinant != 0)
cerr << ", determinant " << abs(t->determinant);
cerr << ", " << num_facets << " facets; "
<< dualization_time;
}
#if 0
string current_cone_filename = filename + ".current_cone.triang";
{
ofstream current_cone_file(current_cone_filename.c_str());
printConeToFile(current_cone_file, t, params.Number_of_Variables);
}
#endif
stats << level << "\t" << t_count << "\t"
<< num_rays << "\t" << num_facets << "\t"
<< t->determinant << "\t"
<< dualization_time.get_seconds() << "\t";
if (abs(t->determinant) == 1) {
// simplicial, unimodular cone: Do nothing.
stats << endl;
}
else if (num_rays == params.Number_of_Variables
&& abs(t->determinant) < max_determinant_for_enumeration) {
if (verbosity > 0) {
cerr << "Enumerating fundamental parallelepiped..." << flush;
}
enumerate_simplicial_cone_with_latte(t);
if (verbosity > 0) {
cerr << endl;
stats << endl;
}
}
else if (num_facets < max_facets) {
// Use zsolve to compute the Hilbert basis.
int cone_dimension = params.Number_of_Variables - lengthListVector(t->equalities);
//printCone(t, params.Number_of_Variables);
_4ti2_zsolve_::LinearSystem<int> *ls
= facets_to_4ti2_zsolve_LinearSystem(t->facets, t->equalities, params.Number_of_Variables);
//printLinearSystem(ls);
// FIXME: Lame.
optind = 1; // getopt should parse from the beginning.
int argc = 3;
char *argv[3] = {(char*) "embedded_zsolve", (char*) "-q", (char*) "normalize_aux"};
_4ti2_zsolve_::Options options(argc, argv);
_4ti2_zsolve_::DefaultController<int> * controller
= new NormalizController<int>(&std::cout, NULL, options,
zsolve_time_limit);
_4ti2_zsolve_::Algorithm<int> *zsolve_algo
= new _4ti2_zsolve_::Algorithm<int> (ls, controller);
delete ls;
try {
zsolve_time.start();
zsolve_algo->compute (/* backup_frequency: */ 0);
zsolve_time.stop();
_4ti2_zsolve_::VectorArray <int> inhoms (zsolve_algo->get_result_variables ());
_4ti2_zsolve_::VectorArray <int> homs (zsolve_algo->get_result_variables ());
_4ti2_zsolve_::VectorArray <int> free (zsolve_algo->get_result_variables ());
zsolve_algo->extract_zsolve_results (inhoms, homs, free);
if (verbosity >= 2) {
cout << "Inhoms: " << endl << inhoms;
cout << "Homs: " << endl << homs;
cout << "Frees: " << endl << free;
}
int num_hilberts = homs.vectors();
if (verbosity > 0) {
cerr << num_hilberts << " Hilbert basis elements; "
<< zsolve_time;
}
if (num_hilberts < cone_dimension) {
// Sanity check.
cerr << "Too few Hilbert basis elements " << endl;
printCone(t, params.Number_of_Variables);
_4ti2_zsolve_::LinearSystem<int> *ls
= facets_to_4ti2_zsolve_LinearSystem(t->facets, t->equalities, params.Number_of_Variables);
cout << *ls;
fprintf(stdout, "%zu %zu\n\n", homs.vectors() + free.vectors(), homs.variables());
cout << homs;
cout << free;
abort();
}
//fprintVectorArray(output, ctx->Homs, false);
//fprintVectorArray(output, ctx->Frees, false);
size_t i;
bool any_new = false;
for (i = 0; i<homs.vectors(); i++) {
if (insert_hilbert_basis_element(homs[i])) any_new = true;
}
if (any_new)
hil_file_writer->UpdateNumVectors();
delete zsolve_algo;
delete controller;
stats << zsolve_time.get_seconds() << "\t"
<< num_hilberts << endl;
}
catch (ZSolveTimeLimitReached) {
/* The timelimit was reached. */
zsolve_time.stop();
stats << zsolve_time.get_seconds() << endl;
delete zsolve_algo;
delete controller;
if (verbosity > 0) {
cerr << "Spent too much time in zsolve, subdividing..." << endl;
}
RecursiveNormalizer rec(level + 1);
triangulateCone(t, params.Number_of_Variables, ¶ms, rec);
}
}
else {
stats << endl;
if (verbosity > 0) {
cerr << "Too many facets, subdividing..." << endl;
}
RecursiveNormalizer rec(level + 1);
triangulateCone(t, params.Number_of_Variables, ¶ms, rec);
}
}
static void open_output_and_stats()
{
string base_filename = filename;
if (subcones_filename.length() > 0) {
base_filename += "--subcones-";
size_t slash = subcones_filename.rfind('/');
if (slash == string::npos)
base_filename += subcones_filename;
else
base_filename += subcones_filename.substr(slash + 1);
}
hil_filename = base_filename + ".hil";
if (verbosity > 0) {
cerr << "Output goes to file `" << hil_filename << "'..." << endl;
}
string stats_filename = base_filename + ".stats";
if (verbosity > 0) {
cerr << "Cone statistics go to file `" << stats_filename << "'..." << endl;
}
stats.open(stats_filename.c_str());
if (!stats.good()) {
cerr << "Cannot write to file `" << stats_filename << "'..." << endl;
exit(1);
}
stats << "# Level\tIndex\tRays\tFacets\tDet\tDualize\tZSolve\tHilberts" << endl;
// Redirect 4ti2/qsolve output.
string fortytwolog_filename = "/dev/null"; //filename + ".4ti2log";
static ofstream fortytwolog(fortytwolog_filename.c_str());
_4ti2_::out = &fortytwolog;
}
static void
close_output_and_stats()
{
stats.close();
}
static listCone *
read_cone_cdd_format(const string &filename)
{
FILE *in = fopen(filename.c_str(), "r");
if (in == NULL) {
cerr << "hilbert-from-rays: Unable to open CDD-style input file " << filename << endl;
exit(1);
}
dd_MatrixPtr M;
dd_ErrorType err=dd_NoError;
M = dd_PolyFile2Matrix(in, &err);
if (err!=dd_NoError) {
cerr << "hilbert-from-rays: Parse error in CDD-style input file " << filename << endl;
exit(1);
}
listCone *cone = cddlib_matrix_to_cone(M);
dd_FreeMatrix(M);
return cone;
}
static listCone *
read_cone_4ti2_format(const string &filename)
{
dd_MatrixPtr M = ReadLatteStyleMatrix(filename.c_str(), /*vrep:*/true, /*homogenize:*/true);
listCone *cone = cddlib_matrix_to_cone(M);
dd_FreeMatrix(M);
return cone;
}
ReductionTestFactory reduction_test_factory;
static void
usage()
{
cerr << "usage: hilbert-from-rays [OPTIONS] { CDD-EXT-FILE.ext | LATTE-TRIANG-FILE.triang | 4TI2-STYLE-FILE.{rays,tra} } " << endl;
cerr << "Options are: " << endl
<< " --dualization={cdd,4ti2}" << endl;
show_standard_triangulation_options(cerr);
cerr << " --nonsimplicial-subdivision [Default]" << endl
<< " --max-facets=N Subdivide further if more than N facets" << endl
<< " --zsolve-time-limit=SECONDS Subdivide further if computation of Hilbert" << endl
<< " basis took longer than this number of seconds." << endl
<< " --quiet Do not show much output." << endl
<< " Signals USR1 and USR2 can be used to control verbosity." << endl
<< " --no-triang-file Do not create a .triang file" << endl
<< " --subcones=INPUT-FILE.subcones Read list of subcone indicators to handle" << endl
<< " --output-subcones=OUTPUT-FILE.subcones Write a list of toplevel subcones" << endl
<< " --only-triangulate Only triangulate, don't normalize" << endl
<< " --no-initial-triangulation Don't compute an initial triangulation," << endl
<< " start recursive normalizer on input." << endl
<< " --triangulation-height-vector=4TI2-ROWVECTOR-FILE Use this vector as a height vector." << endl
<< " --triangulation-pull-rays=INDEX,... Pull the rays that have these (1-based) indices." << endl
<< " --max-determinant-for-enumeration=NUMBER Do not attempt to enumerate the lattice points of" << endl
<< " the fundamental parallelepiped of simplicial cones" << endl
<< " that have a larger determinant than this." << endl
<< " (Default: Do not enumerate it at all, always use zsolve.)" << endl;
reduction_test_factory.show_options(cerr);
}
static void check_stream(const istream &f, const char *fileName, const char *proc)
{
if (!f.good()) {
cerr << "Read error on input file " << fileName << " in " << proc << "." << endl;
exit(1);
}
};
static vec_ZZ *
read_4ti2_vector(const char *filename)
{
ifstream f(filename);
check_stream(f, filename, "read_4ti2_vector");
int num_vectors, dimension;
f >> num_vectors >> dimension;
check_stream(f, filename, "read_4ti2_vector");
if (num_vectors != 1) {
cerr << "Too many vectors (rows) in file " << filename
<< "; it is supposed to contain only one vector."
<< endl;
exit(1);
}
int i;
vec_ZZ *result = new vec_ZZ;
result->SetLength(dimension);
for (i = 0; i<dimension; i++) {
f >> (*result)[i];
check_stream(f, filename, "read_4ti2_vector");
}
return result;
}
static list<int> *
sscan_comma_separated_list(const char *s)
{
list<int> *result = new list<int>;
string csl = s;
std::istringstream f(csl);
while (f.good()) {
int a;
f >> a;
result->push_back(a);
if (f.eof()) break;
char c;
f >> c;
if (c != ',') {
cerr << "Expected comma-separated list of integers" << endl;
exit(1);
}
}
return result;
}
static vec_ZZ *
height_vector_from_pull_list(const listVector *rays, const list<int> * pull_list)
{
vec_ZZ *result = new vec_ZZ;
int num_rays = lengthListVector(rays);
result->SetLength(num_rays);
list<int>::const_iterator i;
ZZ height;
height = 1;
if (pull_list->size() > 1) {
/* FIXME: lame lexicography */
cerr << "Warning: I am using lame lexicography here." << endl;
}
for (i = pull_list->begin(); i != pull_list->end(); ++i) {
int index = *i;
if (index <= 0 || index > num_rays) {
cerr << "Index out of range: " << index << endl;
exit(1);
}
(*result)[index - 1] = height;
height *= 1000;
}
return result;
}
#include <signal.h>
static void increase_verbosity(int sig)
{
verbosity++;
cerr << "Increased verbosity to " << verbosity << endl;
}
static void decrease_verbosity(int sig)
{
verbosity--;
cerr << "Decreased verbosity to " << verbosity << endl;
}
void install_verbosity_control_signal_handlers()
{
sigset(SIGUSR1, increase_verbosity);
sigset(SIGUSR2, decrease_verbosity);
}
class SubconeAndTrivialSubconePrintingConeConsumer : public ConeConsumer {
public:
SubconePrintingConeConsumer nontrivial_consumer;
SubconePrintingConeConsumer trivial_consumer;
SubconeAndTrivialSubconePrintingConeConsumer(const listCone *master_cone,
const std::string &nontrivial_filename,
const std::string &trivial_filename)
: nontrivial_consumer(master_cone, nontrivial_filename),
trivial_consumer(master_cone, trivial_filename) {}
int ConsumeCone(listCone *cone)
{
if (cone->index_hint >= 0) // Generated by ReadSubCones
return trivial_consumer.ConsumeCone(cone);
else
return nontrivial_consumer.ConsumeCone(cone);
}
};
int normalize_main(int argc, char **argv)
{
install_verbosity_control_signal_handlers();
if (argc < 2) {
usage();
exit(1);
}
listCone *cone;
bool create_triang_file = true;
bool have_subcones = false;
string output_subcones_filename;
bool have_output_subcones = false;
string output_trivial_subcones_filename;
bool have_output_trivial_subcones = false;
bool normalize = true;
bool triangulate_toplevel = true;
list<int> *triangulation_pull_rays = NULL;
params.triangulation = BarvinokParameters::RegularTriangulationWith4ti2;
params.dualization = BarvinokParameters::DualizationWith4ti2;
params.nonsimplicial_subdivision = true;
max_determinant_for_enumeration = -1; // By default, don't use enumeration
{
int i;
for (i = 1; i<argc; i++) {
if (parse_standard_triangulation_option(argv[i], ¶ms)) {}
else if (parse_standard_dualization_option(argv[i], ¶ms)) {}
else if (reduction_test_factory.parse_option(argv[i])) {}
else if (strncmp(argv[i], "--max-facets=", 13) == 0) {
max_facets = atoi(argv[i] + 13);
}
else if (strcmp(argv[i], "--quiet") == 0) {
verbosity = 0;
}
else if (strcmp(argv[i], "--no-triang-file") == 0) {
create_triang_file = false;
}
else if (strncmp(argv[i], "--zsolve-time-limit=", 20) == 0) {
zsolve_time_limit = atoi(argv[i] + 20);
}
else if (strncmp(argv[i], "--subcones=", 11) == 0) {
subcones_filename = string(argv[i] + 11);
have_subcones = true;
}
else if (strncmp(argv[i], "--triangulation-height-vector=", 30) == 0) {
params.triangulation_prescribed_height_data
= new prescribed_height_data;
params.triangulation_prescribed_height_data->special_heights = read_4ti2_vector(argv[i] + 30);
params.triangulation_prescribed_height_data->special_rays = NULL;
}
else if (strncmp(argv[i], "--triangulation-pull-rays=", 26) == 0) {
params.triangulation_prescribed_height_data
= new prescribed_height_data;
triangulation_pull_rays = sscan_comma_separated_list(argv[i] + 26);
}
else if (strncmp(argv[i], "--output-subcones=", 18) == 0) {
output_subcones_filename = string(argv[i] + 18);
have_output_subcones = true;
}
else if (strncmp(argv[i], "--output-trivial-subcones=", 26) == 0) {
output_trivial_subcones_filename = string(argv[i] + 26);
have_output_trivial_subcones = true;
}
else if (strncmp(argv[i], "--only-triangulate", 6) == 0) {
normalize = false;
}
else if (strncmp(argv[i], "--no-initial-triangulation", 12) == 0) {
triangulate_toplevel = false;
}
else if (strncmp(argv[i], "--max-determinant-for-enumeration=", 34) == 0) {
string s(argv[i] + 34);
std::istringstream f(s);
f >> max_determinant_for_enumeration;
if (f.bad()) {
cerr << "Expected integer for --max-determinant-for-enumeration, got " << s << endl;
exit(1);
}
}
else if (strncmp(argv[i], "--help", 6) == 0) {
usage();
exit(0);
}
else if (strncmp(argv[i], "--", 2) == 0) {
cerr << "Unknown option " << argv[i] << endl;
exit(1);
}
else if (i == argc-1) {
filename = argv[i];
}
else {
cerr << "Unexpected argument " << argv[i] << endl;
exit(1);
}
}
}
if (verbosity > 0)
cerr << "This is hilbert-from-rays, a part of LattE/4ti2." << endl;
if (normalize)
reduction_test = reduction_test_factory.CreateReductionTest();
if (filename.length() == 0) {
cerr << "Missing input filename" << endl;
exit(1);
}
string triang_filename;
// Input handling.
ConeProducer *producer = NULL;
if (strlen(filename.c_str()) > 7
&& strcmp(filename.c_str() + strlen(filename.c_str()) - 7, ".triang") == 0) {
if (have_subcones) {
cerr << "Cannot use both a triangulation file and a subcones file." << endl;
exit(1);
}
triang_filename = filename;
producer = new ListConeReadingConeProducer(filename);
triangulate_toplevel = false;
}
else {
// Read a cone.
if (strlen(filename.c_str()) > 4 && strcmp(filename.c_str() + strlen(filename.c_str()) - 4, ".ext") == 0) {
/* Input in CDD format. */
cone = read_cone_cdd_format(filename);
}
else {
/* Try to read a 4ti2-style file. */
if (verbosity > 0)
cerr << "Trying to read `" << filename << "' as a list of rays in 4ti2-style format." << endl;
cone = read_cone_4ti2_format(filename);
}
params.Number_of_Variables = cone->rays->first.length();
if (have_subcones) {
// Also a subcones file given.
producer = new SubconeReadingConeProducer(cone, subcones_filename);
}
else {
producer = new SingletonConeProducer(copyCone(cone));
}
}
if (params.triangulation_prescribed_height_data) {
params.triangulation_prescribed_height_data->special_rays
= copyListVector(cone->rays);
if (triangulation_pull_rays) {
params.triangulation_prescribed_height_data->special_heights
= height_vector_from_pull_list(params.triangulation_prescribed_height_data->special_rays,
triangulation_pull_rays);
}
if (lengthListVector(params.triangulation_prescribed_height_data->special_rays)
!= (*params.triangulation_prescribed_height_data->special_heights).length()) {
cerr << "Lengths of prescribed height vector and number of rays of master cone do not match."
<< endl;
exit(1);
}
if (verbosity > 0) {
cerr << "Using prescribed height vector: "
<< *params.triangulation_prescribed_height_data->special_heights << endl;
}
#if 0
cerr << "for rays: " << endl;
printListVector(params.triangulation_prescribed_height_data->special_rays, params.Number_of_Variables);
#endif
}
producer = compose(producer, new ProgressPrintingConeTransducer);
params.triangulation_assume_fulldim = false;
if (triangulate_toplevel) {
// Send input cones through triangulation.
ConeTransducer *triangulator = new TriangulatingConeTransducer(¶ms);
producer = compose(producer, triangulator);
}
// Computation handling.
if (triangulate_toplevel) {
if (have_output_subcones) {
// Create a subcones file, then read it back in again one-by-one
// and feed it to the normalizer.
size_t num_cones;
if (have_output_trivial_subcones) {
if (normalize) {
cerr << "--output-trivial-subcones only supported with --triangulate-only" << endl;
exit(1);
}
SubconeAndTrivialSubconePrintingConeConsumer writer(cone,
output_subcones_filename,
output_trivial_subcones_filename);
producer->Produce(writer);
if (verbosity > 0) {
cerr << "Printed triangulation to subcones file `" << output_subcones_filename << "'." << endl;
}
}
else {
SubconePrintingConeConsumer subcone_file_writer(cone,
output_subcones_filename);
num_cones = subcone_file_writer.cone_count;
producer->Produce(subcone_file_writer);
delete producer;
producer = new SubconeReadingConeProducer(cone, output_subcones_filename, num_cones);
}
}
else if (create_triang_file) {
// Create a .triang file, then read it back in again one-by-one
// and feed it to the normalizer.
size_t num_cones;
triang_filename = filename + ".triang";
{
PrintingConeConsumer triang_file_writer(triang_filename);
producer->Produce(triang_file_writer);
num_cones = triang_file_writer.cone_count;
if (verbosity > 0)
cerr << "Printed triangulation to file `" << triang_filename << "'." << endl;
}
producer = new ListConeReadingConeProducer(triang_filename, num_cones);
}
}
if (normalize) {
// Feed cones one-by-one to the normalizer.
open_output_and_stats();
RecursiveNormalizer normalizer(/*level:*/ 1);
producer->Produce(normalizer);
if (hil_file_writer) {
// Update the number of vectors, close the file.
delete hil_file_writer;
hil_file_writer = NULL;
}
delete reduction_test;
}
if (params.num_triangulations > 0) {
cerr << "Computed " << params.num_triangulations << " subdivisions ("
<< params.num_triangulations_with_trivial_heights << " trivial heights, "
<< params.num_triangulations_with_dependent_heights << " dependent heights, "
<< params.num_triangulations - (params.num_triangulations_with_trivial_heights + params.num_triangulations_with_dependent_heights)
<< " non-trivial non-dependent heights)"
<< endl;
}
stats.close();
return 0;
}
int normalize_commandline(char *command)
{
// Silly tokenizer for a command line
int argc;
char **argv = (char**) malloc(sizeof(char *) * 100);
argv[0] = strtok(command, " ");
for (argc = 1; (argv[argc] = strtok(NULL, " ")) != NULL; argc++);
int retval = normalize_main(argc, argv);
free(argv);
return retval;
}
|