1
1
<!--#include virtual="header.inc" -->
2
2
3
3
<link rel="stylesheet" href="highlight/styles/default.css">
4
- <script src="highlight/highlight.pack.js"></script>
5
- <script>hljs.initHighlightingOnLoad();</script>
4
+ <script src="highlight/highlight.pack.js" type="text/javascript" ></script>
5
+ <script type="text/javascript" >hljs.initHighlightingOnLoad();</script>
6
6
7
7
<p><a href="./">CPROVER Manual TOC</a></p>
8
8
@@ -114,8 +114,8 @@ The excerpt below gives some details of the class <i>irept</i>:
114
114
<pre><code class="c++">class irept
115
115
{
116
116
public:
117
- typedef std::vector< irept> subt;
118
- typedef std::map< irep_name_string, irept> named_subt;
117
+ typedef std::vector< irept> subt;
118
+ typedef std::map< irep_name_string, irept> named_subt;
119
119
...
120
120
121
121
public:
@@ -134,7 +134,7 @@ protected:
134
134
dt *data;
135
135
...
136
136
};
137
- </pre ></code >
137
+ </code ></pre >
138
138
139
139
<p class="justified">
140
140
Every node of any tree is an object of class <i>irept</i>. Each node has a
@@ -692,20 +692,20 @@ declaration of the interface:
692
692
{
693
693
public:
694
694
// Insert the symbol
695
- bool add(const symbolt &symb);
695
+ bool add(const symbolt & symb);
696
696
// Insert symb into the
697
697
// table and erase it.
698
698
// New_symbol points to the
699
699
// newly inserted element.
700
- bool move(symbolt &symbol, symbolt *&new_symbol);
700
+ bool move(symbolt & symbol, symbolt *& new_symbol);
701
701
702
702
// Insert symb into the
703
703
// table. Then symb is erased.
704
- bool move(symbolt &symb );
704
+ bool move(symbolt &syb );
705
705
706
706
// Return the entry of the
707
707
// symbol with given name.
708
- const irept &value(const std::string &name) const;
708
+ const irept & value(const std::string & name) const;
709
709
};
710
710
</code></pre>
711
711
@@ -815,7 +815,7 @@ public:
815
815
instructionst instructions;
816
816
817
817
typedef typename
818
- std::map< const_targett, unsigned> target_numberst;
818
+ std::map< const_targett, unsigned> target_numberst;
819
819
820
820
//A map containing the unique number of each target
821
821
target_numberst target_numbers;
0 commit comments