Skip to content

Commit cc75d94

Browse files
committed
Add header block
1 parent f332df8 commit cc75d94

File tree

4 files changed

+34
-0
lines changed

4 files changed

+34
-0
lines changed

src/analyses/variable-sensitivity/abstract_aggregate_object.h

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/*******************************************************************\
2+
3+
Module: analyses variable-sensitivity
4+
5+
Author: Jez Higgins, [email protected]
6+
7+
\*******************************************************************/
8+
9+
/// \file
10+
/// Common behaviour for abstract objects modelling aggregate values -
11+
/// arrays, structs, etc.
112
#ifndef CBMC_ABSTRACT_AGGREGATE_OBJECT_H
213
#define CBMC_ABSTRACT_AGGREGATE_OBJECT_H
314

src/analyses/variable-sensitivity/abstract_value_object.cpp

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/*******************************************************************\
2+
3+
Module: analyses variable-sensitivity
4+
5+
Author: Jez Higgins, [email protected]
6+
7+
\*******************************************************************/
8+
19
#include <analyses/variable-sensitivity/abstract_value_object.h>
210

311
class empty_index_ranget : public index_ranget

src/analyses/variable-sensitivity/abstract_value_object.h

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/*******************************************************************\
2+
3+
Module: analyses variable-sensitivity
4+
5+
Author: Jez Higgins, [email protected]
6+
7+
\*******************************************************************/
8+
9+
/// \file
10+
/// Common behaviour for abstract objects modelling values -
11+
/// constants, intervals, etc.
112
#ifndef CPROVER_ANALYSES_VARIABLE_SENSITIVITY_ABSTRACT_VALUE_OBJECT_H
213
#define CPROVER_ANALYSES_VARIABLE_SENSITIVITY_ABSTRACT_VALUE_OBJECT_H
314

src/util/sharing_map.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -455,6 +455,10 @@ class sharing_mapt
455455
get_view(result);
456456
return result;
457457
}
458+
/// Convenience function to get a sorted view of the map elements
459+
///
460+
/// A view is a list of pairs with the components being const references to
461+
/// the keys and values in the map.
458462
sorted_viewt get_sorted_view() const
459463
{
460464
sorted_viewt result;

0 commit comments

Comments
 (0)