Generated on Thu Mar 22 10:39:31 2012 for Gecode by doxygen 1.6.3

flatzinc.hh

Go to the documentation of this file.
00001 /* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
00002 /*
00003  *  Main authors:
00004  *     Guido Tack <tack@gecode.org>
00005  *
00006  *  Copyright:
00007  *     Guido Tack, 2007
00008  *
00009  *  Last modified:
00010  *     $Date: 2012-03-21 06:25:08 +0100 (Wed, 21 Mar 2012) $ by $Author: tack $
00011  *     $Revision: 12605 $
00012  *
00013  *  This file is part of Gecode, the generic constraint
00014  *  development environment:
00015  *     http://www.gecode.org
00016  *
00017  *  Permission is hereby granted, free of charge, to any person obtaining
00018  *  a copy of this software and associated documentation files (the
00019  *  "Software"), to deal in the Software without restriction, including
00020  *  without limitation the rights to use, copy, modify, merge, publish,
00021  *  distribute, sublicense, and/or sell copies of the Software, and to
00022  *  permit persons to whom the Software is furnished to do so, subject to
00023  *  the following conditions:
00024  *
00025  *  The above copyright notice and this permission notice shall be
00026  *  included in all copies or substantial portions of the Software.
00027  *
00028  *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
00029  *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
00030  *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
00031  *  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
00032  *  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
00033  *  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
00034  *  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
00035  *
00036  */
00037 
00038 #ifndef __GECODE_FLATZINC_HH__
00039 #define __GECODE_FLATZINC_HH__
00040 
00041 #include <iostream>
00042 
00043 #include <gecode/kernel.hh>
00044 #include <gecode/int.hh>
00045 #ifdef GECODE_HAS_SET_VARS
00046 #include <gecode/set.hh>
00047 #endif
00048 
00049 #include <map>
00050 
00051 /*
00052  * Support for DLLs under Windows
00053  *
00054  */
00055 
00056 #if !defined(GECODE_STATIC_LIBS) && \
00057     (defined(__CYGWIN__) || defined(__MINGW32__) || defined(_MSC_VER))
00058 
00059 #ifdef GECODE_BUILD_FLATZINC
00060 #define GECODE_FLATZINC_EXPORT __declspec( dllexport )
00061 #else
00062 #define GECODE_FLATZINC_EXPORT __declspec( dllimport )
00063 #endif
00064 
00065 #else
00066 
00067 #ifdef GECODE_GCC_HAS_CLASS_VISIBILITY
00068 
00069 #define GECODE_FLATZINC_EXPORT __attribute__ ((visibility("default")))
00070 
00071 #else
00072 
00073 #define GECODE_FLATZINC_EXPORT
00074 
00075 #endif
00076 #endif
00077 
00078 // Configure auto-linking
00079 #ifndef GECODE_BUILD_FLATZINC
00080 #define GECODE_LIBRARY_NAME "FlatZinc"
00081 #include <gecode/support/auto-link.hpp>
00082 #endif
00083 
00084 #include <gecode/driver.hh>
00085 
00086 #include <gecode/flatzinc/conexpr.hh>
00087 #include <gecode/flatzinc/ast.hh>
00088 #include <gecode/flatzinc/varspec.hh>
00089 
00099 namespace Gecode { namespace FlatZinc {
00100 
00105   class GECODE_FLATZINC_EXPORT Printer {
00106   private:
00107     AST::Array* _output;
00108     void printElem(std::ostream& out,
00109                    AST::Node* ai,
00110                    const Gecode::IntVarArray& iv,
00111                    const Gecode::BoolVarArray& bv
00112 #ifdef GECODE_HAS_SET_VARS
00113                    ,
00114                    const Gecode::SetVarArray& sv
00115 #endif
00116                    ) const;
00117   public:
00118     Printer(void) : _output(NULL) {}
00119     void init(AST::Array* output);
00120 
00121     void print(std::ostream& out,
00122                const Gecode::IntVarArray& iv,
00123                const Gecode::BoolVarArray& bv
00124 #ifdef GECODE_HAS_SET_VARS
00125                ,
00126                const Gecode::SetVarArray& sv
00127 #endif
00128                ) const;
00129   
00130     ~Printer(void);
00131     
00132     void shrinkElement(AST::Node* node,
00133                        std::map<int,int>& iv, std::map<int,int>& bv, 
00134                        std::map<int,int>& sv);
00135 
00136     void shrinkArrays(Space& home,
00137                       int& optVar,
00138                       Gecode::IntVarArray& iv,
00139                       Gecode::BoolVarArray& bv
00140 #ifdef GECODE_HAS_SET_VARS
00141                       ,
00142                       Gecode::SetVarArray& sv
00143 #endif
00144                      );
00145     
00146   private:
00147     Printer(const Printer&);
00148     Printer& operator=(const Printer&);
00149   };
00150 
00155   class FlatZincOptions : public Gecode::BaseOptions {
00156   protected:
00158 
00159       Gecode::Driver::UnsignedIntOption _solutions; 
00160       Gecode::Driver::BoolOption        _allSolutions; 
00161       Gecode::Driver::DoubleOption      _threads;   
00162       Gecode::Driver::BoolOption        _free; 
00163       Gecode::Driver::StringOption      _search; 
00164       Gecode::Driver::UnsignedIntOption _c_d;       
00165       Gecode::Driver::UnsignedIntOption _a_d;       
00166       Gecode::Driver::UnsignedIntOption _node;      
00167       Gecode::Driver::UnsignedIntOption _fail;      
00168       Gecode::Driver::UnsignedIntOption _time;      
00169       Gecode::Driver::IntOption         _seed;      
00170 
00171     
00173 
00174       Gecode::Driver::StringOption      _mode;       
00175       Gecode::Driver::BoolOption        _stat;       
00176       Gecode::Driver::StringValueOption _output;     
00177 
00178   public:
00179     enum SearchOptions {
00180       FZ_SEARCH_BAB,    //< Branch-and-bound search
00181       FZ_SEARCH_RESTART //< Restart search
00182     };
00184     FlatZincOptions(const char* s)
00185     : Gecode::BaseOptions(s),
00186       _solutions("-n","number of solutions (0 = all)",1),
00187       _allSolutions("-a", "return all solutions (equal to -solutions 0)"),
00188       _threads("-p","number of threads (0 = #processing units)",
00189                Gecode::Search::Config::threads),
00190       _free("--free", "no need to follow search-specification"),
00191       _search("-search","search engine variant", FZ_SEARCH_BAB),
00192       _c_d("-c-d","recomputation commit distance",Gecode::Search::Config::c_d),
00193       _a_d("-a-d","recomputation adaption distance",Gecode::Search::Config::a_d),
00194       _node("-node","node cutoff (0 = none, solution mode)"),
00195       _fail("-fail","failure cutoff (0 = none, solution mode)"),
00196       _time("-time","time (in ms) cutoff (0 = none, solution mode)"),
00197       _seed("-r","random seed",0),
00198       _mode("-mode","how to execute script",Gecode::SM_SOLUTION),
00199       _stat("-s","emit statistics"),
00200       _output("-o","file to send output to") {
00201 
00202       _search.add(FZ_SEARCH_BAB, "bab");
00203       _search.add(FZ_SEARCH_RESTART, "restart");
00204       _mode.add(Gecode::SM_SOLUTION, "solution");
00205       _mode.add(Gecode::SM_STAT, "stat");
00206       _mode.add(Gecode::SM_GIST, "gist");
00207       add(_solutions); add(_threads); add(_c_d); add(_a_d);
00208       add(_allSolutions);
00209       add(_free);
00210       add(_search);
00211       add(_node); add(_fail); add(_time);
00212       add(_seed);
00213       add(_mode); add(_stat);
00214       add(_output);
00215     }
00216 
00217     void parse(int& argc, char* argv[]) {
00218       Gecode::BaseOptions::parse(argc,argv);
00219       if (_allSolutions.value()) {
00220         _solutions.value(0);
00221       }
00222       if (_stat.value())
00223         _mode.value(Gecode::SM_STAT);
00224     }
00225   
00226     virtual void help(void) {
00227       std::cerr << "Gecode FlatZinc interpreter" << std::endl
00228                 << " - Supported FlatZinc version: " << GECODE_FLATZINC_VERSION
00229                 << std::endl << std::endl;
00230       Gecode::BaseOptions::help();
00231     }
00232   
00233     unsigned int solutions(void) const { return _solutions.value(); }
00234     bool allSolutions(void) const { return _allSolutions.value(); }
00235     double threads(void) const { return _threads.value(); }
00236     bool free(void) const { return _free.value(); }
00237     SearchOptions search(void) const {
00238       return static_cast<SearchOptions>(_search.value());
00239     }
00240     unsigned int c_d(void) const { return _c_d.value(); }
00241     unsigned int a_d(void) const { return _a_d.value(); }
00242     unsigned int node(void) const { return _node.value(); }
00243     unsigned int fail(void) const { return _fail.value(); }
00244     unsigned int time(void) const { return _time.value(); }
00245     int seed(void) const { return _seed.value(); }
00246     const char* output(void) const { return _output.value(); }
00247     Gecode::ScriptMode mode(void) const {
00248       return static_cast<Gecode::ScriptMode>(_mode.value());
00249     }
00250   };
00251 
00256   class GECODE_FLATZINC_EXPORT FlatZincSpace : public Space {
00257   public:
00258     enum Meth {
00259       SAT, //< Solve as satisfaction problem
00260       MIN, //< Solve as minimization problem
00261       MAX  //< Solve as maximization problem
00262     };
00263   protected:
00265     int intVarCount;
00267     int boolVarCount;
00269     int setVarCount;
00270 
00272     int _optVar;
00273   
00275     Meth _method;
00276     
00278     AST::Array* _solveAnnotations;
00279 
00281     FlatZincSpace(bool share, FlatZincSpace&);
00282   private:
00284     template<template<class> class Engine>
00285     void
00286     runEngine(std::ostream& out, const Printer& p, 
00287               const FlatZincOptions& opt, Gecode::Support::Timer& t_total);
00288     void
00289     branchWithPlugin(AST::Node* ann);
00290   public:
00292     Gecode::IntVarArray iv;
00294     std::vector<bool> iv_introduced;
00296     int* iv_boolalias;
00298     Gecode::BoolVarArray bv;
00300     std::vector<bool> bv_introduced;
00301 #ifdef GECODE_HAS_SET_VARS
00302 
00303     Gecode::SetVarArray sv;
00305     std::vector<bool> sv_introduced;
00306 #endif
00307 
00308     FlatZincSpace(void);
00309   
00311     ~FlatZincSpace(void);
00312   
00314     void init(int intVars, int boolVars, int setVars);
00315 
00317     void newIntVar(IntVarSpec* vs);
00319     void aliasBool2Int(int iv, int bv);
00321     int aliasBool2Int(int iv);
00323     void newBoolVar(BoolVarSpec* vs);
00325     void newSetVar(SetVarSpec* vs);
00326   
00328     void postConstraint(const ConExpr& ce, AST::Node* annotation);
00329   
00331     void solve(AST::Array* annotation);
00333     void minimize(int var, AST::Array* annotation);
00335     void maximize(int var, AST::Array* annotation);
00336 
00338     void run(std::ostream& out, const Printer& p, 
00339              const FlatZincOptions& opt, Gecode::Support::Timer& t_total);
00340   
00342     void print(std::ostream& out, const Printer& p) const;
00343 
00352     void shrinkArrays(Printer& p);
00353 
00355     Meth method(void) const;
00356 
00358     int optVar(void) const;
00359 
00369     void createBranchers(AST::Node* ann,
00370                          int seed,
00371                          bool ignoreUnknown,
00372                          std::ostream& err = std::cerr);
00373 
00375     AST::Array* solveAnnotations(void) const;
00376 
00378     virtual void constrain(const Space& s);
00380     virtual Gecode::Space* copy(bool share);
00381   };
00382 
00384   class Error {
00385   private:
00386     const std::string msg;
00387   public:
00388     Error(const std::string& where, const std::string& what)
00389     : msg(where+": "+what) {}
00390     const std::string& toString(void) const { return msg; }
00391   };
00392 
00398   GECODE_FLATZINC_EXPORT
00399   FlatZincSpace* parse(const std::string& fileName,
00400                        Printer& p, std::ostream& err = std::cerr,
00401                        FlatZincSpace* fzs=NULL);
00402 
00408   GECODE_FLATZINC_EXPORT
00409   FlatZincSpace* parse(std::istream& is,
00410                        Printer& p, std::ostream& err = std::cerr,
00411                        FlatZincSpace* fzs=NULL);
00412 
00413 }}
00414 
00415 #endif
00416 
00417 // STATISTICS: flatzinc-any