Skip to content

Commit 48518dc

Browse files
committed
Stash temp changes
1 parent fac9c3b commit 48518dc

File tree

6 files changed

+1689
-1442
lines changed

6 files changed

+1689
-1442
lines changed

src/reach/avr_config.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ int Config::g_forward_check = 0;
2626
int Config::g_fineness = 0;
2727
int Config::g_lazy_assume = 0;
2828

29-
bool Config::g_uf_unordered = false;
29+
bool Config::g_uf_propagate = true;
3030
bool Config::g_uf_heavy_only = false;
3131
bool Config::g_uf_no_bitwise = false;
3232
bool Config::g_uf_no_sext = false;
@@ -247,8 +247,8 @@ void Config::set_abstraction(string& name) {
247247
g_ab_interpret_excc = LEVEL_EXCC_DEFAULT;
248248

249249
{
250-
if (name.find(NAME_UF_UNORDERED) != string::npos)
251-
g_uf_unordered = !g_uf_unordered;
250+
if (name.find(NAME_UF_PROPAGATE) != string::npos)
251+
g_uf_propagate = !g_uf_propagate;
252252
if (name.find(NAME_UF_HEAVY_ONLY) != string::npos)
253253
g_uf_heavy_only = !g_uf_heavy_only;
254254
if (name.find(NAME_UF_NO_BITWISE) != string::npos)
@@ -298,7 +298,7 @@ void Config::set_abstraction(string& name) {
298298
<< (g_ab_interpret_limit == 0?"":to_string(g_ab_interpret_limit))
299299
<< ((g_ab_interpret_excc != LEVEL_EXCC_DEFAULT)?"+ec"+to_string(g_ab_interpret_excc):"")
300300
<< (g_fineness != FINENESS_DEFAULT?"+l"+to_string(g_fineness):"")
301-
<< (g_uf_unordered?"+unordered":"")
301+
<< (g_uf_propagate?"+propagate":"")
302302
<< (g_uf_heavy_only?"+heavy":"")
303303
<< (g_uf_no_bitwise?"+nobitwise":"")
304304
<< (g_uf_no_sext?"+nosignex":"")

src/reach/avr_config.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@
175175
#define NAME_SABV "sa"
176176
#define NAME_EXCC "ec"
177177

178-
#define NAME_UF_UNORDERED "+unordered"
178+
#define NAME_UF_PROPAGATE "+propagate"
179179
#define NAME_UF_HEAVY_ONLY "+heavy"
180180
#define NAME_UF_NO_BITWISE "+nobitwise"
181181
#define NAME_UF_NO_SEXT "+nosignex"
@@ -263,7 +263,7 @@ class Config {
263263
static int g_forward_check;
264264
static int g_fineness;
265265
static int g_lazy_assume;
266-
static bool g_uf_unordered;
266+
static bool g_uf_propagate;
267267
static bool g_uf_heavy_only;
268268
static bool g_uf_no_bitwise;
269269
static bool g_uf_no_sext;

0 commit comments

Comments
 (0)