/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */ /* * Main authors: * Guido Tack */ /* 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/. */ #ifndef __MINIZINC_FLATTEN_INTERNAL_HH__ #define __MINIZINC_FLATTEN_INTERNAL_HH__ #include #include #include #include #include namespace MiniZinc { /// Result of evaluation class EE { public: /// The result value KeepAlive r; /// Boolean expression representing whether result is defined KeepAlive b; /// Constructor explicit EE(Expression* r0 = NULL, Expression* b0 = NULL) : r(r0), b(b0) {} }; /// Boolean evaluation context enum BCtx { C_ROOT, C_POS, C_NEG, C_MIX }; /// Evaluation context struct Ctx { /// Boolean context BCtx b; /// Integer context BCtx i; /// Boolen negation flag bool neg; /// Default constructor (root context) Ctx(void) : b(C_ROOT), i(C_MIX), neg(false) {} /// Copy constructor Ctx(const Ctx& ctx) : b(ctx.b), i(ctx.i), neg(ctx.neg) {} /// Assignment operator Ctx& operator=(const Ctx& ctx) { if (this != &ctx) { b = ctx.b; i = ctx.i; neg = ctx.neg; } return *this; } }; /// Turn \a c into positive context BCtx operator+(const BCtx& c); /// Negate context \a c BCtx operator-(const BCtx& c); class EnvI { public: Model* model; Model* orig_model; Model* output; VarOccurrences vo; VarOccurrences output_vo; std::ostream& outstream; std::ostream& errstream; // The current pass number (used for unifying and disabling path construction in final pass) unsigned int current_pass_no; // Used for disabling path construction in final pass unsigned int final_pass_no; // Used for disabling path construction past the maxPathDepth of previous passes unsigned int maxPathDepth; VarOccurrences output_vo_flat; CopyMap cmap; IdMap reverseMappers; struct WW { WeakRef r; WeakRef b; WW(WeakRef r0, WeakRef b0) : r(r0), b(b0) {} }; typedef KeepAliveMap CSEMap; bool ignorePartial; bool ignoreUnknownIds; std::vector callStack; std::vector > errorStack; std::vector idStack; unsigned int maxCallStack; std::vector warnings; bool collect_vardecls; std::vector modifiedVarDecls; int in_redundant_constraint; int in_maybe_partial; int n_reif_ct; int n_imp_ct; int n_imp_del; int n_lin_del; bool in_reverse_map_var; FlatteningOptions fopts; unsigned int pathUse; std::unordered_map reverseEnum; struct PathVar { KeepAlive decl; unsigned int pass_no; }; // Store mapping from path string to (VarDecl, pass_no) tuples typedef std::unordered_map PathMap; // Mapping from arbitrary Expressions to paths typedef KeepAliveMap ReversePathMap; // Map from filename to integer (space saving optimisation) typedef std::unordered_map FilenameMap; std::vector checkVars; protected: CSEMap cse_map; Model* _flat; bool _failed; unsigned int ids; ASTStringMap::t reifyMap; PathMap pathMap; ReversePathMap reversePathMap; FilenameMap filenameMap; typedef std::unordered_map EnumMap; EnumMap enumMap; std::vector enumVarDecls; typedef std::unordered_map ArrayEnumMap; ArrayEnumMap arrayEnumMap; std::vector > arrayEnumDecls; public: EnvI(Model* orig0, std::ostream& outstream0 = std::cout, std::ostream& errstream0 = std::cerr); ~EnvI(void); long long int genId(void); /// Set minimum new temporary id to \a i+1 void minId(unsigned int i) { ids = std::max(ids, i + 1); } void cse_map_insert(Expression* e, const EE& ee); CSEMap::iterator cse_map_find(Expression* e); void cse_map_remove(Expression* e); CSEMap::iterator cse_map_end(void); void dump(void); unsigned int registerEnum(VarDeclI* vdi); VarDeclI* getEnum(unsigned int i) const; unsigned int registerArrayEnum(const std::vector& arrayEnum); const std::vector& getArrayEnum(unsigned int i) const; /// Check if \a t1 is a subtype of \a t2 (including enumerated types if \a strictEnum is true) bool isSubtype(const Type& t1, const Type& t2, bool strictEnum); void flat_addItem(Item* i); void flat_removeItem(int i); void flat_removeItem(Item* i); void vo_add_exp(VarDecl* vd); void annotateFromCallStack(Expression* e); void fail(const std::string& msg = std::string()); bool failed(void) const; Model* flat(void); void swap(); void swap_output() { std::swap(model, output); } ASTString reifyId(const ASTString& id); ASTString halfReifyId(const ASTString& id); std::ostream& dumpStack(std::ostream& os, bool errStack); bool dumpPath(std::ostream& os, bool force = false); void addWarning(const std::string& msg); void collectVarDecls(bool b); PathMap& getPathMap() { return pathMap; } ReversePathMap& getReversePathMap() { return reversePathMap; } FilenameMap& getFilenameMap() { return filenameMap; } void copyPathMapsAndState(EnvI& env); /// deprecated, use Solns2Out std::ostream& evalOutput(std::ostream& os); void createErrorStack(void); Call* surroundingCall(void) const; void cleanupExceptOutput(); }; void setComputedDomain(EnvI& envi, VarDecl* vd, Expression* domain, bool is_computed); EE flat_exp(EnvI& env, Ctx ctx, Expression* e, VarDecl* r, VarDecl* b); EE flatten_id(EnvI& env, Ctx ctx, Expression* e, VarDecl* r, VarDecl* b, bool doNotFollowChains); class CmpExpIdx { public: std::vector& x; CmpExpIdx(std::vector& x0) : x(x0) {} bool operator()(int i, int j) const { if (Expression::equal(x[i](), x[j]())) return false; if (x[i]()->isa() && x[j]()->isa() && x[i]()->cast()->idn() != -1 && x[j]()->cast()->idn() != -1) return x[i]()->cast()->idn() < x[j]()->cast()->idn(); return x[i]() < x[j](); } }; template class LinearTraits {}; template <> class LinearTraits { public: typedef IntVal Val; static Val eval(EnvI& env, Expression* e) { return eval_int(env, e); } static void constructLinBuiltin(BinOpType bot, ASTString& callid, int& coeff_sign, Val& d) { switch (bot) { case BOT_LE: callid = constants().ids.int_.lin_le; coeff_sign = 1; d += 1; break; case BOT_LQ: callid = constants().ids.int_.lin_le; coeff_sign = 1; break; case BOT_GR: callid = constants().ids.int_.lin_le; coeff_sign = -1; d = -d + 1; break; case BOT_GQ: callid = constants().ids.int_.lin_le; coeff_sign = -1; d = -d; break; case BOT_EQ: callid = constants().ids.int_.lin_eq; coeff_sign = 1; break; case BOT_NQ: callid = constants().ids.int_.lin_ne; coeff_sign = 1; break; default: assert(false); break; } } static ASTString id_eq(void) { return constants().ids.int_.eq; } typedef IntBounds Bounds; static bool finite(const IntBounds& ib) { return ib.l.isFinite() && ib.u.isFinite(); } static bool finite(const IntVal& v) { return v.isFinite(); } static Bounds compute_bounds(EnvI& env, Expression* e) { return compute_int_bounds(env, e); } typedef IntSetVal* Domain; static Domain eval_domain(EnvI& env, Expression* e) { return eval_intset(env, e); } static Expression* new_domain(Val v) { return new SetLit(Location().introduce(), IntSetVal::a(v, v)); } static Expression* new_domain(Val v0, Val v1) { return new SetLit(Location().introduce(), IntSetVal::a(v0, v1)); } static Expression* new_domain(Domain d) { return new SetLit(Location().introduce(), d); } static bool domain_contains(Domain dom, Val v) { return dom->contains(v); } static bool domain_equals(Domain dom, Val v) { return dom->size() == 1 && dom->min(0) == v && dom->max(0) == v; } static bool domain_equals(Domain dom1, Domain dom2) { IntSetRanges d1(dom1); IntSetRanges d2(dom2); return Ranges::equal(d1, d2); } static bool domain_tighter(Domain dom, Bounds b) { return !b.valid || dom->min() > b.l || dom->max() < b.u; } static bool domain_intersects(Domain dom, Val v0, Val v1) { return (v0 > v1) || (dom->size() > 0 && dom->min(0) <= v1 && v0 <= dom->max(dom->size() - 1)); } static bool domain_empty(Domain dom) { return dom->size() == 0; } static Domain limit_domain(BinOpType bot, Domain dom, Val v) { IntSetRanges dr(dom); IntSetVal* ndomain; switch (bot) { case BOT_LE: v -= 1; // fall through case BOT_LQ: { Ranges::Bounded b = Ranges::Bounded::maxiter(dr, v); ndomain = IntSetVal::ai(b); } break; case BOT_GR: v += 1; // fall through case BOT_GQ: { Ranges::Bounded b = Ranges::Bounded::miniter(dr, v); ndomain = IntSetVal::ai(b); } break; case BOT_NQ: { Ranges::Const c(v, v); Ranges::Diff > d(dr, c); ndomain = IntSetVal::ai(d); } break; default: assert(false); return NULL; } return ndomain; } static Domain intersect_domain(Domain dom, Val v0, Val v1) { IntSetRanges dr(dom); Ranges::Const c(v0, v1); Ranges::Inter > inter(dr, c); return IntSetVal::ai(inter); } static Val floor_div(Val v0, Val v1) { return static_cast( floor(static_cast(v0.toInt()) / static_cast(v1.toInt()))); } static Val ceil_div(Val v0, Val v1) { return static_cast(ceil(static_cast(v0.toInt()) / v1.toInt())); } static IntLit* newLit(Val v) { return IntLit::a(v); } }; template <> class LinearTraits { public: typedef FloatVal Val; static Val eval(EnvI& env, Expression* e) { return eval_float(env, e); } static void constructLinBuiltin(BinOpType bot, ASTString& callid, int& coeff_sign, Val& d) { switch (bot) { case BOT_LE: callid = constants().ids.float_.lin_lt; coeff_sign = 1; break; case BOT_LQ: callid = constants().ids.float_.lin_le; coeff_sign = 1; break; case BOT_GR: callid = constants().ids.float_.lin_lt; coeff_sign = -1; d = -d; break; case BOT_GQ: callid = constants().ids.float_.lin_le; coeff_sign = -1; d = -d; break; case BOT_EQ: callid = constants().ids.float_.lin_eq; coeff_sign = 1; break; case BOT_NQ: callid = constants().ids.float_.lin_ne; coeff_sign = 1; break; default: assert(false); break; } } static ASTString id_eq(void) { return constants().ids.float_.eq; } typedef FloatBounds Bounds; static bool finite(const FloatBounds& ib) { return ib.l.isFinite() && ib.u.isFinite(); } static bool finite(const FloatVal& v) { return v.isFinite(); } static Bounds compute_bounds(EnvI& env, Expression* e) { return compute_float_bounds(env, e); } typedef FloatSetVal* Domain; static Domain eval_domain(EnvI& env, Expression* e) { return eval_floatset(env, e); } static Expression* new_domain(Val v) { return new SetLit(Location().introduce(), FloatSetVal::a(v, v)); } static Expression* new_domain(Val v0, Val v1) { return new SetLit(Location().introduce(), FloatSetVal::a(v0, v1)); } static Expression* new_domain(Domain d) { return new SetLit(Location().introduce(), d); } static bool domain_contains(Domain dom, Val v) { return dom->contains(v); } static bool domain_equals(Domain dom, Val v) { return dom->size() == 1 && dom->min(0) == v && dom->max(0) == v; } static bool domain_tighter(Domain dom, Bounds b) { return !b.valid || dom->min() > b.l || dom->max() < b.u; } static bool domain_intersects(Domain dom, Val v0, Val v1) { return (v0 > v1) || (dom->size() > 0 && dom->min(0) <= v1 && v0 <= dom->max(dom->size() - 1)); } static bool domain_empty(Domain dom) { return dom->size() == 0; } static bool domain_equals(Domain dom1, Domain dom2) { FloatSetRanges d1(dom1); FloatSetRanges d2(dom2); return Ranges::equal(d1, d2); } static Domain intersect_domain(Domain dom, Val v0, Val v1) { if (dom) { FloatSetRanges dr(dom); Ranges::Const c(v0, v1); Ranges::Inter > inter(dr, c); return FloatSetVal::ai(inter); } else { Domain d = FloatSetVal::a(v0, v1); return d; } } static Domain limit_domain(BinOpType bot, Domain dom, Val v) { FloatSetRanges dr(dom); FloatSetVal* ndomain; switch (bot) { case BOT_LE: return NULL; case BOT_LQ: { Ranges::Bounded b = Ranges::Bounded::maxiter(dr, v); ndomain = FloatSetVal::ai(b); } break; case BOT_GR: return NULL; case BOT_GQ: { Ranges::Bounded b = Ranges::Bounded::miniter(dr, v); ndomain = FloatSetVal::ai(b); } break; case BOT_NQ: { Ranges::Const c(v, v); Ranges::Diff > d(dr, c); ndomain = FloatSetVal::ai(d); } break; default: assert(false); return NULL; } return ndomain; } static Val floor_div(Val v0, Val v1) { return v0 / v1; } static Val ceil_div(Val v0, Val v1) { return v0 / v1; } static FloatLit* newLit(Val v) { return FloatLit::a(v); } }; template void simplify_lin(std::vector::Val>& c, std::vector& x, typename LinearTraits::Val& d) { std::vector idx(c.size()); for (unsigned int i = static_cast(idx.size()); i--;) { idx[i] = i; Expression* e = follow_id_to_decl(x[i]()); if (VarDecl* vd = e->dyn_cast()) { if (vd->e() && vd->e()->isa()) { x[i] = vd->e(); } else { x[i] = e->cast()->id(); } } else { x[i] = e; } } std::sort(idx.begin(), idx.end(), CmpExpIdx(x)); unsigned int ci = 0; for (; ci < x.size(); ci++) { if (Lit* il = x[idx[ci]]()->dyn_cast()) { d += c[idx[ci]] * il->v(); c[idx[ci]] = 0; } else { break; } } for (unsigned int i = ci + 1; i < x.size(); i++) { if (Expression::equal(x[idx[i]](), x[idx[ci]]())) { c[idx[ci]] += c[idx[i]]; c[idx[i]] = 0; } else if (Lit* il = x[idx[i]]()->dyn_cast()) { d += c[idx[i]] * il->v(); c[idx[i]] = 0; } else { ci = i; } } ci = 0; for (unsigned int i = 0; i < c.size(); i++) { if (c[i] != 0) { c[ci] = c[i]; x[ci] = x[i]; ci++; } } c.resize(ci); x.resize(ci); } } // namespace MiniZinc #endif