We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 293ba53 commit a1edc82Copy full SHA for a1edc82
src/util/mathematical_expr.h
@@ -336,6 +336,11 @@ class forall_exprt : public quantifier_exprt
336
: quantifier_exprt(ID_forall, _symbol, _where)
337
{
338
}
339
+
340
+ forall_exprt(const binding_exprt::variablest &_variables, const exprt &_where)
341
+ : quantifier_exprt(ID_forall, _variables, _where)
342
+ {
343
+ }
344
};
345
346
template <>
@@ -373,6 +378,11 @@ class exists_exprt : public quantifier_exprt
373
378
: quantifier_exprt(ID_exists, _symbol, _where)
374
379
375
380
381
382
+ exists_exprt(const binding_exprt::variablest &_variables, const exprt &_where)
383
+ : quantifier_exprt(ID_exists, _variables, _where)
384
385
376
386
377
387
388
0 commit comments