Creates a distinct term.
(Expr<?>... args)
| 889 | * Creates a {@code distinct} term. |
| 890 | **/ |
| 891 | @SafeVarargs |
| 892 | public final BoolExpr mkDistinct(Expr<?>... args) |
| 893 | { |
| 894 | checkContextMatch(args); |
| 895 | return new BoolExpr(this, Native.mkDistinct(nCtx(), args.length, |
| 896 | AST.arrayToNative(args))); |
| 897 | } |
| 898 | |
| 899 | /** |
| 900 | * Create an expression representing {@code not(a)}. |
no test coverage detected