Translates the AST vector into an BitVecExpr[]
()
| 142 | * Translates the AST vector into an BitVecExpr[] |
| 143 | * */ |
| 144 | public BitVecExpr[] ToBitVecExprArray() |
| 145 | { |
| 146 | int n = size(); |
| 147 | BitVecExpr[] res = new BitVecExpr[n]; |
| 148 | for (int i = 0; i < n; i++) |
| 149 | res[i] = (BitVecExpr)Expr.create(getContext(), get(i).getNativeObject()); |
| 150 | return res; |
| 151 | } |
| 152 | |
| 153 | /** |
| 154 | * Translates the AST vector into an ArithExpr[] |
nothing calls this directly
no test coverage detected