git-subtree-dir: software/minizinc git-subtree-split: 4f10c82056ffcb1041d7ffef29d77a7eef92cf76
94 lines
2.7 KiB
C++
94 lines
2.7 KiB
C++
/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
|
|
|
|
/*
|
|
* Main authors:
|
|
* Guido Tack <guido.tack@monash.edu>
|
|
* Gleb Belov <gleb.belov@monash.edu>
|
|
*/
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
/* This (main) file coordinates flattening and solving.
|
|
* The corresponding modules are flexibly plugged in
|
|
* as derived classes, prospectively from DLLs.
|
|
* A flattening module should provide MinZinc::GetFlattener()
|
|
* A solving module should provide an object of a class derived from SolverFactory.
|
|
* Need to get more flexible for multi-pass & multi-solving stuff TODO
|
|
*/
|
|
|
|
#include <minizinc/solver.hh>
|
|
|
|
#include <chrono>
|
|
#include <cstdlib>
|
|
#include <ctime>
|
|
#include <fstream>
|
|
#include <iomanip>
|
|
#include <iostream>
|
|
#include <ratio>
|
|
|
|
using namespace MiniZinc;
|
|
|
|
#ifdef _WIN32
|
|
#include <minizinc/interrupt.hh>
|
|
|
|
int wmain(int argc, wchar_t* argv[], wchar_t* envp[]) {
|
|
InterruptListener::run();
|
|
#else
|
|
int main(int argc, const char** argv) {
|
|
#endif
|
|
Timer starttime;
|
|
bool fSuccess = false;
|
|
|
|
try {
|
|
MznSolver slv(std::cout, std::cerr);
|
|
try {
|
|
std::vector<std::string> args(argc - 1);
|
|
#ifdef _WIN32
|
|
for (int i = 1; i < argc; i++) {
|
|
args[i - 1] = FileUtils::wide_to_utf8(argv[i]);
|
|
}
|
|
fSuccess = (slv.run(args, "", FileUtils::wide_to_utf8(argv[0])) != SolverInstance::ERROR);
|
|
#else
|
|
for (int i = 1; i < argc; i++) {
|
|
args[i - 1] = argv[i];
|
|
}
|
|
fSuccess = (slv.run(args, "", argv[0]) != SolverInstance::ERROR);
|
|
#endif
|
|
} catch (const LocationException& e) {
|
|
if (slv.getFlagVerbose()) {
|
|
std::cerr << std::endl;
|
|
}
|
|
std::cerr << e.loc() << ":" << std::endl;
|
|
std::cerr << e.what() << ": " << e.msg() << std::endl;
|
|
} catch (const Exception& e) {
|
|
if (slv.getFlagVerbose()) {
|
|
std::cerr << std::endl;
|
|
}
|
|
std::string what = e.what();
|
|
std::cerr << what << (what.empty() ? "" : ": ") << e.msg() << std::endl;
|
|
} catch (const std::exception& e) {
|
|
if (slv.getFlagVerbose()) {
|
|
std::cerr << std::endl;
|
|
}
|
|
std::cerr << e.what() << std::endl;
|
|
} catch (...) {
|
|
if (slv.getFlagVerbose()) {
|
|
std::cerr << std::endl;
|
|
}
|
|
std::cerr << " UNKNOWN EXCEPTION." << std::endl;
|
|
}
|
|
|
|
if (slv.getFlagVerbose()) {
|
|
std::cerr << " Done (";
|
|
std::cerr << "overall time " << starttime.stoptime() << ")." << std::endl;
|
|
}
|
|
return static_cast<int>(!fSuccess);
|
|
} catch (const Exception& e) {
|
|
std::string what = e.what();
|
|
std::cerr << what << (what.empty() ? "" : ": ") << e.msg() << std::endl;
|
|
std::exit(EXIT_FAILURE);
|
|
}
|
|
} // int main()
|