3 #ifndef LALA_CORE_FLAT_UNIVERSE_HPP
4 #define LALA_CORE_FLAT_UNIVERSE_HPP
10 template<
class PreUniverse,
class Mem>
14 template<
class VT,
class Mem>
18 template<
class VT,
class Mem>
28 template<
class PreUniverse,
class Mem>
31 using U = PreUniverse;
40 static_assert(pre_universe::is_upper_bound);
41 static_assert(pre_universe::preserve_bot && pre_universe::preserve_top,
42 "The Flat lattice construction reuse the bottom and top elements of the pre-universe.\
43 Therefore, it must preserve bottom and top.");
46 constexpr
static const bool sequential = Mem::sequential;
54 constexpr
static const char*
name =
"Flat";
55 constexpr
static const bool is_arithmetic = pre_universe::is_arithmetic;
64 using atomic_type = memory_type::template atomic_type<value_type>;
99 memory_type::store(val, other.
value());
104 memory_type::store(val, other.
value());
116 return value() == U::top();
123 return value() == U::bot();
127 memory_type::store(val, U::top());
136 memory_type::store(val, other.
value());
145 memory_type::store(val, U::bot());
154 memory_type::store(val, other.
value());
165 template<
class Env,
class Allocator =
typename Env::allocator_type>
169 return F::make_false();
172 return F::make_true();
174 return F::make_binary(
184 return pre_universe::template deinterpret<F>(
value());
210 template<
bool diagnose = false,
class F,
class Env,
class M2>
214 bool res = pre_universe::template interpret_type<diagnose>(f, k, diagnostics);
221 if(f.is_binary() && f.sig() ==
EQ) {
222 int idx_constant = f.seq(0).is_constant() ? 0 : (f.seq(1).is_constant() ? 1 : 100);
223 int idx_variable = f.seq(0).is_variable() ? 0 : (f.seq(1).is_variable() ? 1 : 100);
224 if(idx_constant + idx_variable == 1) {
225 const auto& k = f.seq(idx_constant);
226 const auto& x = f.seq(idx_variable);
228 if(pre_universe::template interpret_tell<diagnose>(k, t, diagnostics)) {
230 if(pre_universe::template interpret_ask<diagnose>(k, a, diagnostics)) {
244 "Tell interpretation only supports existential quantifier and binary formulas of the form `t1 = t2` where t1 is a constant and t2 is a variable (or conversely).");
249 template<
bool diagnose = false,
class F,
class Env,
class M2>
252 RETURN_INTERPRETATION_ERROR(
"Ask interpretation only supports binary formulas of the form `t1 = t2` where t1 is a constant and t2 is a variable (or conversely).")
254 return interpret_tell<diagnose>(f, env, ask, diagnostics);
257 template<IKind kind,
bool diagnose = false,
class F,
class Env,
class M2>
260 return interpret_ask<diagnose>(f, env,
value, diagnostics);
263 return interpret_tell<diagnose>(f, env,
value, diagnostics);
285 if(
is_division(fun) && b == pre_universe::zero()) {
294 template<
class Pre2,
class Mem2>
332 template<
class Pre,
class M1,
class M2>
333 CUDA constexpr
bool operator<=(
const FlatUniverse<Pre, M1>& a,
const FlatUniverse<Pre, M2>& b) {
334 return a.is_bot() || b.is_top() || a == b;
337 template<
class Pre,
class M1,
class M2>
342 template<
class Pre,
class M1,
class M2>
343 CUDA constexpr
bool operator>=(
const FlatUniverse<Pre, M1>& a,
const FlatUniverse<Pre, M2>& b) {
347 template<
class Pre,
class M1,
class M2>
352 template<
class Pre,
class M1,
class M2>
357 template<
class Pre,
class M1,
class M2>
358 CUDA constexpr
bool operator!=(
const FlatUniverse<Pre, M1>& a,
const FlatUniverse<Pre, M2>& b) {
359 return a.value() != b.value();
362 template<
class Pre,
class M>
Definition: arith_bound.hpp:118
Definition: flat_universe.hpp:30
constexpr CUDA void join_top()
Definition: flat_universe.hpp:126
constexpr static const bool sequential
Definition: flat_universe.hpp:46
constexpr CUDA FlatUniverse(const ArithBound< typename pre_universe::dual_type, M > &other)
Definition: flat_universe.hpp:92
typename pre_universe::value_type value_type
Definition: flat_universe.hpp:34
constexpr CUDA this_type & operator=(const this_type2< M > &other)
Definition: flat_universe.hpp:98
constexpr CUDA this_type & operator=(const this_type &other)
Definition: flat_universe.hpp:103
constexpr CUDA void project(Sig fun, const local_type &a, const local_type &b)
Definition: flat_universe.hpp:279
CUDA NI TFormula< Allocator > deinterpret(AVar avar, const Env &env, const Allocator &allocator=Allocator()) const
Definition: flat_universe.hpp:166
constexpr static const bool is_abstract_universe
Definition: flat_universe.hpp:45
CUDA NI F deinterpret() const
Definition: flat_universe.hpp:183
constexpr CUDA void meet_bot()
Definition: flat_universe.hpp:144
CUDA static NI bool interpret(const F &f, const Env &env, this_type2< M2 > &value, IDiagnostics &diagnostics)
Definition: flat_universe.hpp:258
Mem memory_type
Definition: flat_universe.hpp:35
constexpr CUDA FlatUniverse()
Definition: flat_universe.hpp:78
static constexpr CUDA local_type top()
Definition: flat_universe.hpp:74
constexpr static const bool is_arithmetic
Definition: flat_universe.hpp:55
CUDA NI void print() const
Definition: flat_universe.hpp:195
constexpr static const bool preserve_join
Definition: flat_universe.hpp:50
static constexpr CUDA local_type eq_k(value_type k)
Definition: flat_universe.hpp:59
constexpr CUDA bool extract(local_type &ua) const
Definition: flat_universe.hpp:189
constexpr static const bool injective_concretization
Definition: flat_universe.hpp:52
CUDA static NI bool interpret_ask(const F &f, const Env &env, this_type2< M2 > &ask, IDiagnostics &diagnostics)
Definition: flat_universe.hpp:250
constexpr CUDA bool meet(const this_type2< M1 > &other)
Definition: flat_universe.hpp:149
constexpr CUDA FlatUniverse(const ArithBound< pre_universe, M > &other)
Definition: flat_universe.hpp:88
this_type2< battery::local_memory > local_type
Definition: flat_universe.hpp:38
constexpr static const bool preserve_meet
Definition: flat_universe.hpp:51
static constexpr CUDA local_type bot()
Definition: flat_universe.hpp:69
constexpr static const char * name
Definition: flat_universe.hpp:54
constexpr CUDA bool join(const this_type2< M1 > &other)
Definition: flat_universe.hpp:131
constexpr static const bool is_totally_ordered
Definition: flat_universe.hpp:47
constexpr CUDA FlatUniverse(const this_type &other)
Definition: flat_universe.hpp:81
constexpr static const bool preserve_top
Definition: flat_universe.hpp:49
constexpr static const bool preserve_concrete_covers
Definition: flat_universe.hpp:53
constexpr CUDA local::B is_bot() const
Definition: flat_universe.hpp:122
constexpr CUDA FlatUniverse(value_type k)
Definition: flat_universe.hpp:80
constexpr CUDA value_type value() const
Definition: flat_universe.hpp:108
constexpr CUDA local::B is_top() const
Definition: flat_universe.hpp:115
constexpr CUDA FlatUniverse(this_type &&other)
Definition: flat_universe.hpp:82
constexpr CUDA FlatUniverse(const this_type2< M > &other)
Definition: flat_universe.hpp:85
CUDA static NI bool interpret_tell(const F &f, const Env &env, this_type2< M2 > &tell, IDiagnostics &diagnostics)
Definition: flat_universe.hpp:211
constexpr static const bool preserve_bot
Definition: flat_universe.hpp:48
constexpr CUDA void project(Sig fun, const local_type &a)
Definition: flat_universe.hpp:269
PreUniverse pre_universe
Definition: flat_universe.hpp:33
Definition: diagnostics.hpp:19
#define RETURN_INTERPRETATION_ERROR(MSG)
Definition: diagnostics.hpp:155
CUDA NI void print(const lala::Sig &sig)
Definition: ast.hpp:264
Definition: abstract_deps.hpp:14
constexpr CUDA const CartesianProduct< As... >::template type_of< i > & project(const CartesianProduct< As... > &cp)
Similar to cp.template project<i>(), just to avoid the ".template" syntax.
Definition: cartesian_product.hpp:413
constexpr CUDA bool operator==(const CartesianProduct< As... > &a, const CartesianProduct< Bs... > &b)
Definition: cartesian_product.hpp:504
constexpr CUDA LDual dual_bound(const L &x)
Definition: arith_bound.hpp:110
Sig
Definition: ast.hpp:94
@ EQ
Unary arithmetic function symbols.
Definition: ast.hpp:112
constexpr CUDA auto fjoin(const CartesianProduct< As... > &a, const CartesianProduct< Bs... > &b)
Definition: cartesian_product.hpp:464
std::ostream & operator<<(std::ostream &s, const CartesianProduct< A, As... > &cp)
Definition: cartesian_product.hpp:531
CUDA constexpr NI bool is_division(Sig sig)
Definition: ast.hpp:230
constexpr CUDA bool operator<(const CartesianProduct< As... > &a, const CartesianProduct< Bs... > &b)
Definition: cartesian_product.hpp:485
constexpr CUDA auto fmeet(const CartesianProduct< As... > &a, const CartesianProduct< Bs... > &b)
Definition: cartesian_product.hpp:471
constexpr CUDA bool operator>(const CartesianProduct< As... > &a, const CartesianProduct< Bs... > &b)
Definition: cartesian_product.hpp:498
#define UNTYPED
Definition: sort.hpp:21