3
0
Fork 0
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:
Nikolaj Bjorner 2022-03-17 12:33:15 -07:00
parent 1fa373d6c2
commit 41d1c34067

View file

@ -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>