File tree Expand file tree Collapse file tree 3 files changed +1
-7
lines changed
analyses/variable-sensitivity Expand file tree Collapse file tree 3 files changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,6 @@ struct vsd_configt
6262
6363 struct
6464 {
65- bool intervals;
6665 bool new_value_set;
6766 } advanced_sensitivities;
6867
@@ -115,8 +114,6 @@ struct vsd_configt
115114 (config.pointer_abstract_type != VALUE_SET);
116115 config.context_tracking .data_dependency_context =
117116 options.get_bool_option (" data-dependencies" );
118- config.advanced_sensitivities .intervals =
119- options.get_bool_option (" interval" );
120117 config.advanced_sensitivities .new_value_set =
121118 options.get_bool_option (" new-value-set" );
122119
@@ -148,7 +145,6 @@ struct vsd_configt
148145 {
149146 vsd_configt config{};
150147 config.context_tracking .last_write_context = true ;
151- config.advanced_sensitivities .intervals = true ;
152148 config.value_abstract_type = INTERVAL;
153149 config.pointer_abstract_type = POINTER_SENSITIVE;
154150 config.struct_abstract_type = STRUCT_SENSITIVE;
Original file line number Diff line number Diff line change @@ -374,7 +374,6 @@ void goto_analyzer_parse_optionst::get_command_line_options(optionst &options)
374374 options.set_option (" structs" , cmdline.get_value (" vsd-structs" ));
375375 options.set_option (
376376 " data-dependencies" , cmdline.isset (" vsd-data-dependencies" ));
377- options.set_option (" interval" , cmdline.isset (" vsd-intervals" ));
378377 }
379378 else if (cmdline.isset (" dependence-graph-vs" ))
380379 {
@@ -997,7 +996,6 @@ void goto_analyzer_parse_optionst::help()
997996 " --vsd-arrays array entry sensitive analysis - top-bottom|every-element\n "
998997 " --vsd-pointers pointer sensitive analysis - top-bottom|constants|value-set\n "
999998 " --vsd-data-dependencies track data dependencies\n "
1000- " --vsd-intervals use intervals\n "
1001999 " \n "
10021000 " Storage options:\n "
10031001 // NOLINTNEXTLINE(whitespace/line_length)
Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ class optionst;
139139 " (vsd-structs):" \
140140 " (vsd-arrays):" \
141141 " (vsd-pointers):" \
142- " (vsd-data-dependencies)" \
142+ " (vsd-data-dependencies)"
143143
144144#define GOTO_ANALYSER_OPTIONS_STORAGE \
145145 " (one-domain-per-history)" \
You can’t perform that action at this time.
0 commit comments