3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 00:55:31 +00:00
This commit is contained in:
Jakob Rath 2023-07-26 09:34:45 +02:00
parent e6e655f0eb
commit 2f0d74fca8

View file

@ -225,7 +225,7 @@ namespace polysat {
pvar v;
unsigned num_args;
unsigned args_idx;
unsigned next_args_idx() const { args_idx + num_args; }
unsigned next_args_idx() const { return args_idx + num_args; }
};
svector<concat_info> m_concat_trail;
svector<pvar> m_concat_args;