mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
This commit is contained in:
parent
0810720267
commit
51a4db862a
2 changed files with 2 additions and 2 deletions
|
@ -72,7 +72,7 @@ namespace euf {
|
|||
void * etable::mk_table_for(unsigned arity, func_decl * d) {
|
||||
void * r;
|
||||
SASSERT(d->get_arity() >= 1);
|
||||
SASSERT(arity >= d->get_arity());
|
||||
SASSERT(arity >= d->get_arity() || d->is_associative());
|
||||
switch (arity) {
|
||||
case 1:
|
||||
r = TAG(void*, alloc(unary_table), UNARY);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue