mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
trying to fix build problems
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
8cbe257434
commit
f8348d0bc4
3 changed files with 20 additions and 20 deletions
|
@ -40,8 +40,8 @@ Notes:
|
|||
void exchange(unsigned i, unsigned j, vect& out) {
|
||||
SASSERT(i <= j);
|
||||
if (i < j) {
|
||||
Ext::T ei = out.get(i);
|
||||
Ext::T ej = out.get(j);
|
||||
typename Ext::T ei = out.get(i);
|
||||
typename Ext::T ej = out.get(j);
|
||||
out.set(i, m_ext.mk_ite(m_ext.mk_le(ei, ej), ei, ej));
|
||||
out.set(j, m_ext.mk_ite(m_ext.mk_le(ej, ei), ei, ej));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue