mirror of
https://github.com/Z3Prover/z3
synced 2025-04-07 18:05:21 +00:00
remove else case
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
1fa373d6c2
commit
41d1c34067
|
@ -986,14 +986,11 @@ namespace Microsoft.Z3
|
|||
Debug.Assert(ts.All(a => a != null));
|
||||
CheckContextMatch<BoolExpr>(ts);
|
||||
|
||||
return ts.Any()
|
||||
? ts
|
||||
.Aggregate(MkFalse(), (r, t) =>
|
||||
return ts.Aggregate(MkFalse(), (r, t) =>
|
||||
{
|
||||
using (r)
|
||||
return MkXor(r, t);
|
||||
})
|
||||
: MkFalse();
|
||||
});
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
Loading…
Reference in a new issue