@@ -26,7 +26,7 @@ int Config::g_forward_check = 0;
26
26
int Config::g_fineness = 0 ;
27
27
int Config::g_lazy_assume = 0 ;
28
28
29
- bool Config::g_uf_unordered = false ;
29
+ bool Config::g_uf_propagate = true ;
30
30
bool Config::g_uf_heavy_only = false ;
31
31
bool Config::g_uf_no_bitwise = false ;
32
32
bool Config::g_uf_no_sext = false ;
@@ -247,8 +247,8 @@ void Config::set_abstraction(string& name) {
247
247
g_ab_interpret_excc = LEVEL_EXCC_DEFAULT;
248
248
249
249
{
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 ;
252
252
if (name.find (NAME_UF_HEAVY_ONLY) != string::npos)
253
253
g_uf_heavy_only = !g_uf_heavy_only;
254
254
if (name.find (NAME_UF_NO_BITWISE) != string::npos)
@@ -298,7 +298,7 @@ void Config::set_abstraction(string& name) {
298
298
<< (g_ab_interpret_limit == 0 ?" " :to_string (g_ab_interpret_limit))
299
299
<< ((g_ab_interpret_excc != LEVEL_EXCC_DEFAULT)?" +ec" +to_string (g_ab_interpret_excc):" " )
300
300
<< (g_fineness != FINENESS_DEFAULT?" +l" +to_string (g_fineness):" " )
301
- << (g_uf_unordered ?" +unordered " :" " )
301
+ << (g_uf_propagate ?" +propagate " :" " )
302
302
<< (g_uf_heavy_only?" +heavy" :" " )
303
303
<< (g_uf_no_bitwise?" +nobitwise" :" " )
304
304
<< (g_uf_no_sext?" +nosignex" :" " )
0 commit comments