Construct integer variable entry
| 115 | |
| 116 | /// Construct integer variable entry |
| 117 | forceinline SymbolEntry se_iv(int i) { |
| 118 | return SymbolEntry(ST_INTVAR, i); |
| 119 | } |
| 120 | /// Construct Boolean variable entry |
| 121 | forceinline SymbolEntry se_bv(int i) { |
| 122 | return SymbolEntry(ST_BOOLVAR, i); |
nothing calls this directly
no test coverage detected