File tree 2 files changed +0
-68
lines changed 2 files changed +0
-68
lines changed Original file line number Diff line number Diff line change @@ -64,32 +64,6 @@ exprt disjunction(const exprt::operandst &op)
64
64
65
65
/* ******************************************************************\
66
66
67
- Function: disjunction
68
-
69
- Inputs:
70
-
71
- Outputs:
72
-
73
- Purpose:
74
-
75
- \*******************************************************************/
76
-
77
- exprt disjunction (const std::initializer_list<exprt> &op)
78
- {
79
- if (op.size ()==0 )
80
- return false_exprt ();
81
- else if (op.size ()==1 )
82
- return *op.begin ();
83
- else
84
- {
85
- or_exprt result;
86
- result.operands ()=exprt::operandst (op);
87
- return result;
88
- }
89
- }
90
-
91
- /* ******************************************************************\
92
-
93
67
Function: conjunction
94
68
95
69
Inputs:
@@ -116,32 +90,6 @@ exprt conjunction(const exprt::operandst &op)
116
90
117
91
/* ******************************************************************\
118
92
119
- Function: conjunction
120
-
121
- Inputs:
122
-
123
- Outputs:
124
-
125
- Purpose:
126
-
127
- \*******************************************************************/
128
-
129
- exprt conjunction (const std::initializer_list<exprt> &op)
130
- {
131
- if (op.size ()==0 )
132
- return true_exprt ();
133
- else if (op.size ()==1 )
134
- return *op.begin ();
135
- else
136
- {
137
- and_exprt result;
138
- result.operands ()=exprt::operandst (op);
139
- return result;
140
- }
141
- }
142
-
143
- /* ******************************************************************\
144
-
145
93
Function: build_object_descriptor_rec
146
94
147
95
Inputs:
Original file line number Diff line number Diff line change 18
18
19
19
#include < cassert>
20
20
21
- #include < initializer_list>
22
-
23
21
#include " std_types.h"
24
22
25
23
/* ! \defgroup gr_std_expr Conversion to specific expressions
@@ -1724,13 +1722,6 @@ class and_exprt:public exprt
1724
1722
1725
1723
exprt conjunction (const exprt::operandst &);
1726
1724
1727
- /* ! 1) generates a conjunction for two or more operands
1728
- * 2) for one operand, returns the operand
1729
- * 3) returns true otherwise
1730
- */
1731
-
1732
- exprt conjunction (const std::initializer_list<exprt> &);
1733
-
1734
1725
/* ! \brief Cast a generic exprt to a \ref and_exprt
1735
1726
*
1736
1727
* This is an unchecked conversion. \a expr must be known to be \ref
@@ -1833,13 +1824,6 @@ class or_exprt:public exprt
1833
1824
1834
1825
exprt disjunction (const exprt::operandst &);
1835
1826
1836
- /* ! 1) generates a disjunction for two or more operands
1837
- * 2) for one operand, returns the operand
1838
- * 3) returns false otherwise
1839
- */
1840
-
1841
- exprt disjunction (const std::initializer_list<exprt> &);
1842
-
1843
1827
/* ! \brief Cast a generic exprt to a \ref or_exprt
1844
1828
*
1845
1829
* This is an unchecked conversion. \a expr must be known to be \ref
You can’t perform that action at this time.
0 commit comments