mirror of
https://github.com/Z3Prover/z3
synced 2025-04-05 17:14:07 +00:00
4062 lines
156 KiB
C#
4062 lines
156 KiB
C#
/*++
|
|
Copyright (c) 2012 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
Context.cs
|
|
|
|
Abstract:
|
|
|
|
Z3 Managed API: Context
|
|
|
|
Author:
|
|
|
|
Christoph Wintersteiger (cwinter) 2012-03-15
|
|
|
|
Notes:
|
|
|
|
--*/
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Runtime.InteropServices;
|
|
using System.Diagnostics.Contracts;
|
|
|
|
namespace Microsoft.Z3
|
|
{
|
|
/// <summary>
|
|
/// The main interaction with Z3 happens via the Context.
|
|
/// </summary>
|
|
[ContractVerification(true)]
|
|
public class Context : IDisposable
|
|
{
|
|
#region Constructors
|
|
/// <summary>
|
|
/// Constructor.
|
|
/// </summary>
|
|
public Context()
|
|
: base()
|
|
{
|
|
m_ctx = Native.Z3_mk_context_rc(IntPtr.Zero);
|
|
InitContext();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Constructor.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The following parameters can be set:
|
|
/// - proof (Boolean) Enable proof generation
|
|
/// - debug_ref_count (Boolean) Enable debug support for Z3_ast reference counting
|
|
/// - trace (Boolean) Tracing support for VCC
|
|
/// - trace_file_name (String) Trace out file for VCC traces
|
|
/// - timeout (unsigned) default timeout (in milliseconds) used for solvers
|
|
/// - well_sorted_check type checker
|
|
/// - auto_config use heuristics to automatically select solver and configure it
|
|
/// - model model generation for solvers, this parameter can be overwritten when creating a solver
|
|
/// - model_validate validate models produced by solvers
|
|
/// - unsat_core unsat-core generation for solvers, this parameter can be overwritten when creating a solver
|
|
/// Note that in previous versions of Z3, this constructor was also used to set global and module parameters.
|
|
/// For this purpose we should now use <see cref="Global.SetParameter"/>
|
|
/// </remarks>
|
|
public Context(Dictionary<string, string> settings)
|
|
: base()
|
|
{
|
|
Contract.Requires(settings != null);
|
|
|
|
IntPtr cfg = Native.Z3_mk_config();
|
|
foreach (KeyValuePair<string, string> kv in settings)
|
|
Native.Z3_set_param_value(cfg, kv.Key, kv.Value);
|
|
m_ctx = Native.Z3_mk_context_rc(cfg);
|
|
Native.Z3_del_config(cfg);
|
|
InitContext();
|
|
}
|
|
#endregion
|
|
|
|
#region Symbols
|
|
/// <summary>
|
|
/// Creates a new symbol using an integer.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Not all integers can be passed to this function.
|
|
/// The legal range of unsigned integers is 0 to 2^30-1.
|
|
/// </remarks>
|
|
public IntSymbol MkSymbol(int i)
|
|
{
|
|
Contract.Ensures(Contract.Result<IntSymbol>() != null);
|
|
|
|
return new IntSymbol(this, i);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a symbol using a string.
|
|
/// </summary>
|
|
public StringSymbol MkSymbol(string name)
|
|
{
|
|
Contract.Ensures(Contract.Result<StringSymbol>() != null);
|
|
|
|
return new StringSymbol(this, name);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create an array of symbols.
|
|
/// </summary>
|
|
internal Symbol[] MkSymbols(string[] names)
|
|
{
|
|
Contract.Ensures(names == null || Contract.Result<Symbol[]>() != null);
|
|
Contract.Ensures(names != null || Contract.Result<Symbol[]>() == null);
|
|
Contract.Ensures(Contract.Result<Symbol[]>() == null || Contract.Result<Symbol[]>().Length == names.Length);
|
|
Contract.Ensures(Contract.Result<Symbol[]>() == null || Contract.ForAll(Contract.Result<Symbol[]>(), s => s != null));
|
|
|
|
if (names == null) return null;
|
|
Symbol[] result = new Symbol[names.Length];
|
|
for (int i = 0; i < names.Length; ++i) result[i] = MkSymbol(names[i]);
|
|
return result;
|
|
}
|
|
#endregion
|
|
|
|
#region Sorts
|
|
private BoolSort m_boolSort = null;
|
|
private IntSort m_intSort = null;
|
|
private RealSort m_realSort = null;
|
|
|
|
/// <summary>
|
|
/// Retrieves the Boolean sort of the context.
|
|
/// </summary>
|
|
public BoolSort BoolSort
|
|
{
|
|
get
|
|
{
|
|
Contract.Ensures(Contract.Result<BoolSort>() != null);
|
|
if (m_boolSort == null) m_boolSort = new BoolSort(this); return m_boolSort;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Retrieves the Integer sort of the context.
|
|
/// </summary>
|
|
public IntSort IntSort
|
|
{
|
|
get
|
|
{
|
|
Contract.Ensures(Contract.Result<IntSort>() != null);
|
|
if (m_intSort == null) m_intSort = new IntSort(this); return m_intSort;
|
|
}
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// Retrieves the Real sort of the context.
|
|
/// </summary>
|
|
public RealSort RealSort
|
|
{
|
|
get
|
|
{
|
|
Contract.Ensures(Contract.Result<RealSort>() != null);
|
|
if (m_realSort == null) m_realSort = new RealSort(this); return m_realSort;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a new Boolean sort.
|
|
/// </summary>
|
|
public BoolSort MkBoolSort()
|
|
{
|
|
Contract.Ensures(Contract.Result<BoolSort>() != null);
|
|
return new BoolSort(this);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a new uninterpreted sort.
|
|
/// </summary>
|
|
public UninterpretedSort MkUninterpretedSort(Symbol s)
|
|
{
|
|
Contract.Requires(s != null);
|
|
Contract.Ensures(Contract.Result<UninterpretedSort>() != null);
|
|
|
|
CheckContextMatch(s);
|
|
return new UninterpretedSort(this, s);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a new uninterpreted sort.
|
|
/// </summary>
|
|
public UninterpretedSort MkUninterpretedSort(string str)
|
|
{
|
|
Contract.Ensures(Contract.Result<UninterpretedSort>() != null);
|
|
|
|
return MkUninterpretedSort(MkSymbol(str));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a new integer sort.
|
|
/// </summary>
|
|
public IntSort MkIntSort()
|
|
{
|
|
Contract.Ensures(Contract.Result<IntSort>() != null);
|
|
|
|
return new IntSort(this);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a real sort.
|
|
/// </summary>
|
|
public RealSort MkRealSort()
|
|
{
|
|
Contract.Ensures(Contract.Result<RealSort>() != null);
|
|
return new RealSort(this);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a new bit-vector sort.
|
|
/// </summary>
|
|
public BitVecSort MkBitVecSort(uint size)
|
|
{
|
|
Contract.Ensures(Contract.Result<BitVecSort>() != null);
|
|
|
|
return new BitVecSort(this, Native.Z3_mk_bv_sort(nCtx, size));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a new array sort.
|
|
/// </summary>
|
|
public ArraySort MkArraySort(Sort domain, Sort range)
|
|
{
|
|
Contract.Requires(domain != null);
|
|
Contract.Requires(range != null);
|
|
Contract.Ensures(Contract.Result<ArraySort>() != null);
|
|
|
|
CheckContextMatch(domain);
|
|
CheckContextMatch(range);
|
|
return new ArraySort(this, domain, range);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a new tuple sort.
|
|
/// </summary>
|
|
public TupleSort MkTupleSort(Symbol name, Symbol[] fieldNames, Sort[] fieldSorts)
|
|
{
|
|
Contract.Requires(name != null);
|
|
Contract.Requires(fieldNames != null);
|
|
Contract.Requires(Contract.ForAll(fieldNames, fn => fn != null));
|
|
Contract.Requires(fieldSorts == null || Contract.ForAll(fieldSorts, fs => fs != null));
|
|
Contract.Ensures(Contract.Result<TupleSort>() != null);
|
|
|
|
CheckContextMatch(name);
|
|
CheckContextMatch(fieldNames);
|
|
CheckContextMatch(fieldSorts);
|
|
return new TupleSort(this, name, (uint)fieldNames.Length, fieldNames, fieldSorts);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a new enumeration sort.
|
|
/// </summary>
|
|
public EnumSort MkEnumSort(Symbol name, params Symbol[] enumNames)
|
|
{
|
|
Contract.Requires(name != null);
|
|
Contract.Requires(enumNames != null);
|
|
Contract.Requires(Contract.ForAll(enumNames, f => f != null));
|
|
|
|
Contract.Ensures(Contract.Result<EnumSort>() != null);
|
|
|
|
CheckContextMatch(name);
|
|
CheckContextMatch(enumNames);
|
|
return new EnumSort(this, name, enumNames);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a new enumeration sort.
|
|
/// </summary>
|
|
public EnumSort MkEnumSort(string name, params string[] enumNames)
|
|
{
|
|
Contract.Requires(enumNames != null);
|
|
Contract.Ensures(Contract.Result<EnumSort>() != null);
|
|
|
|
return new EnumSort(this, MkSymbol(name), MkSymbols(enumNames));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a new list sort.
|
|
/// </summary>
|
|
public ListSort MkListSort(Symbol name, Sort elemSort)
|
|
{
|
|
Contract.Requires(name != null);
|
|
Contract.Requires(elemSort != null);
|
|
Contract.Ensures(Contract.Result<ListSort>() != null);
|
|
|
|
CheckContextMatch(name);
|
|
CheckContextMatch(elemSort);
|
|
return new ListSort(this, name, elemSort);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a new list sort.
|
|
/// </summary>
|
|
public ListSort MkListSort(string name, Sort elemSort)
|
|
{
|
|
Contract.Requires(elemSort != null);
|
|
Contract.Ensures(Contract.Result<ListSort>() != null);
|
|
|
|
CheckContextMatch(elemSort);
|
|
return new ListSort(this, MkSymbol(name), elemSort);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a new finite domain sort.
|
|
/// <returns>The result is a sort</returns>
|
|
/// </summary>
|
|
/// <param name="name">The name used to identify the sort</param>
|
|
/// <param name="size">The size of the sort</param>
|
|
public FiniteDomainSort MkFiniteDomainSort(Symbol name, ulong size)
|
|
{
|
|
Contract.Requires(name != null);
|
|
Contract.Ensures(Contract.Result<FiniteDomainSort>() != null);
|
|
|
|
CheckContextMatch(name);
|
|
return new FiniteDomainSort(this, name, size);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a new finite domain sort.
|
|
/// <returns>The result is a sort</returns>
|
|
/// Elements of the sort are created using <seealso cref="MkNumeral(ulong, Sort)"/>,
|
|
/// and the elements range from 0 to <tt>size-1</tt>.
|
|
/// </summary>
|
|
/// <param name="name">The name used to identify the sort</param>
|
|
/// <param name="size">The size of the sort</param>
|
|
public FiniteDomainSort MkFiniteDomainSort(string name, ulong size)
|
|
{
|
|
Contract.Ensures(Contract.Result<FiniteDomainSort>() != null);
|
|
|
|
return new FiniteDomainSort(this, MkSymbol(name), size);
|
|
}
|
|
|
|
|
|
#region Datatypes
|
|
/// <summary>
|
|
/// Create a datatype constructor.
|
|
/// </summary>
|
|
/// <param name="name">constructor name</param>
|
|
/// <param name="recognizer">name of recognizer function.</param>
|
|
/// <param name="fieldNames">names of the constructor fields.</param>
|
|
/// <param name="sorts">field sorts, 0 if the field sort refers to a recursive sort.</param>
|
|
/// <param name="sortRefs">reference to datatype sort that is an argument to the constructor;
|
|
/// if the corresponding sort reference is 0, then the value in sort_refs should be an index
|
|
/// referring to one of the recursive datatypes that is declared.</param>
|
|
public Constructor MkConstructor(Symbol name, Symbol recognizer, Symbol[] fieldNames = null, Sort[] sorts = null, uint[] sortRefs = null)
|
|
{
|
|
Contract.Requires(name != null);
|
|
Contract.Requires(recognizer != null);
|
|
Contract.Ensures(Contract.Result<Constructor>() != null);
|
|
|
|
return new Constructor(this, name, recognizer, fieldNames, sorts, sortRefs);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a datatype constructor.
|
|
/// </summary>
|
|
/// <param name="name"></param>
|
|
/// <param name="recognizer"></param>
|
|
/// <param name="fieldNames"></param>
|
|
/// <param name="sorts"></param>
|
|
/// <param name="sortRefs"></param>
|
|
/// <returns></returns>
|
|
public Constructor MkConstructor(string name, string recognizer, string[] fieldNames = null, Sort[] sorts = null, uint[] sortRefs = null)
|
|
{
|
|
Contract.Ensures(Contract.Result<Constructor>() != null);
|
|
|
|
return new Constructor(this, MkSymbol(name), MkSymbol(recognizer), MkSymbols(fieldNames), sorts, sortRefs);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a new datatype sort.
|
|
/// </summary>
|
|
public DatatypeSort MkDatatypeSort(Symbol name, Constructor[] constructors)
|
|
{
|
|
Contract.Requires(name != null);
|
|
Contract.Requires(constructors != null);
|
|
Contract.Requires(Contract.ForAll(constructors, c => c != null));
|
|
|
|
Contract.Ensures(Contract.Result<DatatypeSort>() != null);
|
|
|
|
CheckContextMatch(name);
|
|
CheckContextMatch(constructors);
|
|
return new DatatypeSort(this, name, constructors);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a new datatype sort.
|
|
/// </summary>
|
|
public DatatypeSort MkDatatypeSort(string name, Constructor[] constructors)
|
|
{
|
|
Contract.Requires(constructors != null);
|
|
Contract.Requires(Contract.ForAll(constructors, c => c != null));
|
|
Contract.Ensures(Contract.Result<DatatypeSort>() != null);
|
|
|
|
CheckContextMatch(constructors);
|
|
return new DatatypeSort(this, MkSymbol(name), constructors);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create mutually recursive datatypes.
|
|
/// </summary>
|
|
/// <param name="names">names of datatype sorts</param>
|
|
/// <param name="c">list of constructors, one list per sort.</param>
|
|
public DatatypeSort[] MkDatatypeSorts(Symbol[] names, Constructor[][] c)
|
|
{
|
|
Contract.Requires(names != null);
|
|
Contract.Requires(c != null);
|
|
Contract.Requires(names.Length == c.Length);
|
|
Contract.Requires(Contract.ForAll(0, c.Length, j => c[j] != null));
|
|
Contract.Requires(Contract.ForAll(names, name => name != null));
|
|
Contract.Ensures(Contract.Result<DatatypeSort[]>() != null);
|
|
|
|
CheckContextMatch(names);
|
|
uint n = (uint)names.Length;
|
|
ConstructorList[] cla = new ConstructorList[n];
|
|
IntPtr[] n_constr = new IntPtr[n];
|
|
for (uint i = 0; i < n; i++)
|
|
{
|
|
Constructor[] constructor = c[i];
|
|
Contract.Assume(Contract.ForAll(constructor, arr => arr != null), "Clousot does not support yet quantified formula on multidimensional arrays");
|
|
CheckContextMatch(constructor);
|
|
cla[i] = new ConstructorList(this, constructor);
|
|
n_constr[i] = cla[i].NativeObject;
|
|
}
|
|
IntPtr[] n_res = new IntPtr[n];
|
|
Native.Z3_mk_datatypes(nCtx, n, Symbol.ArrayToNative(names), n_res, n_constr);
|
|
DatatypeSort[] res = new DatatypeSort[n];
|
|
for (uint i = 0; i < n; i++)
|
|
res[i] = new DatatypeSort(this, n_res[i]);
|
|
return res;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create mutually recursive data-types.
|
|
/// </summary>
|
|
/// <param name="names"></param>
|
|
/// <param name="c"></param>
|
|
/// <returns></returns>
|
|
public DatatypeSort[] MkDatatypeSorts(string[] names, Constructor[][] c)
|
|
{
|
|
Contract.Requires(names != null);
|
|
Contract.Requires(c != null);
|
|
Contract.Requires(names.Length == c.Length);
|
|
Contract.Requires(Contract.ForAll(0, c.Length, j => c[j] != null));
|
|
Contract.Requires(Contract.ForAll(names, name => name != null));
|
|
Contract.Ensures(Contract.Result<DatatypeSort[]>() != null);
|
|
|
|
return MkDatatypeSorts(MkSymbols(names), c);
|
|
}
|
|
|
|
#endregion
|
|
#endregion
|
|
|
|
#region Function Declarations
|
|
/// <summary>
|
|
/// Creates a new function declaration.
|
|
/// </summary>
|
|
public FuncDecl MkFuncDecl(Symbol name, Sort[] domain, Sort range)
|
|
{
|
|
Contract.Requires(name != null);
|
|
Contract.Requires(range != null);
|
|
Contract.Requires(Contract.ForAll(domain, d => d != null));
|
|
Contract.Ensures(Contract.Result<FuncDecl>() != null);
|
|
|
|
CheckContextMatch(name);
|
|
CheckContextMatch(domain);
|
|
CheckContextMatch(range);
|
|
return new FuncDecl(this, name, domain, range);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a new function declaration.
|
|
/// </summary>
|
|
public FuncDecl MkFuncDecl(Symbol name, Sort domain, Sort range)
|
|
{
|
|
Contract.Requires(name != null);
|
|
Contract.Requires(domain != null);
|
|
Contract.Requires(range != null);
|
|
Contract.Ensures(Contract.Result<FuncDecl>() != null);
|
|
|
|
CheckContextMatch(name);
|
|
CheckContextMatch(domain);
|
|
CheckContextMatch(range);
|
|
Sort[] q = new Sort[] { domain };
|
|
return new FuncDecl(this, name, q, range);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a new function declaration.
|
|
/// </summary>
|
|
public FuncDecl MkFuncDecl(string name, Sort[] domain, Sort range)
|
|
{
|
|
Contract.Requires(range != null);
|
|
Contract.Requires(Contract.ForAll(domain, d => d != null));
|
|
Contract.Ensures(Contract.Result<FuncDecl>() != null);
|
|
|
|
CheckContextMatch(domain);
|
|
CheckContextMatch(range);
|
|
return new FuncDecl(this, MkSymbol(name), domain, range);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a new function declaration.
|
|
/// </summary>
|
|
public FuncDecl MkFuncDecl(string name, Sort domain, Sort range)
|
|
{
|
|
Contract.Requires(range != null);
|
|
Contract.Requires(domain != null);
|
|
Contract.Ensures(Contract.Result<FuncDecl>() != null);
|
|
|
|
CheckContextMatch(domain);
|
|
CheckContextMatch(range);
|
|
Sort[] q = new Sort[] { domain };
|
|
return new FuncDecl(this, MkSymbol(name), q, range);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a fresh function declaration with a name prefixed with <paramref name="prefix"/>.
|
|
/// </summary>
|
|
/// <seealso cref="MkFuncDecl(string,Sort,Sort)"/>
|
|
/// <seealso cref="MkFuncDecl(string,Sort[],Sort)"/>
|
|
public FuncDecl MkFreshFuncDecl(string prefix, Sort[] domain, Sort range)
|
|
{
|
|
Contract.Requires(range != null);
|
|
Contract.Requires(Contract.ForAll(domain, d => d != null));
|
|
Contract.Ensures(Contract.Result<FuncDecl>() != null);
|
|
|
|
CheckContextMatch(domain);
|
|
CheckContextMatch(range);
|
|
return new FuncDecl(this, prefix, domain, range);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a new constant function declaration.
|
|
/// </summary>
|
|
public FuncDecl MkConstDecl(Symbol name, Sort range)
|
|
{
|
|
Contract.Requires(name != null);
|
|
Contract.Requires(range != null);
|
|
Contract.Ensures(Contract.Result<FuncDecl>() != null);
|
|
|
|
CheckContextMatch(name);
|
|
CheckContextMatch(range);
|
|
return new FuncDecl(this, name, null, range);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a new constant function declaration.
|
|
/// </summary>
|
|
public FuncDecl MkConstDecl(string name, Sort range)
|
|
{
|
|
Contract.Requires(range != null);
|
|
Contract.Ensures(Contract.Result<FuncDecl>() != null);
|
|
|
|
CheckContextMatch(range);
|
|
return new FuncDecl(this, MkSymbol(name), null, range);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a fresh constant function declaration with a name prefixed with <paramref name="prefix"/>.
|
|
/// </summary>
|
|
/// <seealso cref="MkFuncDecl(string,Sort,Sort)"/>
|
|
/// <seealso cref="MkFuncDecl(string,Sort[],Sort)"/>
|
|
public FuncDecl MkFreshConstDecl(string prefix, Sort range)
|
|
{
|
|
Contract.Requires(range != null);
|
|
Contract.Ensures(Contract.Result<FuncDecl>() != null);
|
|
|
|
CheckContextMatch(range);
|
|
return new FuncDecl(this, prefix, null, range);
|
|
}
|
|
#endregion
|
|
|
|
#region Bound Variables
|
|
/// <summary>
|
|
/// Creates a new bound variable.
|
|
/// </summary>
|
|
/// <param name="index">The de-Bruijn index of the variable</param>
|
|
/// <param name="ty">The sort of the variable</param>
|
|
public Expr MkBound(uint index, Sort ty)
|
|
{
|
|
Contract.Requires(ty != null);
|
|
Contract.Ensures(Contract.Result<Expr>() != null);
|
|
|
|
return Expr.Create(this, Native.Z3_mk_bound(nCtx, index, ty.NativeObject));
|
|
}
|
|
#endregion
|
|
|
|
#region Quantifier Patterns
|
|
/// <summary>
|
|
/// Create a quantifier pattern.
|
|
/// </summary>
|
|
public Pattern MkPattern(params Expr[] terms)
|
|
{
|
|
Contract.Requires(terms != null);
|
|
if (terms.Length == 0)
|
|
throw new Z3Exception("Cannot create a pattern from zero terms");
|
|
|
|
Contract.Ensures(Contract.Result<Pattern>() != null);
|
|
|
|
Contract.EndContractBlock();
|
|
|
|
IntPtr[] termsNative = AST.ArrayToNative(terms);
|
|
return new Pattern(this, Native.Z3_mk_pattern(nCtx, (uint)terms.Length, termsNative));
|
|
}
|
|
#endregion
|
|
|
|
#region Constants
|
|
/// <summary>
|
|
/// Creates a new Constant of sort <paramref name="range"/> and named <paramref name="name"/>.
|
|
/// </summary>
|
|
public Expr MkConst(Symbol name, Sort range)
|
|
{
|
|
Contract.Requires(name != null);
|
|
Contract.Requires(range != null);
|
|
Contract.Ensures(Contract.Result<Expr>() != null);
|
|
|
|
CheckContextMatch(name);
|
|
CheckContextMatch(range);
|
|
|
|
return Expr.Create(this, Native.Z3_mk_const(nCtx, name.NativeObject, range.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a new Constant of sort <paramref name="range"/> and named <paramref name="name"/>.
|
|
/// </summary>
|
|
public Expr MkConst(string name, Sort range)
|
|
{
|
|
Contract.Requires(range != null);
|
|
Contract.Ensures(Contract.Result<Expr>() != null);
|
|
|
|
return MkConst(MkSymbol(name), range);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a fresh Constant of sort <paramref name="range"/> and a
|
|
/// name prefixed with <paramref name="prefix"/>.
|
|
/// </summary>
|
|
public Expr MkFreshConst(string prefix, Sort range)
|
|
{
|
|
Contract.Requires(range != null);
|
|
Contract.Ensures(Contract.Result<Expr>() != null);
|
|
|
|
CheckContextMatch(range);
|
|
return Expr.Create(this, Native.Z3_mk_fresh_const(nCtx, prefix, range.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a fresh constant from the FuncDecl <paramref name="f"/>.
|
|
/// </summary>
|
|
/// <param name="f">A decl of a 0-arity function</param>
|
|
public Expr MkConst(FuncDecl f)
|
|
{
|
|
Contract.Requires(f != null);
|
|
Contract.Ensures(Contract.Result<Expr>() != null);
|
|
|
|
return MkApp(f);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a Boolean constant.
|
|
/// </summary>
|
|
public BoolExpr MkBoolConst(Symbol name)
|
|
{
|
|
Contract.Requires(name != null);
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
return (BoolExpr)MkConst(name, BoolSort);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a Boolean constant.
|
|
/// </summary>
|
|
public BoolExpr MkBoolConst(string name)
|
|
{
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
return (BoolExpr)MkConst(MkSymbol(name), BoolSort);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates an integer constant.
|
|
/// </summary>
|
|
public IntExpr MkIntConst(Symbol name)
|
|
{
|
|
Contract.Requires(name != null);
|
|
Contract.Ensures(Contract.Result<IntExpr>() != null);
|
|
|
|
return (IntExpr)MkConst(name, IntSort);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates an integer constant.
|
|
/// </summary>
|
|
public IntExpr MkIntConst(string name)
|
|
{
|
|
Contract.Requires(name != null);
|
|
Contract.Ensures(Contract.Result<IntExpr>() != null);
|
|
|
|
return (IntExpr)MkConst(name, IntSort);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a real constant.
|
|
/// </summary>
|
|
public RealExpr MkRealConst(Symbol name)
|
|
{
|
|
Contract.Requires(name != null);
|
|
Contract.Ensures(Contract.Result<RealExpr>() != null);
|
|
|
|
return (RealExpr)MkConst(name, RealSort);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a real constant.
|
|
/// </summary>
|
|
public RealExpr MkRealConst(string name)
|
|
{
|
|
Contract.Ensures(Contract.Result<RealExpr>() != null);
|
|
|
|
return (RealExpr)MkConst(name, RealSort);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a bit-vector constant.
|
|
/// </summary>
|
|
public BitVecExpr MkBVConst(Symbol name, uint size)
|
|
{
|
|
Contract.Requires(name != null);
|
|
Contract.Ensures(Contract.Result<BitVecExpr>() != null);
|
|
|
|
return (BitVecExpr)MkConst(name, MkBitVecSort(size));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a bit-vector constant.
|
|
/// </summary>
|
|
public BitVecExpr MkBVConst(string name, uint size)
|
|
{
|
|
Contract.Ensures(Contract.Result<BitVecExpr>() != null);
|
|
|
|
return (BitVecExpr)MkConst(name, MkBitVecSort(size));
|
|
}
|
|
#endregion
|
|
|
|
#region Terms
|
|
/// <summary>
|
|
/// Create a new function application.
|
|
/// </summary>
|
|
public Expr MkApp(FuncDecl f, params Expr[] args)
|
|
{
|
|
Contract.Requires(f != null);
|
|
Contract.Requires(args == null || Contract.ForAll(args, a => a != null));
|
|
Contract.Ensures(Contract.Result<Expr>() != null);
|
|
|
|
CheckContextMatch(f);
|
|
CheckContextMatch(args);
|
|
return Expr.Create(this, f, args);
|
|
}
|
|
|
|
#region Propositional
|
|
/// <summary>
|
|
/// The true Term.
|
|
/// </summary>
|
|
public BoolExpr MkTrue()
|
|
{
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
return new BoolExpr(this, Native.Z3_mk_true(nCtx));
|
|
}
|
|
|
|
/// <summary>
|
|
/// The false Term.
|
|
/// </summary>
|
|
public BoolExpr MkFalse()
|
|
{
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
return new BoolExpr(this, Native.Z3_mk_false(nCtx));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a Boolean value.
|
|
/// </summary>
|
|
public BoolExpr MkBool(bool value)
|
|
{
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
return value ? MkTrue() : MkFalse();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates the equality <paramref name="x"/> = <paramref name="y"/>.
|
|
/// </summary>
|
|
public BoolExpr MkEq(Expr x, Expr y)
|
|
{
|
|
Contract.Requires(x != null);
|
|
Contract.Requires(y != null);
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
CheckContextMatch(x);
|
|
CheckContextMatch(y);
|
|
return new BoolExpr(this, Native.Z3_mk_eq(nCtx, x.NativeObject, y.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a <c>distinct</c> term.
|
|
/// </summary>
|
|
public BoolExpr MkDistinct(params Expr[] args)
|
|
{
|
|
Contract.Requires(args != null);
|
|
Contract.Requires(Contract.ForAll(args, a => a != null));
|
|
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
CheckContextMatch(args);
|
|
return new BoolExpr(this, Native.Z3_mk_distinct(nCtx, (uint)args.Length, AST.ArrayToNative(args)));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Mk an expression representing <c>not(a)</c>.
|
|
/// </summary>
|
|
public BoolExpr MkNot(BoolExpr a)
|
|
{
|
|
Contract.Requires(a != null);
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
CheckContextMatch(a);
|
|
return new BoolExpr(this, Native.Z3_mk_not(nCtx, a.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create an expression representing an if-then-else: <c>ite(t1, t2, t3)</c>.
|
|
/// </summary>
|
|
/// <param name="t1">An expression with Boolean sort</param>
|
|
/// <param name="t2">An expression </param>
|
|
/// <param name="t3">An expression with the same sort as <paramref name="t2"/></param>
|
|
public Expr MkITE(BoolExpr t1, Expr t2, Expr t3)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Requires(t3 != null);
|
|
Contract.Ensures(Contract.Result<Expr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
CheckContextMatch(t3);
|
|
return Expr.Create(this, Native.Z3_mk_ite(nCtx, t1.NativeObject, t2.NativeObject, t3.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create an expression representing <c>t1 iff t2</c>.
|
|
/// </summary>
|
|
public BoolExpr MkIff(BoolExpr t1, BoolExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BoolExpr(this, Native.Z3_mk_iff(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create an expression representing <c>t1 -> t2</c>.
|
|
/// </summary>
|
|
public BoolExpr MkImplies(BoolExpr t1, BoolExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BoolExpr(this, Native.Z3_mk_implies(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create an expression representing <c>t1 xor t2</c>.
|
|
/// </summary>
|
|
public BoolExpr MkXor(BoolExpr t1, BoolExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BoolExpr(this, Native.Z3_mk_xor(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create an expression representing <c>t[0] and t[1] and ...</c>.
|
|
/// </summary>
|
|
public BoolExpr MkAnd(params BoolExpr[] t)
|
|
{
|
|
Contract.Requires(t != null);
|
|
Contract.Requires(Contract.ForAll(t, a => a != null));
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
CheckContextMatch(t);
|
|
return new BoolExpr(this, Native.Z3_mk_and(nCtx, (uint)t.Length, AST.ArrayToNative(t)));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create an expression representing <c>t[0] or t[1] or ...</c>.
|
|
/// </summary>
|
|
public BoolExpr MkOr(params BoolExpr[] t)
|
|
{
|
|
Contract.Requires(t != null);
|
|
Contract.Requires(Contract.ForAll(t, a => a != null));
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
CheckContextMatch(t);
|
|
return new BoolExpr(this, Native.Z3_mk_or(nCtx, (uint)t.Length, AST.ArrayToNative(t)));
|
|
}
|
|
|
|
|
|
#endregion
|
|
|
|
#region Arithmetic
|
|
/// <summary>
|
|
/// Create an expression representing <c>t[0] + t[1] + ...</c>.
|
|
/// </summary>
|
|
public ArithExpr MkAdd(params ArithExpr[] t)
|
|
{
|
|
Contract.Requires(t != null);
|
|
Contract.Requires(Contract.ForAll(t, a => a != null));
|
|
Contract.Ensures(Contract.Result<ArithExpr>() != null);
|
|
|
|
CheckContextMatch(t);
|
|
return (ArithExpr)Expr.Create(this, Native.Z3_mk_add(nCtx, (uint)t.Length, AST.ArrayToNative(t)));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create an expression representing <c>t[0] * t[1] * ...</c>.
|
|
/// </summary>
|
|
public ArithExpr MkMul(params ArithExpr[] t)
|
|
{
|
|
Contract.Requires(t != null);
|
|
Contract.Requires(Contract.ForAll(t, a => a != null));
|
|
Contract.Ensures(Contract.Result<ArithExpr>() != null);
|
|
|
|
CheckContextMatch(t);
|
|
return (ArithExpr)Expr.Create(this, Native.Z3_mk_mul(nCtx, (uint)t.Length, AST.ArrayToNative(t)));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create an expression representing <c>t[0] - t[1] - ...</c>.
|
|
/// </summary>
|
|
public ArithExpr MkSub(params ArithExpr[] t)
|
|
{
|
|
Contract.Requires(t != null);
|
|
Contract.Requires(Contract.ForAll(t, a => a != null));
|
|
Contract.Ensures(Contract.Result<ArithExpr>() != null);
|
|
|
|
CheckContextMatch(t);
|
|
return (ArithExpr)Expr.Create(this, Native.Z3_mk_sub(nCtx, (uint)t.Length, AST.ArrayToNative(t)));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create an expression representing <c>-t</c>.
|
|
/// </summary>
|
|
public ArithExpr MkUnaryMinus(ArithExpr t)
|
|
{
|
|
Contract.Requires(t != null);
|
|
Contract.Ensures(Contract.Result<ArithExpr>() != null);
|
|
|
|
CheckContextMatch(t);
|
|
return (ArithExpr)Expr.Create(this, Native.Z3_mk_unary_minus(nCtx, t.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create an expression representing <c>t1 / t2</c>.
|
|
/// </summary>
|
|
public ArithExpr MkDiv(ArithExpr t1, ArithExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<ArithExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return (ArithExpr)Expr.Create(this, Native.Z3_mk_div(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create an expression representing <c>t1 mod t2</c>.
|
|
/// </summary>
|
|
/// <remarks>The arguments must have int type.</remarks>
|
|
public IntExpr MkMod(IntExpr t1, IntExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<IntExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new IntExpr(this, Native.Z3_mk_mod(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create an expression representing <c>t1 rem t2</c>.
|
|
/// </summary>
|
|
/// <remarks>The arguments must have int type.</remarks>
|
|
public IntExpr MkRem(IntExpr t1, IntExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<IntExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new IntExpr(this, Native.Z3_mk_rem(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create an expression representing <c>t1 ^ t2</c>.
|
|
/// </summary>
|
|
public ArithExpr MkPower(ArithExpr t1, ArithExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<ArithExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return (ArithExpr)Expr.Create(this, Native.Z3_mk_power(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create an expression representing <c>t1 < t2</c>
|
|
/// </summary>
|
|
public BoolExpr MkLt(ArithExpr t1, ArithExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BoolExpr(this, Native.Z3_mk_lt(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create an expression representing <c>t1 <= t2</c>
|
|
/// </summary>
|
|
public BoolExpr MkLe(ArithExpr t1, ArithExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BoolExpr(this, Native.Z3_mk_le(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create an expression representing <c>t1 > t2</c>
|
|
/// </summary>
|
|
public BoolExpr MkGt(ArithExpr t1, ArithExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BoolExpr(this, Native.Z3_mk_gt(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create an expression representing <c>t1 >= t2</c>
|
|
/// </summary>
|
|
public BoolExpr MkGe(ArithExpr t1, ArithExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BoolExpr(this, Native.Z3_mk_ge(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Coerce an integer to a real.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// There is also a converse operation exposed. It follows the semantics prescribed by the SMT-LIB standard.
|
|
///
|
|
/// You can take the floor of a real by creating an auxiliary integer Term <c>k</c> and
|
|
/// and asserting <c>MakeInt2Real(k) <= t1 < MkInt2Real(k)+1</c>.
|
|
/// The argument must be of integer sort.
|
|
/// </remarks>
|
|
public RealExpr MkInt2Real(IntExpr t)
|
|
{
|
|
Contract.Requires(t != null);
|
|
Contract.Ensures(Contract.Result<RealExpr>() != null);
|
|
|
|
CheckContextMatch(t);
|
|
return new RealExpr(this, Native.Z3_mk_int2real(nCtx, t.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Coerce a real to an integer.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The semantics of this function follows the SMT-LIB standard for the function to_int.
|
|
/// The argument must be of real sort.
|
|
/// </remarks>
|
|
public IntExpr MkReal2Int(RealExpr t)
|
|
{
|
|
Contract.Requires(t != null);
|
|
Contract.Ensures(Contract.Result<IntExpr>() != null);
|
|
|
|
CheckContextMatch(t);
|
|
return new IntExpr(this, Native.Z3_mk_real2int(nCtx, t.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates an expression that checks whether a real number is an integer.
|
|
/// </summary>
|
|
public BoolExpr MkIsInteger(RealExpr t)
|
|
{
|
|
Contract.Requires(t != null);
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
CheckContextMatch(t);
|
|
return new BoolExpr(this, Native.Z3_mk_is_int(nCtx, t.NativeObject));
|
|
}
|
|
#endregion
|
|
|
|
#region Bit-vectors
|
|
/// <summary>
|
|
/// Bitwise negation.
|
|
/// </summary>
|
|
/// <remarks>The argument must have a bit-vector sort.</remarks>
|
|
public BitVecExpr MkBVNot(BitVecExpr t)
|
|
{
|
|
Contract.Requires(t != null);
|
|
Contract.Ensures(Contract.Result<BitVecExpr>() != null);
|
|
|
|
CheckContextMatch(t);
|
|
return new BitVecExpr(this, Native.Z3_mk_bvnot(nCtx, t.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Take conjunction of bits in a vector, return vector of length 1.
|
|
/// </summary>
|
|
/// <remarks>The argument must have a bit-vector sort.</remarks>
|
|
public BitVecExpr MkBVRedAND(BitVecExpr t)
|
|
{
|
|
Contract.Requires(t != null);
|
|
Contract.Ensures(Contract.Result<BitVecExpr>() != null);
|
|
|
|
CheckContextMatch(t);
|
|
return new BitVecExpr(this, Native.Z3_mk_bvredand(nCtx, t.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Take disjunction of bits in a vector, return vector of length 1.
|
|
/// </summary>
|
|
/// <remarks>The argument must have a bit-vector sort.</remarks>
|
|
public BitVecExpr MkBVRedOR(BitVecExpr t)
|
|
{
|
|
Contract.Requires(t != null);
|
|
Contract.Ensures(Contract.Result<BitVecExpr>() != null);
|
|
|
|
CheckContextMatch(t);
|
|
return new BitVecExpr(this, Native.Z3_mk_bvredor(nCtx, t.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Bitwise conjunction.
|
|
/// </summary>
|
|
/// <remarks>The arguments must have a bit-vector sort.</remarks>
|
|
public BitVecExpr MkBVAND(BitVecExpr t1, BitVecExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BitVecExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BitVecExpr(this, Native.Z3_mk_bvand(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Bitwise disjunction.
|
|
/// </summary>
|
|
/// <remarks>The arguments must have a bit-vector sort.</remarks>
|
|
public BitVecExpr MkBVOR(BitVecExpr t1, BitVecExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BitVecExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BitVecExpr(this, Native.Z3_mk_bvor(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Bitwise XOR.
|
|
/// </summary>
|
|
/// <remarks>The arguments must have a bit-vector sort.</remarks>
|
|
public BitVecExpr MkBVXOR(BitVecExpr t1, BitVecExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BitVecExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BitVecExpr(this, Native.Z3_mk_bvxor(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Bitwise NAND.
|
|
/// </summary>
|
|
/// <remarks>The arguments must have a bit-vector sort.</remarks>
|
|
public BitVecExpr MkBVNAND(BitVecExpr t1, BitVecExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BitVecExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BitVecExpr(this, Native.Z3_mk_bvnand(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Bitwise NOR.
|
|
/// </summary>
|
|
/// <remarks>The arguments must have a bit-vector sort.</remarks>
|
|
public BitVecExpr MkBVNOR(BitVecExpr t1, BitVecExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BitVecExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BitVecExpr(this, Native.Z3_mk_bvnor(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Bitwise XNOR.
|
|
/// </summary>
|
|
/// <remarks>The arguments must have a bit-vector sort.</remarks>
|
|
public BitVecExpr MkBVXNOR(BitVecExpr t1, BitVecExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BitVecExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BitVecExpr(this, Native.Z3_mk_bvxnor(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Standard two's complement unary minus.
|
|
/// </summary>
|
|
/// <remarks>The arguments must have a bit-vector sort.</remarks>
|
|
public BitVecExpr MkBVNeg(BitVecExpr t)
|
|
{
|
|
Contract.Requires(t != null);
|
|
Contract.Ensures(Contract.Result<BitVecExpr>() != null);
|
|
|
|
CheckContextMatch(t);
|
|
return new BitVecExpr(this, Native.Z3_mk_bvneg(nCtx, t.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Two's complement addition.
|
|
/// </summary>
|
|
/// <remarks>The arguments must have the same bit-vector sort.</remarks>
|
|
public BitVecExpr MkBVAdd(BitVecExpr t1, BitVecExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BitVecExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BitVecExpr(this, Native.Z3_mk_bvadd(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Two's complement subtraction.
|
|
/// </summary>
|
|
/// <remarks>The arguments must have the same bit-vector sort.</remarks>
|
|
public BitVecExpr MkBVSub(BitVecExpr t1, BitVecExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BitVecExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BitVecExpr(this, Native.Z3_mk_bvsub(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Two's complement multiplication.
|
|
/// </summary>
|
|
/// <remarks>The arguments must have the same bit-vector sort.</remarks>
|
|
public BitVecExpr MkBVMul(BitVecExpr t1, BitVecExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BitVecExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BitVecExpr(this, Native.Z3_mk_bvmul(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Unsigned division.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// It is defined as the floor of <c>t1/t2</c> if \c t2 is
|
|
/// different from zero. If <c>t2</c> is zero, then the result
|
|
/// is undefined.
|
|
/// The arguments must have the same bit-vector sort.
|
|
/// </remarks>
|
|
public BitVecExpr MkBVUDiv(BitVecExpr t1, BitVecExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BitVecExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BitVecExpr(this, Native.Z3_mk_bvudiv(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Signed division.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// It is defined in the following way:
|
|
///
|
|
/// - The \c floor of <c>t1/t2</c> if \c t2 is different from zero, and <c>t1*t2 >= 0</c>.
|
|
///
|
|
/// - The \c ceiling of <c>t1/t2</c> if \c t2 is different from zero, and <c>t1*t2 < 0</c>.
|
|
///
|
|
/// If <c>t2</c> is zero, then the result is undefined.
|
|
/// The arguments must have the same bit-vector sort.
|
|
/// </remarks>
|
|
public BitVecExpr MkBVSDiv(BitVecExpr t1, BitVecExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BitVecExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BitVecExpr(this, Native.Z3_mk_bvsdiv(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Unsigned remainder.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// It is defined as <c>t1 - (t1 /u t2) * t2</c>, where <c>/u</c> represents unsigned division.
|
|
/// If <c>t2</c> is zero, then the result is undefined.
|
|
/// The arguments must have the same bit-vector sort.
|
|
/// </remarks>
|
|
public BitVecExpr MkBVURem(BitVecExpr t1, BitVecExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BitVecExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BitVecExpr(this, Native.Z3_mk_bvurem(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Signed remainder.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// It is defined as <c>t1 - (t1 /s t2) * t2</c>, where <c>/s</c> represents signed division.
|
|
/// The most significant bit (sign) of the result is equal to the most significant bit of \c t1.
|
|
///
|
|
/// If <c>t2</c> is zero, then the result is undefined.
|
|
/// The arguments must have the same bit-vector sort.
|
|
/// </remarks>
|
|
public BitVecExpr MkBVSRem(BitVecExpr t1, BitVecExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BitVecExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BitVecExpr(this, Native.Z3_mk_bvsrem(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Two's complement signed remainder (sign follows divisor).
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// If <c>t2</c> is zero, then the result is undefined.
|
|
/// The arguments must have the same bit-vector sort.
|
|
/// </remarks>
|
|
public BitVecExpr MkBVSMod(BitVecExpr t1, BitVecExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BitVecExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BitVecExpr(this, Native.Z3_mk_bvsmod(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Unsigned less-than
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The arguments must have the same bit-vector sort.
|
|
/// </remarks>
|
|
public BoolExpr MkBVULT(BitVecExpr t1, BitVecExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BoolExpr(this, Native.Z3_mk_bvult(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Two's complement signed less-than
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The arguments must have the same bit-vector sort.
|
|
/// </remarks>
|
|
public BoolExpr MkBVSLT(BitVecExpr t1, BitVecExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BoolExpr(this, Native.Z3_mk_bvslt(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Unsigned less-than or equal to.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The arguments must have the same bit-vector sort.
|
|
/// </remarks>
|
|
public BoolExpr MkBVULE(BitVecExpr t1, BitVecExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BoolExpr(this, Native.Z3_mk_bvule(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Two's complement signed less-than or equal to.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The arguments must have the same bit-vector sort.
|
|
/// </remarks>
|
|
public BoolExpr MkBVSLE(BitVecExpr t1, BitVecExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BoolExpr(this, Native.Z3_mk_bvsle(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Unsigned greater than or equal to.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The arguments must have the same bit-vector sort.
|
|
/// </remarks>
|
|
public BoolExpr MkBVUGE(BitVecExpr t1, BitVecExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BoolExpr(this, Native.Z3_mk_bvuge(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Two's complement signed greater than or equal to.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The arguments must have the same bit-vector sort.
|
|
/// </remarks>
|
|
public BoolExpr MkBVSGE(BitVecExpr t1, BitVecExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BoolExpr(this, Native.Z3_mk_bvsge(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Unsigned greater-than.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The arguments must have the same bit-vector sort.
|
|
/// </remarks>
|
|
public BoolExpr MkBVUGT(BitVecExpr t1, BitVecExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BoolExpr(this, Native.Z3_mk_bvugt(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Two's complement signed greater-than.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The arguments must have the same bit-vector sort.
|
|
/// </remarks>
|
|
public BoolExpr MkBVSGT(BitVecExpr t1, BitVecExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BoolExpr(this, Native.Z3_mk_bvsgt(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Bit-vector concatenation.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The arguments must have a bit-vector sort.
|
|
/// </remarks>
|
|
/// <returns>
|
|
/// The result is a bit-vector of size <c>n1+n2</c>, where <c>n1</c> (<c>n2</c>)
|
|
/// is the size of <c>t1</c> (<c>t2</c>).
|
|
/// </returns>
|
|
public BitVecExpr MkConcat(BitVecExpr t1, BitVecExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BitVecExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BitVecExpr(this, Native.Z3_mk_concat(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Bit-vector extraction.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Extract the bits <paramref name="high"/> down to <paramref name="low"/> from a bitvector of
|
|
/// size <c>m</c> to yield a new bitvector of size <c>n</c>, where
|
|
/// <c>n = high - low + 1</c>.
|
|
/// The argument <paramref name="t"/> must have a bit-vector sort.
|
|
/// </remarks>
|
|
public BitVecExpr MkExtract(uint high, uint low, BitVecExpr t)
|
|
{
|
|
Contract.Requires(t != null);
|
|
Contract.Ensures(Contract.Result<BitVecExpr>() != null);
|
|
|
|
CheckContextMatch(t);
|
|
return new BitVecExpr(this, Native.Z3_mk_extract(nCtx, high, low, t.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Bit-vector sign extension.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Sign-extends the given bit-vector to the (signed) equivalent bitvector of
|
|
/// size <c>m+i</c>, where \c m is the size of the given bit-vector.
|
|
/// The argument <paramref name="t"/> must have a bit-vector sort.
|
|
/// </remarks>
|
|
public BitVecExpr MkSignExt(uint i, BitVecExpr t)
|
|
{
|
|
Contract.Requires(t != null);
|
|
Contract.Ensures(Contract.Result<BitVecExpr>() != null);
|
|
|
|
CheckContextMatch(t);
|
|
return new BitVecExpr(this, Native.Z3_mk_sign_ext(nCtx, i, t.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Bit-vector zero extension.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Extend the given bit-vector with zeros to the (unsigned) equivalent
|
|
/// bitvector of size <c>m+i</c>, where \c m is the size of the
|
|
/// given bit-vector.
|
|
/// The argument <paramref name="t"/> must have a bit-vector sort.
|
|
/// </remarks>
|
|
public BitVecExpr MkZeroExt(uint i, BitVecExpr t)
|
|
{
|
|
Contract.Requires(t != null);
|
|
Contract.Ensures(Contract.Result<BitVecExpr>() != null);
|
|
|
|
CheckContextMatch(t);
|
|
return new BitVecExpr(this, Native.Z3_mk_zero_ext(nCtx, i, t.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Bit-vector repetition.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The argument <paramref name="t"/> must have a bit-vector sort.
|
|
/// </remarks>
|
|
public BitVecExpr MkRepeat(uint i, BitVecExpr t)
|
|
{
|
|
Contract.Requires(t != null);
|
|
Contract.Ensures(Contract.Result<BitVecExpr>() != null);
|
|
|
|
CheckContextMatch(t);
|
|
return new BitVecExpr(this, Native.Z3_mk_repeat(nCtx, i, t.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Shift left.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// It is equivalent to multiplication by <c>2^x</c> where \c x is the value of <paramref name="t2"/>.
|
|
///
|
|
/// NB. The semantics of shift operations varies between environments. This
|
|
/// definition does not necessarily capture directly the semantics of the
|
|
/// programming language or assembly architecture you are modeling.
|
|
///
|
|
/// The arguments must have a bit-vector sort.
|
|
/// </remarks>
|
|
public BitVecExpr MkBVSHL(BitVecExpr t1, BitVecExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BitVecExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BitVecExpr(this, Native.Z3_mk_bvshl(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Logical shift right
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// It is equivalent to unsigned division by <c>2^x</c> where \c x is the value of <paramref name="t2"/>.
|
|
///
|
|
/// NB. The semantics of shift operations varies between environments. This
|
|
/// definition does not necessarily capture directly the semantics of the
|
|
/// programming language or assembly architecture you are modeling.
|
|
///
|
|
/// The arguments must have a bit-vector sort.
|
|
/// </remarks>
|
|
public BitVecExpr MkBVLSHR(BitVecExpr t1, BitVecExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BitVecExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BitVecExpr(this, Native.Z3_mk_bvlshr(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Arithmetic shift right
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// It is like logical shift right except that the most significant
|
|
/// bits of the result always copy the most significant bit of the
|
|
/// second argument.
|
|
///
|
|
/// NB. The semantics of shift operations varies between environments. This
|
|
/// definition does not necessarily capture directly the semantics of the
|
|
/// programming language or assembly architecture you are modeling.
|
|
///
|
|
/// The arguments must have a bit-vector sort.
|
|
/// </remarks>
|
|
public BitVecExpr MkBVASHR(BitVecExpr t1, BitVecExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BitVecExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BitVecExpr(this, Native.Z3_mk_bvashr(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Rotate Left.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Rotate bits of \c t to the left \c i times.
|
|
/// The argument <paramref name="t"/> must have a bit-vector sort.
|
|
/// </remarks>
|
|
public BitVecExpr MkBVRotateLeft(uint i, BitVecExpr t)
|
|
{
|
|
Contract.Requires(t != null);
|
|
Contract.Ensures(Contract.Result<BitVecExpr>() != null);
|
|
|
|
CheckContextMatch(t);
|
|
return new BitVecExpr(this, Native.Z3_mk_rotate_left(nCtx, i, t.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Rotate Right.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Rotate bits of \c t to the right \c i times.
|
|
/// The argument <paramref name="t"/> must have a bit-vector sort.
|
|
/// </remarks>
|
|
public BitVecExpr MkBVRotateRight(uint i, BitVecExpr t)
|
|
{
|
|
Contract.Requires(t != null);
|
|
Contract.Ensures(Contract.Result<BitVecExpr>() != null);
|
|
|
|
CheckContextMatch(t);
|
|
return new BitVecExpr(this, Native.Z3_mk_rotate_right(nCtx, i, t.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Rotate Left.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Rotate bits of <paramref name="t1"/> to the left <paramref name="t2"/> times.
|
|
/// The arguments must have the same bit-vector sort.
|
|
/// </remarks>
|
|
public BitVecExpr MkBVRotateLeft(BitVecExpr t1, BitVecExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BitVecExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BitVecExpr(this, Native.Z3_mk_ext_rotate_left(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Rotate Right.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Rotate bits of <paramref name="t1"/> to the right<paramref name="t2"/> times.
|
|
/// The arguments must have the same bit-vector sort.
|
|
/// </remarks>
|
|
public BitVecExpr MkBVRotateRight(BitVecExpr t1, BitVecExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BitVecExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BitVecExpr(this, Native.Z3_mk_ext_rotate_right(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create an <paramref name="n"/> bit bit-vector from the integer argument <paramref name="t"/>.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// NB. This function is essentially treated as uninterpreted.
|
|
/// So you cannot expect Z3 to precisely reflect the semantics of this function
|
|
/// when solving constraints with this function.
|
|
///
|
|
/// The argument must be of integer sort.
|
|
/// </remarks>
|
|
public BitVecExpr MkInt2BV(uint n, IntExpr t)
|
|
{
|
|
Contract.Requires(t != null);
|
|
Contract.Ensures(Contract.Result<BitVecExpr>() != null);
|
|
|
|
CheckContextMatch(t);
|
|
return new BitVecExpr(this, Native.Z3_mk_int2bv(nCtx, n, t.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create an integer from the bit-vector argument <paramref name="t"/>.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// If \c is_signed is false, then the bit-vector \c t1 is treated as unsigned.
|
|
/// So the result is non-negative and in the range <c>[0..2^N-1]</c>, where
|
|
/// N are the number of bits in <paramref name="t"/>.
|
|
/// If \c is_signed is true, \c t1 is treated as a signed bit-vector.
|
|
///
|
|
/// NB. This function is essentially treated as uninterpreted.
|
|
/// So you cannot expect Z3 to precisely reflect the semantics of this function
|
|
/// when solving constraints with this function.
|
|
///
|
|
/// The argument must be of bit-vector sort.
|
|
/// </remarks>
|
|
public IntExpr MkBV2Int(BitVecExpr t, bool signed)
|
|
{
|
|
Contract.Requires(t != null);
|
|
Contract.Ensures(Contract.Result<IntExpr>() != null);
|
|
|
|
CheckContextMatch(t);
|
|
return new IntExpr(this, Native.Z3_mk_bv2int(nCtx, t.NativeObject, (signed) ? 1 : 0));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a predicate that checks that the bit-wise addition does not overflow.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The arguments must be of bit-vector sort.
|
|
/// </remarks>
|
|
public BoolExpr MkBVAddNoOverflow(BitVecExpr t1, BitVecExpr t2, bool isSigned)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BoolExpr(this, Native.Z3_mk_bvadd_no_overflow(nCtx, t1.NativeObject, t2.NativeObject, (isSigned) ? 1 : 0));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a predicate that checks that the bit-wise addition does not underflow.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The arguments must be of bit-vector sort.
|
|
/// </remarks>
|
|
public BoolExpr MkBVAddNoUnderflow(BitVecExpr t1, BitVecExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BoolExpr(this, Native.Z3_mk_bvadd_no_underflow(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a predicate that checks that the bit-wise subtraction does not overflow.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The arguments must be of bit-vector sort.
|
|
/// </remarks>
|
|
public BoolExpr MkBVSubNoOverflow(BitVecExpr t1, BitVecExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BoolExpr(this, Native.Z3_mk_bvsub_no_overflow(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a predicate that checks that the bit-wise subtraction does not underflow.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The arguments must be of bit-vector sort.
|
|
/// </remarks>
|
|
public BoolExpr MkBVSubNoUnderflow(BitVecExpr t1, BitVecExpr t2, bool isSigned)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BoolExpr(this, Native.Z3_mk_bvsub_no_underflow(nCtx, t1.NativeObject, t2.NativeObject, (isSigned) ? 1 : 0));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a predicate that checks that the bit-wise signed division does not overflow.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The arguments must be of bit-vector sort.
|
|
/// </remarks>
|
|
public BoolExpr MkBVSDivNoOverflow(BitVecExpr t1, BitVecExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BoolExpr(this, Native.Z3_mk_bvsdiv_no_overflow(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a predicate that checks that the bit-wise negation does not overflow.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The arguments must be of bit-vector sort.
|
|
/// </remarks>
|
|
public BoolExpr MkBVNegNoOverflow(BitVecExpr t)
|
|
{
|
|
Contract.Requires(t != null);
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
CheckContextMatch(t);
|
|
return new BoolExpr(this, Native.Z3_mk_bvneg_no_overflow(nCtx, t.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a predicate that checks that the bit-wise multiplication does not overflow.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The arguments must be of bit-vector sort.
|
|
/// </remarks>
|
|
public BoolExpr MkBVMulNoOverflow(BitVecExpr t1, BitVecExpr t2, bool isSigned)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BoolExpr(this, Native.Z3_mk_bvmul_no_overflow(nCtx, t1.NativeObject, t2.NativeObject, (isSigned) ? 1 : 0));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a predicate that checks that the bit-wise multiplication does not underflow.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The arguments must be of bit-vector sort.
|
|
/// </remarks>
|
|
public BoolExpr MkBVMulNoUnderflow(BitVecExpr t1, BitVecExpr t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new BoolExpr(this, Native.Z3_mk_bvmul_no_underflow(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
#endregion
|
|
|
|
#region Arrays
|
|
/// <summary>
|
|
/// Create an array constant.
|
|
/// </summary>
|
|
public ArrayExpr MkArrayConst(Symbol name, Sort domain, Sort range)
|
|
{
|
|
Contract.Requires(name != null);
|
|
Contract.Requires(domain != null);
|
|
Contract.Requires(range != null);
|
|
Contract.Ensures(Contract.Result<ArrayExpr>() != null);
|
|
|
|
return (ArrayExpr)MkConst(name, MkArraySort(domain, range));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create an array constant.
|
|
/// </summary>
|
|
public ArrayExpr MkArrayConst(string name, Sort domain, Sort range)
|
|
{
|
|
Contract.Requires(domain != null);
|
|
Contract.Requires(range != null);
|
|
Contract.Ensures(Contract.Result<ArrayExpr>() != null);
|
|
|
|
return (ArrayExpr)MkConst(MkSymbol(name), MkArraySort(domain, range));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Array read.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The argument <c>a</c> is the array and <c>i</c> is the index
|
|
/// of the array that gets read.
|
|
///
|
|
/// The node <c>a</c> must have an array sort <c>[domain -> range]</c>,
|
|
/// and <c>i</c> must have the sort <c>domain</c>.
|
|
/// The sort of the result is <c>range</c>.
|
|
/// <seealso cref="MkArraySort"/>
|
|
/// <seealso cref="MkStore"/>
|
|
/// </remarks>
|
|
public Expr MkSelect(ArrayExpr a, Expr i)
|
|
{
|
|
Contract.Requires(a != null);
|
|
Contract.Requires(i != null);
|
|
Contract.Ensures(Contract.Result<Expr>() != null);
|
|
|
|
CheckContextMatch(a);
|
|
CheckContextMatch(i);
|
|
return Expr.Create(this, Native.Z3_mk_select(nCtx, a.NativeObject, i.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Array update.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The node <c>a</c> must have an array sort <c>[domain -> range]</c>,
|
|
/// <c>i</c> must have sort <c>domain</c>,
|
|
/// <c>v</c> must have sort range. The sort of the result is <c>[domain -> range]</c>.
|
|
/// The semantics of this function is given by the theory of arrays described in the SMT-LIB
|
|
/// standard. See http://smtlib.org for more details.
|
|
/// The result of this function is an array that is equal to <c>a</c>
|
|
/// (with respect to <c>select</c>)
|
|
/// on all indices except for <c>i</c>, where it maps to <c>v</c>
|
|
/// (and the <c>select</c> of <c>a</c> with
|
|
/// respect to <c>i</c> may be a different value).
|
|
/// <seealso cref="MkArraySort"/>
|
|
/// <seealso cref="MkSelect"/>
|
|
/// </remarks>
|
|
public ArrayExpr MkStore(ArrayExpr a, Expr i, Expr v)
|
|
{
|
|
Contract.Requires(a != null);
|
|
Contract.Requires(i != null);
|
|
Contract.Requires(v != null);
|
|
Contract.Ensures(Contract.Result<ArrayExpr>() != null);
|
|
|
|
CheckContextMatch(a);
|
|
CheckContextMatch(i);
|
|
CheckContextMatch(v);
|
|
return new ArrayExpr(this, Native.Z3_mk_store(nCtx, a.NativeObject, i.NativeObject, v.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a constant array.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The resulting term is an array, such that a <c>select</c>on an arbitrary index
|
|
/// produces the value <c>v</c>.
|
|
/// <seealso cref="MkArraySort"/>
|
|
/// <seealso cref="MkSelect"/>
|
|
/// </remarks>
|
|
public ArrayExpr MkConstArray(Sort domain, Expr v)
|
|
{
|
|
Contract.Requires(domain != null);
|
|
Contract.Requires(v != null);
|
|
Contract.Ensures(Contract.Result<ArrayExpr>() != null);
|
|
|
|
CheckContextMatch(domain);
|
|
CheckContextMatch(v);
|
|
return new ArrayExpr(this, Native.Z3_mk_const_array(nCtx, domain.NativeObject, v.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Maps f on the argument arrays.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Eeach element of <c>args</c> must be of an array sort <c>[domain_i -> range_i]</c>.
|
|
/// The function declaration <c>f</c> must have type <c> range_1 .. range_n -> range</c>.
|
|
/// <c>v</c> must have sort range. The sort of the result is <c>[domain_i -> range]</c>.
|
|
/// <seealso cref="MkArraySort"/>
|
|
/// <seealso cref="MkSelect"/>
|
|
/// <seealso cref="MkStore"/>
|
|
/// </remarks>
|
|
public ArrayExpr MkMap(FuncDecl f, params ArrayExpr[] args)
|
|
{
|
|
Contract.Requires(f != null);
|
|
Contract.Requires(args == null || Contract.ForAll(args, a => a != null));
|
|
Contract.Ensures(Contract.Result<ArrayExpr>() != null);
|
|
|
|
CheckContextMatch(f);
|
|
CheckContextMatch(args);
|
|
return (ArrayExpr)Expr.Create(this, Native.Z3_mk_map(nCtx, f.NativeObject, AST.ArrayLength(args), AST.ArrayToNative(args)));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Access the array default value.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Produces the default range value, for arrays that can be represented as
|
|
/// finite maps with a default range value.
|
|
/// </remarks>
|
|
public Expr MkTermArray(ArrayExpr array)
|
|
{
|
|
Contract.Requires(array != null);
|
|
Contract.Ensures(Contract.Result<Expr>() != null);
|
|
|
|
CheckContextMatch(array);
|
|
return Expr.Create(this, Native.Z3_mk_array_default(nCtx, array.NativeObject));
|
|
}
|
|
#endregion
|
|
|
|
#region Sets
|
|
/// <summary>
|
|
/// Create a set type.
|
|
/// </summary>
|
|
public SetSort MkSetSort(Sort ty)
|
|
{
|
|
Contract.Requires(ty != null);
|
|
Contract.Ensures(Contract.Result<SetSort>() != null);
|
|
|
|
CheckContextMatch(ty);
|
|
return new SetSort(this, ty);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create an empty set.
|
|
/// </summary>
|
|
public Expr MkEmptySet(Sort domain)
|
|
{
|
|
Contract.Requires(domain != null);
|
|
Contract.Ensures(Contract.Result<Expr>() != null);
|
|
|
|
CheckContextMatch(domain);
|
|
return Expr.Create(this, Native.Z3_mk_empty_set(nCtx, domain.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create the full set.
|
|
/// </summary>
|
|
public Expr MkFullSet(Sort domain)
|
|
{
|
|
Contract.Requires(domain != null);
|
|
Contract.Ensures(Contract.Result<Expr>() != null);
|
|
|
|
CheckContextMatch(domain);
|
|
return Expr.Create(this, Native.Z3_mk_full_set(nCtx, domain.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Add an element to the set.
|
|
/// </summary>
|
|
public Expr MkSetAdd(Expr set, Expr element)
|
|
{
|
|
Contract.Requires(set != null);
|
|
Contract.Requires(element != null);
|
|
Contract.Ensures(Contract.Result<Expr>() != null);
|
|
|
|
CheckContextMatch(set);
|
|
CheckContextMatch(element);
|
|
return Expr.Create(this, Native.Z3_mk_set_add(nCtx, set.NativeObject, element.NativeObject));
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// Remove an element from a set.
|
|
/// </summary>
|
|
public Expr MkSetDel(Expr set, Expr element)
|
|
{
|
|
Contract.Requires(set != null);
|
|
Contract.Requires(element != null);
|
|
Contract.Ensures(Contract.Result<Expr>() != null);
|
|
|
|
CheckContextMatch(set);
|
|
CheckContextMatch(element);
|
|
return Expr.Create(this, Native.Z3_mk_set_del(nCtx, set.NativeObject, element.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Take the union of a list of sets.
|
|
/// </summary>
|
|
public Expr MkSetUnion(params Expr[] args)
|
|
{
|
|
Contract.Requires(args != null);
|
|
Contract.Requires(Contract.ForAll(args, a => a != null));
|
|
|
|
CheckContextMatch(args);
|
|
return Expr.Create(this, Native.Z3_mk_set_union(nCtx, (uint)args.Length, AST.ArrayToNative(args)));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Take the intersection of a list of sets.
|
|
/// </summary>
|
|
public Expr MkSetIntersection(params Expr[] args)
|
|
{
|
|
Contract.Requires(args != null);
|
|
Contract.Requires(Contract.ForAll(args, a => a != null));
|
|
Contract.Ensures(Contract.Result<Expr>() != null);
|
|
|
|
CheckContextMatch(args);
|
|
return Expr.Create(this, Native.Z3_mk_set_intersect(nCtx, (uint)args.Length, AST.ArrayToNative(args)));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Take the difference between two sets.
|
|
/// </summary>
|
|
public Expr MkSetDifference(Expr arg1, Expr arg2)
|
|
{
|
|
Contract.Requires(arg1 != null);
|
|
Contract.Requires(arg2 != null);
|
|
Contract.Ensures(Contract.Result<Expr>() != null);
|
|
|
|
CheckContextMatch(arg1);
|
|
CheckContextMatch(arg2);
|
|
return Expr.Create(this, Native.Z3_mk_set_difference(nCtx, arg1.NativeObject, arg2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Take the complement of a set.
|
|
/// </summary>
|
|
public Expr MkSetComplement(Expr arg)
|
|
{
|
|
Contract.Requires(arg != null);
|
|
Contract.Ensures(Contract.Result<Expr>() != null);
|
|
|
|
CheckContextMatch(arg);
|
|
return Expr.Create(this, Native.Z3_mk_set_complement(nCtx, arg.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Check for set membership.
|
|
/// </summary>
|
|
public Expr MkSetMembership(Expr elem, Expr set)
|
|
{
|
|
Contract.Requires(elem != null);
|
|
Contract.Requires(set != null);
|
|
Contract.Ensures(Contract.Result<Expr>() != null);
|
|
|
|
CheckContextMatch(elem);
|
|
CheckContextMatch(set);
|
|
return Expr.Create(this, Native.Z3_mk_set_member(nCtx, elem.NativeObject, set.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Check for subsetness of sets.
|
|
/// </summary>
|
|
public Expr MkSetSubset(Expr arg1, Expr arg2)
|
|
{
|
|
Contract.Requires(arg1 != null);
|
|
Contract.Requires(arg2 != null);
|
|
Contract.Ensures(Contract.Result<Expr>() != null);
|
|
|
|
CheckContextMatch(arg1);
|
|
CheckContextMatch(arg2);
|
|
return Expr.Create(this, Native.Z3_mk_set_subset(nCtx, arg1.NativeObject, arg2.NativeObject));
|
|
}
|
|
#endregion
|
|
|
|
#region Numerals
|
|
|
|
#region General Numerals
|
|
/// <summary>
|
|
/// Create a Term of a given sort.
|
|
/// </summary>
|
|
/// <param name="v">A string representing the Term value in decimal notation. If the given sort is a real, then the Term can be a rational, that is, a string of the form <c>[num]* / [num]*</c>.</param>
|
|
/// <param name="ty">The sort of the numeral. In the current implementation, the given sort can be an int, real, or bit-vectors of arbitrary size. </param>
|
|
/// <returns>A Term with value <paramref name="v"/> and sort <paramref name="ty"/> </returns>
|
|
public Expr MkNumeral(string v, Sort ty)
|
|
{
|
|
Contract.Requires(ty != null);
|
|
Contract.Ensures(Contract.Result<Expr>() != null);
|
|
|
|
CheckContextMatch(ty);
|
|
return Expr.Create(this, Native.Z3_mk_numeral(nCtx, v, ty.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a Term of a given sort. This function can be use to create numerals that fit in a machine integer.
|
|
/// It is slightly faster than <c>MakeNumeral</c> since it is not necessary to parse a string.
|
|
/// </summary>
|
|
/// <param name="v">Value of the numeral</param>
|
|
/// <param name="ty">Sort of the numeral</param>
|
|
/// <returns>A Term with value <paramref name="v"/> and type <paramref name="ty"/></returns>
|
|
public Expr MkNumeral(int v, Sort ty)
|
|
{
|
|
Contract.Requires(ty != null);
|
|
Contract.Ensures(Contract.Result<Expr>() != null);
|
|
|
|
CheckContextMatch(ty);
|
|
return Expr.Create(this, Native.Z3_mk_int(nCtx, v, ty.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a Term of a given sort. This function can be use to create numerals that fit in a machine integer.
|
|
/// It is slightly faster than <c>MakeNumeral</c> since it is not necessary to parse a string.
|
|
/// </summary>
|
|
/// <param name="v">Value of the numeral</param>
|
|
/// <param name="ty">Sort of the numeral</param>
|
|
/// <returns>A Term with value <paramref name="v"/> and type <paramref name="ty"/></returns>
|
|
public Expr MkNumeral(uint v, Sort ty)
|
|
{
|
|
Contract.Requires(ty != null);
|
|
Contract.Ensures(Contract.Result<Expr>() != null);
|
|
|
|
CheckContextMatch(ty);
|
|
return Expr.Create(this, Native.Z3_mk_unsigned_int(nCtx, v, ty.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a Term of a given sort. This function can be use to create numerals that fit in a machine integer.
|
|
/// It is slightly faster than <c>MakeNumeral</c> since it is not necessary to parse a string.
|
|
/// </summary>
|
|
/// <param name="v">Value of the numeral</param>
|
|
/// <param name="ty">Sort of the numeral</param>
|
|
/// <returns>A Term with value <paramref name="v"/> and type <paramref name="ty"/></returns>
|
|
public Expr MkNumeral(long v, Sort ty)
|
|
{
|
|
Contract.Requires(ty != null);
|
|
Contract.Ensures(Contract.Result<Expr>() != null);
|
|
|
|
CheckContextMatch(ty);
|
|
return Expr.Create(this, Native.Z3_mk_int64(nCtx, v, ty.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a Term of a given sort. This function can be use to create numerals that fit in a machine integer.
|
|
/// It is slightly faster than <c>MakeNumeral</c> since it is not necessary to parse a string.
|
|
/// </summary>
|
|
/// <param name="v">Value of the numeral</param>
|
|
/// <param name="ty">Sort of the numeral</param>
|
|
/// <returns>A Term with value <paramref name="v"/> and type <paramref name="ty"/></returns>
|
|
public Expr MkNumeral(ulong v, Sort ty)
|
|
{
|
|
Contract.Requires(ty != null);
|
|
Contract.Ensures(Contract.Result<Expr>() != null);
|
|
|
|
CheckContextMatch(ty);
|
|
return Expr.Create(this, Native.Z3_mk_unsigned_int64(nCtx, v, ty.NativeObject));
|
|
}
|
|
#endregion
|
|
|
|
#region Reals
|
|
/// <summary>
|
|
/// Create a real from a fraction.
|
|
/// </summary>
|
|
/// <param name="num">numerator of rational.</param>
|
|
/// <param name="den">denominator of rational.</param>
|
|
/// <returns>A Term with value <paramref name="num"/>/<paramref name="den"/> and sort Real</returns>
|
|
/// <seealso cref="MkNumeral(string, Sort)"/>
|
|
public RatNum MkReal(int num, int den)
|
|
{
|
|
if (den == 0)
|
|
throw new Z3Exception("Denominator is zero");
|
|
|
|
Contract.Ensures(Contract.Result<RatNum>() != null);
|
|
Contract.EndContractBlock();
|
|
|
|
return new RatNum(this, Native.Z3_mk_real(nCtx, num, den));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a real numeral.
|
|
/// </summary>
|
|
/// <param name="v">A string representing the Term value in decimal notation.</param>
|
|
/// <returns>A Term with value <paramref name="v"/> and sort Real</returns>
|
|
public RatNum MkReal(string v)
|
|
{
|
|
Contract.Ensures(Contract.Result<RatNum>() != null);
|
|
|
|
return new RatNum(this, Native.Z3_mk_numeral(nCtx, v, RealSort.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a real numeral.
|
|
/// </summary>
|
|
/// <param name="v">value of the numeral.</param>
|
|
/// <returns>A Term with value <paramref name="v"/> and sort Real</returns>
|
|
public RatNum MkReal(int v)
|
|
{
|
|
Contract.Ensures(Contract.Result<RatNum>() != null);
|
|
|
|
return new RatNum(this, Native.Z3_mk_int(nCtx, v, RealSort.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a real numeral.
|
|
/// </summary>
|
|
/// <param name="v">value of the numeral.</param>
|
|
/// <returns>A Term with value <paramref name="v"/> and sort Real</returns>
|
|
public RatNum MkReal(uint v)
|
|
{
|
|
Contract.Ensures(Contract.Result<RatNum>() != null);
|
|
|
|
return new RatNum(this, Native.Z3_mk_unsigned_int(nCtx, v, RealSort.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a real numeral.
|
|
/// </summary>
|
|
/// <param name="v">value of the numeral.</param>
|
|
/// <returns>A Term with value <paramref name="v"/> and sort Real</returns>
|
|
public RatNum MkReal(long v)
|
|
{
|
|
Contract.Ensures(Contract.Result<RatNum>() != null);
|
|
|
|
return new RatNum(this, Native.Z3_mk_int64(nCtx, v, RealSort.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a real numeral.
|
|
/// </summary>
|
|
/// <param name="v">value of the numeral.</param>
|
|
/// <returns>A Term with value <paramref name="v"/> and sort Real</returns>
|
|
public RatNum MkReal(ulong v)
|
|
{
|
|
Contract.Ensures(Contract.Result<RatNum>() != null);
|
|
|
|
return new RatNum(this, Native.Z3_mk_unsigned_int64(nCtx, v, RealSort.NativeObject));
|
|
}
|
|
#endregion
|
|
|
|
#region Integers
|
|
/// <summary>
|
|
/// Create an integer numeral.
|
|
/// </summary>
|
|
/// <param name="v">A string representing the Term value in decimal notation.</param>
|
|
public IntNum MkInt(string v)
|
|
{
|
|
Contract.Ensures(Contract.Result<IntNum>() != null);
|
|
|
|
return new IntNum(this, Native.Z3_mk_numeral(nCtx, v, IntSort.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create an integer numeral.
|
|
/// </summary>
|
|
/// <param name="v">value of the numeral.</param>
|
|
/// <returns>A Term with value <paramref name="v"/> and sort Integer</returns>
|
|
public IntNum MkInt(int v)
|
|
{
|
|
Contract.Ensures(Contract.Result<IntNum>() != null);
|
|
|
|
return new IntNum(this, Native.Z3_mk_int(nCtx, v, IntSort.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create an integer numeral.
|
|
/// </summary>
|
|
/// <param name="v">value of the numeral.</param>
|
|
/// <returns>A Term with value <paramref name="v"/> and sort Integer</returns>
|
|
public IntNum MkInt(uint v)
|
|
{
|
|
Contract.Ensures(Contract.Result<IntNum>() != null);
|
|
|
|
return new IntNum(this, Native.Z3_mk_unsigned_int(nCtx, v, IntSort.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create an integer numeral.
|
|
/// </summary>
|
|
/// <param name="v">value of the numeral.</param>
|
|
/// <returns>A Term with value <paramref name="v"/> and sort Integer</returns>
|
|
public IntNum MkInt(long v)
|
|
{
|
|
Contract.Ensures(Contract.Result<IntNum>() != null);
|
|
|
|
return new IntNum(this, Native.Z3_mk_int64(nCtx, v, IntSort.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create an integer numeral.
|
|
/// </summary>
|
|
/// <param name="v">value of the numeral.</param>
|
|
/// <returns>A Term with value <paramref name="v"/> and sort Integer</returns>
|
|
public IntNum MkInt(ulong v)
|
|
{
|
|
Contract.Ensures(Contract.Result<IntNum>() != null);
|
|
|
|
return new IntNum(this, Native.Z3_mk_unsigned_int64(nCtx, v, IntSort.NativeObject));
|
|
}
|
|
#endregion
|
|
|
|
#region Bit-vectors
|
|
/// <summary>
|
|
/// Create a bit-vector numeral.
|
|
/// </summary>
|
|
/// <param name="v">A string representing the value in decimal notation.</param>
|
|
/// <param name="size">the size of the bit-vector</param>
|
|
public BitVecNum MkBV(string v, uint size)
|
|
{
|
|
Contract.Ensures(Contract.Result<BitVecNum>() != null);
|
|
|
|
return (BitVecNum)MkNumeral(v, MkBitVecSort(size));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a bit-vector numeral.
|
|
/// </summary>
|
|
/// <param name="v">value of the numeral.</param>
|
|
/// <param name="size">the size of the bit-vector</param>
|
|
public BitVecNum MkBV(int v, uint size)
|
|
{
|
|
Contract.Ensures(Contract.Result<BitVecNum>() != null);
|
|
|
|
return (BitVecNum)MkNumeral(v, MkBitVecSort(size));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a bit-vector numeral.
|
|
/// </summary>
|
|
/// <param name="v">value of the numeral.</param>
|
|
/// <param name="size">the size of the bit-vector</param>
|
|
public BitVecNum MkBV(uint v, uint size)
|
|
{
|
|
Contract.Ensures(Contract.Result<BitVecNum>() != null);
|
|
|
|
return (BitVecNum)MkNumeral(v, MkBitVecSort(size));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a bit-vector numeral.
|
|
/// </summary>
|
|
/// <param name="v">value of the numeral.</param>
|
|
/// /// <param name="size">the size of the bit-vector</param>
|
|
public BitVecNum MkBV(long v, uint size)
|
|
{
|
|
Contract.Ensures(Contract.Result<BitVecNum>() != null);
|
|
|
|
return (BitVecNum)MkNumeral(v, MkBitVecSort(size));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a bit-vector numeral.
|
|
/// </summary>
|
|
/// <param name="v">value of the numeral.</param>
|
|
/// <param name="size">the size of the bit-vector</param>
|
|
public BitVecNum MkBV(ulong v, uint size)
|
|
{
|
|
Contract.Ensures(Contract.Result<BitVecNum>() != null);
|
|
|
|
return (BitVecNum)MkNumeral(v, MkBitVecSort(size));
|
|
}
|
|
#endregion
|
|
|
|
#endregion // Numerals
|
|
|
|
#region Quantifiers
|
|
/// <summary>
|
|
/// Create a universal Quantifier.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Creates a forall formula, where <paramref name="weight"/> is the weight,
|
|
/// <paramref name="patterns"/> is an array of patterns, <paramref name="sorts"/> is an array
|
|
/// with the sorts of the bound variables, <paramref name="names"/> is an array with the
|
|
/// 'names' of the bound variables, and <paramref name="body"/> is the body of the
|
|
/// quantifier. Quantifiers are associated with weights indicating
|
|
/// the importance of using the quantifier during instantiation.
|
|
/// </remarks>
|
|
/// <param name="sorts">the sorts of the bound variables.</param>
|
|
/// <param name="names">names of the bound variables</param>
|
|
/// <param name="body">the body of the quantifier.</param>
|
|
/// <param name="weight">quantifiers are associated with weights indicating the importance of using the quantifier during instantiation. By default, pass the weight 0.</param>
|
|
/// <param name="patterns">array containing the patterns created using <c>MkPattern</c>.</param>
|
|
/// <param name="noPatterns">array containing the anti-patterns created using <c>MkPattern</c>.</param>
|
|
/// <param name="quantifierID">optional symbol to track quantifier.</param>
|
|
/// <param name="skolemID">optional symbol to track skolem constants.</param>
|
|
public Quantifier MkForall(Sort[] sorts, Symbol[] names, Expr body, uint weight = 1, Pattern[] patterns = null, Expr[] noPatterns = null, Symbol quantifierID = null, Symbol skolemID = null)
|
|
{
|
|
Contract.Requires(sorts != null);
|
|
Contract.Requires(names != null);
|
|
Contract.Requires(body != null);
|
|
Contract.Requires(sorts.Length == names.Length);
|
|
Contract.Requires(Contract.ForAll(sorts, s => s != null));
|
|
Contract.Requires(Contract.ForAll(names, n => n != null));
|
|
Contract.Requires(patterns == null || Contract.ForAll(patterns, p => p != null));
|
|
Contract.Requires(noPatterns == null || Contract.ForAll(noPatterns, np => np != null));
|
|
|
|
Contract.Ensures(Contract.Result<Quantifier>() != null);
|
|
|
|
return new Quantifier(this, true, sorts, names, body, weight, patterns, noPatterns, quantifierID, skolemID);
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// Create a universal Quantifier.
|
|
/// </summary>
|
|
public Quantifier MkForall(Expr[] boundConstants, Expr body, uint weight = 1, Pattern[] patterns = null, Expr[] noPatterns = null, Symbol quantifierID = null, Symbol skolemID = null)
|
|
{
|
|
Contract.Requires(body != null);
|
|
Contract.Requires(boundConstants == null || Contract.ForAll(boundConstants, b => b != null));
|
|
Contract.Requires(patterns == null || Contract.ForAll(patterns, p => p != null));
|
|
Contract.Requires(noPatterns == null || Contract.ForAll(noPatterns, np => np != null));
|
|
|
|
Contract.Ensures(Contract.Result<Quantifier>() != null);
|
|
|
|
return new Quantifier(this, true, boundConstants, body, weight, patterns, noPatterns, quantifierID, skolemID);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create an existential Quantifier.
|
|
/// </summary>
|
|
/// <seealso cref="MkForall(Sort[],Symbol[],Expr,uint,Pattern[],Expr[],Symbol,Symbol)"/>
|
|
public Quantifier MkExists(Sort[] sorts, Symbol[] names, Expr body, uint weight = 1, Pattern[] patterns = null, Expr[] noPatterns = null, Symbol quantifierID = null, Symbol skolemID = null)
|
|
{
|
|
Contract.Requires(sorts != null);
|
|
Contract.Requires(names != null);
|
|
Contract.Requires(body != null);
|
|
Contract.Requires(sorts.Length == names.Length);
|
|
Contract.Requires(Contract.ForAll(sorts, s => s != null));
|
|
Contract.Requires(Contract.ForAll(names, n => n != null));
|
|
Contract.Requires(patterns == null || Contract.ForAll(patterns, p => p != null));
|
|
Contract.Requires(noPatterns == null || Contract.ForAll(noPatterns, np => np != null));
|
|
Contract.Ensures(Contract.Result<Quantifier>() != null);
|
|
|
|
return new Quantifier(this, false, sorts, names, body, weight, patterns, noPatterns, quantifierID, skolemID);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create an existential Quantifier.
|
|
/// </summary>
|
|
public Quantifier MkExists(Expr[] boundConstants, Expr body, uint weight = 1, Pattern[] patterns = null, Expr[] noPatterns = null, Symbol quantifierID = null, Symbol skolemID = null)
|
|
{
|
|
Contract.Requires(body != null);
|
|
Contract.Requires(boundConstants == null || Contract.ForAll(boundConstants, n => n != null));
|
|
Contract.Requires(patterns == null || Contract.ForAll(patterns, p => p != null));
|
|
Contract.Requires(noPatterns == null || Contract.ForAll(noPatterns, np => np != null));
|
|
Contract.Ensures(Contract.Result<Quantifier>() != null);
|
|
|
|
return new Quantifier(this, false, boundConstants, body, weight, patterns, noPatterns, quantifierID, skolemID);
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// Create a Quantifier.
|
|
/// </summary>
|
|
public Quantifier MkQuantifier(bool universal, Sort[] sorts, Symbol[] names, Expr body, uint weight = 1, Pattern[] patterns = null, Expr[] noPatterns = null, Symbol quantifierID = null, Symbol skolemID = null)
|
|
{
|
|
Contract.Requires(body != null);
|
|
Contract.Requires(names != null);
|
|
Contract.Requires(sorts != null);
|
|
Contract.Requires(sorts.Length == names.Length);
|
|
Contract.Requires(Contract.ForAll(sorts, s => s != null));
|
|
Contract.Requires(Contract.ForAll(names, n => n != null));
|
|
Contract.Requires(patterns == null || Contract.ForAll(patterns, p => p != null));
|
|
Contract.Requires(noPatterns == null || Contract.ForAll(noPatterns, np => np != null));
|
|
|
|
Contract.Ensures(Contract.Result<Quantifier>() != null);
|
|
|
|
if (universal)
|
|
return MkForall(sorts, names, body, weight, patterns, noPatterns, quantifierID, skolemID);
|
|
else
|
|
return MkExists(sorts, names, body, weight, patterns, noPatterns, quantifierID, skolemID);
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// Create a Quantifier.
|
|
/// </summary>
|
|
public Quantifier MkQuantifier(bool universal, Expr[] boundConstants, Expr body, uint weight = 1, Pattern[] patterns = null, Expr[] noPatterns = null, Symbol quantifierID = null, Symbol skolemID = null)
|
|
{
|
|
Contract.Requires(body != null);
|
|
Contract.Requires(boundConstants == null || Contract.ForAll(boundConstants, n => n != null));
|
|
Contract.Requires(patterns == null || Contract.ForAll(patterns, p => p != null));
|
|
Contract.Requires(noPatterns == null || Contract.ForAll(noPatterns, np => np != null));
|
|
|
|
Contract.Ensures(Contract.Result<Quantifier>() != null);
|
|
|
|
if (universal)
|
|
return MkForall(boundConstants, body, weight, patterns, noPatterns, quantifierID, skolemID);
|
|
else
|
|
return MkExists(boundConstants, body, weight, patterns, noPatterns, quantifierID, skolemID);
|
|
}
|
|
|
|
#endregion
|
|
|
|
#endregion // Expr
|
|
|
|
#region Options
|
|
/// <summary>
|
|
/// Selects the format used for pretty-printing expressions.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The default mode for pretty printing expressions is to produce
|
|
/// SMT-LIB style output where common subexpressions are printed
|
|
/// at each occurrence. The mode is called Z3_PRINT_SMTLIB_FULL.
|
|
/// To print shared common subexpressions only once,
|
|
/// use the Z3_PRINT_LOW_LEVEL mode.
|
|
/// To print in way that conforms to SMT-LIB standards and uses let
|
|
/// expressions to share common sub-expressions use Z3_PRINT_SMTLIB_COMPLIANT.
|
|
/// </remarks>
|
|
/// <seealso cref="AST.ToString()"/>
|
|
/// <seealso cref="Pattern.ToString()"/>
|
|
/// <seealso cref="FuncDecl.ToString()"/>
|
|
/// <seealso cref="Sort.ToString()"/>
|
|
public Z3_ast_print_mode PrintMode
|
|
{
|
|
set { Native.Z3_set_ast_print_mode(nCtx, (uint)value); }
|
|
}
|
|
#endregion
|
|
|
|
#region SMT Files & Strings
|
|
/// <summary>
|
|
/// Convert a benchmark into an SMT-LIB formatted string.
|
|
/// </summary>
|
|
/// <param name="name">Name of the benchmark. The argument is optional.</param>
|
|
/// <param name="logic">The benchmark logic. </param>
|
|
/// <param name="status">The status string (sat, unsat, or unknown)</param>
|
|
/// <param name="attributes">Other attributes, such as source, difficulty or category.</param>
|
|
/// <param name="assumptions">Auxiliary assumptions.</param>
|
|
/// <param name="formula">Formula to be checked for consistency in conjunction with assumptions.</param>
|
|
/// <returns>A string representation of the benchmark.</returns>
|
|
public string BenchmarkToSMTString(string name, string logic, string status, string attributes,
|
|
BoolExpr[] assumptions, BoolExpr formula)
|
|
{
|
|
Contract.Requires(assumptions != null);
|
|
Contract.Requires(formula != null);
|
|
Contract.Ensures(Contract.Result<string>() != null);
|
|
|
|
return Native.Z3_benchmark_to_smtlib_string(nCtx, name, logic, status, attributes,
|
|
(uint)assumptions.Length, AST.ArrayToNative(assumptions),
|
|
formula.NativeObject);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Parse the given string using the SMT-LIB parser.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The symbol table of the parser can be initialized using the given sorts and declarations.
|
|
/// The symbols in the arrays <paramref name="sortNames"/> and <paramref name="declNames"/>
|
|
/// don't need to match the names of the sorts and declarations in the arrays <paramref name="sorts"/>
|
|
/// and <paramref name="decls"/>. This is a useful feature since we can use arbitrary names to
|
|
/// reference sorts and declarations.
|
|
/// </remarks>
|
|
public void ParseSMTLIBString(string str, Symbol[] sortNames = null, Sort[] sorts = null, Symbol[] declNames = null, FuncDecl[] decls = null)
|
|
{
|
|
uint csn = Symbol.ArrayLength(sortNames);
|
|
uint cs = Sort.ArrayLength(sorts);
|
|
uint cdn = Symbol.ArrayLength(declNames);
|
|
uint cd = AST.ArrayLength(decls);
|
|
if (csn != cs || cdn != cd)
|
|
throw new Z3Exception("Argument size mismatch");
|
|
Native.Z3_parse_smtlib_string(nCtx, str,
|
|
AST.ArrayLength(sorts), Symbol.ArrayToNative(sortNames), AST.ArrayToNative(sorts),
|
|
AST.ArrayLength(decls), Symbol.ArrayToNative(declNames), AST.ArrayToNative(decls));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Parse the given file using the SMT-LIB parser.
|
|
/// </summary>
|
|
/// <seealso cref="ParseSMTLIBString"/>
|
|
public void ParseSMTLIBFile(string fileName, Symbol[] sortNames = null, Sort[] sorts = null, Symbol[] declNames = null, FuncDecl[] decls = null)
|
|
{
|
|
uint csn = Symbol.ArrayLength(sortNames);
|
|
uint cs = Sort.ArrayLength(sorts);
|
|
uint cdn = Symbol.ArrayLength(declNames);
|
|
uint cd = AST.ArrayLength(decls);
|
|
if (csn != cs || cdn != cd)
|
|
throw new Z3Exception("Argument size mismatch");
|
|
Native.Z3_parse_smtlib_file(nCtx, fileName,
|
|
AST.ArrayLength(sorts), Symbol.ArrayToNative(sortNames), AST.ArrayToNative(sorts),
|
|
AST.ArrayLength(decls), Symbol.ArrayToNative(declNames), AST.ArrayToNative(decls));
|
|
}
|
|
|
|
/// <summary>
|
|
/// The number of SMTLIB formulas parsed by the last call to <c>ParseSMTLIBString</c> or <c>ParseSMTLIBFile</c>.
|
|
/// </summary>
|
|
public uint NumSMTLIBFormulas { get { return Native.Z3_get_smtlib_num_formulas(nCtx); } }
|
|
|
|
/// <summary>
|
|
/// The formulas parsed by the last call to <c>ParseSMTLIBString</c> or <c>ParseSMTLIBFile</c>.
|
|
/// </summary>
|
|
public BoolExpr[] SMTLIBFormulas
|
|
{
|
|
get
|
|
{
|
|
Contract.Ensures(Contract.Result<BoolExpr[]>() != null);
|
|
|
|
uint n = NumSMTLIBFormulas;
|
|
BoolExpr[] res = new BoolExpr[n];
|
|
for (uint i = 0; i < n; i++)
|
|
res[i] = (BoolExpr)Expr.Create(this, Native.Z3_get_smtlib_formula(nCtx, i));
|
|
return res;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// The number of SMTLIB assumptions parsed by the last call to <c>ParseSMTLIBString</c> or <c>ParseSMTLIBFile</c>.
|
|
/// </summary>
|
|
public uint NumSMTLIBAssumptions { get { return Native.Z3_get_smtlib_num_assumptions(nCtx); } }
|
|
|
|
/// <summary>
|
|
/// The assumptions parsed by the last call to <c>ParseSMTLIBString</c> or <c>ParseSMTLIBFile</c>.
|
|
/// </summary>
|
|
public BoolExpr[] SMTLIBAssumptions
|
|
{
|
|
get
|
|
{
|
|
Contract.Ensures(Contract.Result<BoolExpr[]>() != null);
|
|
|
|
uint n = NumSMTLIBAssumptions;
|
|
BoolExpr[] res = new BoolExpr[n];
|
|
for (uint i = 0; i < n; i++)
|
|
res[i] = (BoolExpr)Expr.Create(this, Native.Z3_get_smtlib_assumption(nCtx, i));
|
|
return res;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// The number of SMTLIB declarations parsed by the last call to <c>ParseSMTLIBString</c> or <c>ParseSMTLIBFile</c>.
|
|
/// </summary>
|
|
public uint NumSMTLIBDecls { get { return Native.Z3_get_smtlib_num_decls(nCtx); } }
|
|
|
|
/// <summary>
|
|
/// The declarations parsed by the last call to <c>ParseSMTLIBString</c> or <c>ParseSMTLIBFile</c>.
|
|
/// </summary>
|
|
public FuncDecl[] SMTLIBDecls
|
|
{
|
|
get
|
|
{
|
|
Contract.Ensures(Contract.Result<FuncDecl[]>() != null);
|
|
|
|
uint n = NumSMTLIBDecls;
|
|
FuncDecl[] res = new FuncDecl[n];
|
|
for (uint i = 0; i < n; i++)
|
|
res[i] = new FuncDecl(this, Native.Z3_get_smtlib_decl(nCtx, i));
|
|
return res;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// The number of SMTLIB sorts parsed by the last call to <c>ParseSMTLIBString</c> or <c>ParseSMTLIBFile</c>.
|
|
/// </summary>
|
|
public uint NumSMTLIBSorts { get { return Native.Z3_get_smtlib_num_sorts(nCtx); } }
|
|
|
|
/// <summary>
|
|
/// The declarations parsed by the last call to <c>ParseSMTLIBString</c> or <c>ParseSMTLIBFile</c>.
|
|
/// </summary>
|
|
public Sort[] SMTLIBSorts
|
|
{
|
|
get
|
|
{
|
|
Contract.Ensures(Contract.Result<Sort[]>() != null);
|
|
|
|
uint n = NumSMTLIBSorts;
|
|
Sort[] res = new Sort[n];
|
|
for (uint i = 0; i < n; i++)
|
|
res[i] = Sort.Create(this, Native.Z3_get_smtlib_sort(nCtx, i));
|
|
return res;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Parse the given string using the SMT-LIB2 parser.
|
|
/// </summary>
|
|
/// <seealso cref="ParseSMTLIBString"/>
|
|
/// <returns>A conjunction of assertions in the scope (up to push/pop) at the end of the string.</returns>
|
|
public BoolExpr ParseSMTLIB2String(string str, Symbol[] sortNames = null, Sort[] sorts = null, Symbol[] declNames = null, FuncDecl[] decls = null)
|
|
{
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
uint csn = Symbol.ArrayLength(sortNames);
|
|
uint cs = Sort.ArrayLength(sorts);
|
|
uint cdn = Symbol.ArrayLength(declNames);
|
|
uint cd = AST.ArrayLength(decls);
|
|
if (csn != cs || cdn != cd)
|
|
throw new Z3Exception("Argument size mismatch");
|
|
return (BoolExpr)Expr.Create(this, Native.Z3_parse_smtlib2_string(nCtx, str,
|
|
AST.ArrayLength(sorts), Symbol.ArrayToNative(sortNames), AST.ArrayToNative(sorts),
|
|
AST.ArrayLength(decls), Symbol.ArrayToNative(declNames), AST.ArrayToNative(decls)));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Parse the given file using the SMT-LIB2 parser.
|
|
/// </summary>
|
|
/// <seealso cref="ParseSMTLIB2String"/>
|
|
public BoolExpr ParseSMTLIB2File(string fileName, Symbol[] sortNames = null, Sort[] sorts = null, Symbol[] declNames = null, FuncDecl[] decls = null)
|
|
{
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
|
|
uint csn = Symbol.ArrayLength(sortNames);
|
|
uint cs = Sort.ArrayLength(sorts);
|
|
uint cdn = Symbol.ArrayLength(declNames);
|
|
uint cd = AST.ArrayLength(decls);
|
|
if (csn != cs || cdn != cd)
|
|
throw new Z3Exception("Argument size mismatch");
|
|
return (BoolExpr)Expr.Create(this, Native.Z3_parse_smtlib2_file(nCtx, fileName,
|
|
AST.ArrayLength(sorts), Symbol.ArrayToNative(sortNames), AST.ArrayToNative(sorts),
|
|
AST.ArrayLength(decls), Symbol.ArrayToNative(declNames), AST.ArrayToNative(decls)));
|
|
}
|
|
#endregion
|
|
|
|
#region Goals
|
|
/// <summary>
|
|
/// Creates a new Goal.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Note that the Context must have been created with proof generation support if
|
|
/// <paramref name="proofs"/> is set to true here.
|
|
/// </remarks>
|
|
/// <param name="models">Indicates whether model generation should be enabled.</param>
|
|
/// <param name="unsatCores">Indicates whether unsat core generation should be enabled.</param>
|
|
/// <param name="proofs">Indicates whether proof generation should be enabled.</param>
|
|
public Goal MkGoal(bool models = true, bool unsatCores = false, bool proofs = false)
|
|
{
|
|
Contract.Ensures(Contract.Result<Goal>() != null);
|
|
|
|
return new Goal(this, models, unsatCores, proofs);
|
|
}
|
|
#endregion
|
|
|
|
#region ParameterSets
|
|
/// <summary>
|
|
/// Creates a new ParameterSet.
|
|
/// </summary>
|
|
public Params MkParams()
|
|
{
|
|
Contract.Ensures(Contract.Result<Params>() != null);
|
|
|
|
return new Params(this);
|
|
}
|
|
#endregion
|
|
|
|
#region Tactics
|
|
/// <summary>
|
|
/// The number of supported tactics.
|
|
/// </summary>
|
|
public uint NumTactics
|
|
{
|
|
get { return Native.Z3_get_num_tactics(nCtx); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// The names of all supported tactics.
|
|
/// </summary>
|
|
public string[] TacticNames
|
|
{
|
|
get
|
|
{
|
|
Contract.Ensures(Contract.Result<string[]>() != null);
|
|
|
|
uint n = NumTactics;
|
|
string[] res = new string[n];
|
|
for (uint i = 0; i < n; i++)
|
|
res[i] = Native.Z3_get_tactic_name(nCtx, i);
|
|
return res;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns a string containing a description of the tactic with the given name.
|
|
/// </summary>
|
|
public string TacticDescription(string name)
|
|
{
|
|
Contract.Ensures(Contract.Result<string>() != null);
|
|
|
|
return Native.Z3_tactic_get_descr(nCtx, name);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a new Tactic.
|
|
/// </summary>
|
|
public Tactic MkTactic(string name)
|
|
{
|
|
Contract.Ensures(Contract.Result<Tactic>() != null);
|
|
|
|
return new Tactic(this, name);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a tactic that applies <paramref name="t1"/> to a Goal and
|
|
/// then <paramref name="t2"/> to every subgoal produced by <paramref name="t1"/>.
|
|
/// </summary>
|
|
public Tactic AndThen(Tactic t1, Tactic t2, params Tactic[] ts)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Requires(ts == null || Contract.ForAll(0, ts.Length, j => ts[j] != null));
|
|
Contract.Ensures(Contract.Result<Tactic>() != null);
|
|
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
CheckContextMatch(ts);
|
|
|
|
IntPtr last = IntPtr.Zero;
|
|
if (ts != null && ts.Length > 0)
|
|
{
|
|
last = ts[ts.Length - 1].NativeObject;
|
|
for (int i = ts.Length - 2; i >= 0; i--)
|
|
last = Native.Z3_tactic_and_then(nCtx, ts[i].NativeObject, last);
|
|
}
|
|
if (last != IntPtr.Zero)
|
|
{
|
|
last = Native.Z3_tactic_and_then(nCtx, t2.NativeObject, last);
|
|
return new Tactic(this, Native.Z3_tactic_and_then(nCtx, t1.NativeObject, last));
|
|
}
|
|
else
|
|
return new Tactic(this, Native.Z3_tactic_and_then(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a tactic that applies <paramref name="t1"/> to a Goal and
|
|
/// then <paramref name="t2"/> to every subgoal produced by <paramref name="t1"/>.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Shorthand for <c>AndThen</c>.
|
|
/// </remarks>
|
|
public Tactic Then(Tactic t1, Tactic t2, params Tactic[] ts)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Requires(ts == null || Contract.ForAll(0, ts.Length, j => ts[j] != null));
|
|
Contract.Ensures(Contract.Result<Tactic>() != null);
|
|
|
|
return AndThen(t1, t2, ts);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a tactic that first applies <paramref name="t1"/> to a Goal and
|
|
/// if it fails then returns the result of <paramref name="t2"/> applied to the Goal.
|
|
/// </summary>
|
|
public Tactic OrElse(Tactic t1, Tactic t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<Tactic>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new Tactic(this, Native.Z3_tactic_or_else(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a tactic that applies <paramref name="t"/> to a goal for <paramref name="ms"/> milliseconds.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// If <paramref name="t"/> does not terminate within <paramref name="ms"/> milliseconds, then it fails.
|
|
/// </remarks>
|
|
public Tactic TryFor(Tactic t, uint ms)
|
|
{
|
|
Contract.Requires(t != null);
|
|
Contract.Ensures(Contract.Result<Tactic>() != null);
|
|
|
|
CheckContextMatch(t);
|
|
return new Tactic(this, Native.Z3_tactic_try_for(nCtx, t.NativeObject, ms));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a tactic that applies <paramref name="t"/> to a given goal if the probe
|
|
/// <paramref name="p"/> evaluates to true.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// If <paramref name="p"/> evaluates to false, then the new tactic behaves like the <c>skip</c> tactic.
|
|
/// </remarks>
|
|
public Tactic When(Probe p, Tactic t)
|
|
{
|
|
Contract.Requires(p != null);
|
|
Contract.Requires(t != null);
|
|
Contract.Ensures(Contract.Result<Tactic>() != null);
|
|
|
|
CheckContextMatch(t);
|
|
CheckContextMatch(p);
|
|
return new Tactic(this, Native.Z3_tactic_when(nCtx, p.NativeObject, t.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a tactic that applies <paramref name="t1"/> to a given goal if the probe
|
|
/// <paramref name="p"/> evaluates to true and <paramref name="t2"/> otherwise.
|
|
/// </summary>
|
|
public Tactic Cond(Probe p, Tactic t1, Tactic t2)
|
|
{
|
|
Contract.Requires(p != null);
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<Tactic>() != null);
|
|
|
|
CheckContextMatch(p);
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new Tactic(this, Native.Z3_tactic_cond(nCtx, p.NativeObject, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a tactic that keeps applying <paramref name="t"/> until the goal is not
|
|
/// modified anymore or the maximum number of iterations <paramref name="max"/> is reached.
|
|
/// </summary>
|
|
public Tactic Repeat(Tactic t, uint max = uint.MaxValue)
|
|
{
|
|
Contract.Requires(t != null);
|
|
Contract.Ensures(Contract.Result<Tactic>() != null);
|
|
|
|
CheckContextMatch(t);
|
|
return new Tactic(this, Native.Z3_tactic_repeat(nCtx, t.NativeObject, max));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a tactic that just returns the given goal.
|
|
/// </summary>
|
|
public Tactic Skip()
|
|
{
|
|
Contract.Ensures(Contract.Result<Tactic>() != null);
|
|
|
|
return new Tactic(this, Native.Z3_tactic_skip(nCtx));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a tactic always fails.
|
|
/// </summary>
|
|
public Tactic Fail()
|
|
{
|
|
Contract.Ensures(Contract.Result<Tactic>() != null);
|
|
|
|
return new Tactic(this, Native.Z3_tactic_fail(nCtx));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a tactic that fails if the probe <paramref name="p"/> evaluates to false.
|
|
/// </summary>
|
|
public Tactic FailIf(Probe p)
|
|
{
|
|
Contract.Requires(p != null);
|
|
Contract.Ensures(Contract.Result<Tactic>() != null);
|
|
|
|
CheckContextMatch(p);
|
|
return new Tactic(this, Native.Z3_tactic_fail_if(nCtx, p.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a tactic that fails if the goal is not triviall satisfiable (i.e., empty)
|
|
/// or trivially unsatisfiable (i.e., contains `false').
|
|
/// </summary>
|
|
public Tactic FailIfNotDecided()
|
|
{
|
|
Contract.Ensures(Contract.Result<Tactic>() != null);
|
|
|
|
return new Tactic(this, Native.Z3_tactic_fail_if_not_decided(nCtx));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a tactic that applies <paramref name="t"/> using the given set of parameters <paramref name="p"/>.
|
|
/// </summary>
|
|
public Tactic UsingParams(Tactic t, Params p)
|
|
{
|
|
Contract.Requires(t != null);
|
|
Contract.Requires(p != null);
|
|
Contract.Ensures(Contract.Result<Tactic>() != null);
|
|
|
|
CheckContextMatch(t);
|
|
CheckContextMatch(p);
|
|
return new Tactic(this, Native.Z3_tactic_using_params(nCtx, t.NativeObject, p.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a tactic that applies <paramref name="t"/> using the given set of parameters <paramref name="p"/>.
|
|
/// </summary>
|
|
/// <remarks>Alias for <c>UsingParams</c></remarks>
|
|
public Tactic With(Tactic t, Params p)
|
|
{
|
|
Contract.Requires(t != null);
|
|
Contract.Requires(p != null);
|
|
Contract.Ensures(Contract.Result<Tactic>() != null);
|
|
|
|
return UsingParams(t, p);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a tactic that applies the given tactics in parallel.
|
|
/// </summary>
|
|
public Tactic ParOr(params Tactic[] t)
|
|
{
|
|
Contract.Requires(t == null || Contract.ForAll(t, tactic => tactic != null));
|
|
Contract.Ensures(Contract.Result<Tactic>() != null);
|
|
|
|
CheckContextMatch(t);
|
|
return new Tactic(this, Native.Z3_tactic_par_or(nCtx, Tactic.ArrayLength(t), Tactic.ArrayToNative(t)));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a tactic that applies <paramref name="t1"/> to a given goal and then <paramref name="t2"/>
|
|
/// to every subgoal produced by <paramref name="t1"/>. The subgoals are processed in parallel.
|
|
/// </summary>
|
|
public Tactic ParAndThen(Tactic t1, Tactic t2)
|
|
{
|
|
Contract.Requires(t1 != null);
|
|
Contract.Requires(t2 != null);
|
|
Contract.Ensures(Contract.Result<Tactic>() != null);
|
|
|
|
CheckContextMatch(t1);
|
|
CheckContextMatch(t2);
|
|
return new Tactic(this, Native.Z3_tactic_par_and_then(nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Interrupt the execution of a Z3 procedure.
|
|
/// </summary>
|
|
/// <remarks>This procedure can be used to interrupt: solvers, simplifiers and tactics.</remarks>
|
|
public void Interrupt()
|
|
{
|
|
Native.Z3_interrupt(nCtx);
|
|
}
|
|
#endregion
|
|
|
|
#region Probes
|
|
/// <summary>
|
|
/// The number of supported Probes.
|
|
/// </summary>
|
|
public uint NumProbes
|
|
{
|
|
get { return Native.Z3_get_num_probes(nCtx); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// The names of all supported Probes.
|
|
/// </summary>
|
|
public string[] ProbeNames
|
|
{
|
|
get
|
|
{
|
|
Contract.Ensures(Contract.Result<string[]>() != null);
|
|
|
|
uint n = NumProbes;
|
|
string[] res = new string[n];
|
|
for (uint i = 0; i < n; i++)
|
|
res[i] = Native.Z3_get_probe_name(nCtx, i);
|
|
return res;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns a string containing a description of the probe with the given name.
|
|
/// </summary>
|
|
public string ProbeDescription(string name)
|
|
{
|
|
Contract.Ensures(Contract.Result<string>() != null);
|
|
|
|
return Native.Z3_probe_get_descr(nCtx, name);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a new Probe.
|
|
/// </summary>
|
|
public Probe MkProbe(string name)
|
|
{
|
|
Contract.Ensures(Contract.Result<Probe>() != null);
|
|
|
|
return new Probe(this, name);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a probe that always evaluates to <paramref name="val"/>.
|
|
/// </summary>
|
|
public Probe ConstProbe(double val)
|
|
{
|
|
Contract.Ensures(Contract.Result<Probe>() != null);
|
|
|
|
return new Probe(this, Native.Z3_probe_const(nCtx, val));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a probe that evaluates to "true" when the value returned by <paramref name="p1"/>
|
|
/// is less than the value returned by <paramref name="p2"/>
|
|
/// </summary>
|
|
public Probe Lt(Probe p1, Probe p2)
|
|
{
|
|
Contract.Requires(p1 != null);
|
|
Contract.Requires(p2 != null);
|
|
Contract.Ensures(Contract.Result<Probe>() != null);
|
|
|
|
CheckContextMatch(p1);
|
|
CheckContextMatch(p2);
|
|
return new Probe(this, Native.Z3_probe_lt(nCtx, p1.NativeObject, p2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a probe that evaluates to "true" when the value returned by <paramref name="p1"/>
|
|
/// is greater than the value returned by <paramref name="p2"/>
|
|
/// </summary>
|
|
public Probe Gt(Probe p1, Probe p2)
|
|
{
|
|
Contract.Requires(p1 != null);
|
|
Contract.Requires(p2 != null);
|
|
Contract.Ensures(Contract.Result<Probe>() != null);
|
|
|
|
CheckContextMatch(p1);
|
|
CheckContextMatch(p2);
|
|
return new Probe(this, Native.Z3_probe_gt(nCtx, p1.NativeObject, p2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a probe that evaluates to "true" when the value returned by <paramref name="p1"/>
|
|
/// is less than or equal the value returned by <paramref name="p2"/>
|
|
/// </summary>
|
|
public Probe Le(Probe p1, Probe p2)
|
|
{
|
|
Contract.Requires(p1 != null);
|
|
Contract.Requires(p2 != null);
|
|
Contract.Ensures(Contract.Result<Probe>() != null);
|
|
|
|
CheckContextMatch(p1);
|
|
CheckContextMatch(p2);
|
|
return new Probe(this, Native.Z3_probe_le(nCtx, p1.NativeObject, p2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a probe that evaluates to "true" when the value returned by <paramref name="p1"/>
|
|
/// is greater than or equal the value returned by <paramref name="p2"/>
|
|
/// </summary>
|
|
public Probe Ge(Probe p1, Probe p2)
|
|
{
|
|
Contract.Requires(p1 != null);
|
|
Contract.Requires(p2 != null);
|
|
Contract.Ensures(Contract.Result<Probe>() != null);
|
|
|
|
CheckContextMatch(p1);
|
|
CheckContextMatch(p2);
|
|
return new Probe(this, Native.Z3_probe_ge(nCtx, p1.NativeObject, p2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a probe that evaluates to "true" when the value returned by <paramref name="p1"/>
|
|
/// is equal to the value returned by <paramref name="p2"/>
|
|
/// </summary>
|
|
public Probe Eq(Probe p1, Probe p2)
|
|
{
|
|
Contract.Requires(p1 != null);
|
|
Contract.Requires(p2 != null);
|
|
Contract.Ensures(Contract.Result<Probe>() != null);
|
|
|
|
CheckContextMatch(p1);
|
|
CheckContextMatch(p2);
|
|
return new Probe(this, Native.Z3_probe_eq(nCtx, p1.NativeObject, p2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a probe that evaluates to "true" when the value <paramref name="p1"/>
|
|
/// and <paramref name="p2"/> evaluate to "true".
|
|
/// </summary>
|
|
public Probe And(Probe p1, Probe p2)
|
|
{
|
|
Contract.Requires(p1 != null);
|
|
Contract.Requires(p2 != null);
|
|
Contract.Ensures(Contract.Result<Probe>() != null);
|
|
|
|
CheckContextMatch(p1);
|
|
CheckContextMatch(p2);
|
|
return new Probe(this, Native.Z3_probe_and(nCtx, p1.NativeObject, p2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a probe that evaluates to "true" when the value <paramref name="p1"/>
|
|
/// or <paramref name="p2"/> evaluate to "true".
|
|
/// </summary>
|
|
public Probe Or(Probe p1, Probe p2)
|
|
{
|
|
Contract.Requires(p1 != null);
|
|
Contract.Requires(p2 != null);
|
|
Contract.Ensures(Contract.Result<Probe>() != null);
|
|
|
|
CheckContextMatch(p1);
|
|
CheckContextMatch(p2);
|
|
return new Probe(this, Native.Z3_probe_or(nCtx, p1.NativeObject, p2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a probe that evaluates to "true" when the value <paramref name="p"/>
|
|
/// does not evaluate to "true".
|
|
/// </summary>
|
|
public Probe Not(Probe p)
|
|
{
|
|
Contract.Requires(p != null);
|
|
Contract.Ensures(Contract.Result<Probe>() != null);
|
|
|
|
CheckContextMatch(p);
|
|
return new Probe(this, Native.Z3_probe_not(nCtx, p.NativeObject));
|
|
}
|
|
#endregion
|
|
|
|
#region Solvers
|
|
/// <summary>
|
|
/// Creates a new (incremental) solver.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// This solver also uses a set of builtin tactics for handling the first
|
|
/// check-sat command, and check-sat commands that take more than a given
|
|
/// number of milliseconds to be solved.
|
|
/// </remarks>
|
|
public Solver MkSolver(Symbol logic = null)
|
|
{
|
|
Contract.Ensures(Contract.Result<Solver>() != null);
|
|
|
|
if (logic == null)
|
|
return new Solver(this, Native.Z3_mk_solver(nCtx));
|
|
else
|
|
return new Solver(this, Native.Z3_mk_solver_for_logic(nCtx, logic.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a new (incremental) solver.
|
|
/// </summary>
|
|
/// <seealso cref="MkSolver(Symbol)"/>
|
|
public Solver MkSolver(string logic)
|
|
{
|
|
Contract.Ensures(Contract.Result<Solver>() != null);
|
|
|
|
return MkSolver(MkSymbol(logic));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a new (incremental) solver.
|
|
/// </summary>
|
|
public Solver MkSimpleSolver()
|
|
{
|
|
Contract.Ensures(Contract.Result<Solver>() != null);
|
|
|
|
return new Solver(this, Native.Z3_mk_simple_solver(nCtx));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a solver that is implemented using the given tactic.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The solver supports the commands <c>Push</c> and <c>Pop</c>, but it
|
|
/// will always solve each check from scratch.
|
|
/// </remarks>
|
|
public Solver MkSolver(Tactic t)
|
|
{
|
|
Contract.Requires(t != null);
|
|
Contract.Ensures(Contract.Result<Solver>() != null);
|
|
|
|
return new Solver(this, Native.Z3_mk_solver_from_tactic(nCtx, t.NativeObject));
|
|
}
|
|
#endregion
|
|
|
|
#region Fixedpoints
|
|
/// <summary>
|
|
/// Create a Fixedpoint context.
|
|
/// </summary>
|
|
public Fixedpoint MkFixedpoint()
|
|
{
|
|
Contract.Ensures(Contract.Result<Fixedpoint>() != null);
|
|
|
|
return new Fixedpoint(this);
|
|
}
|
|
#endregion
|
|
|
|
#region Floating-Point Arithmetic
|
|
/// <summary>
|
|
/// Create a floating point rounding mode sort.
|
|
/// </summary>
|
|
public FPRMSort MkFPRMSort()
|
|
{
|
|
Contract.Ensures(Contract.Result<FPRMSort>() != null);
|
|
return new FPRMSort(this);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a NearestTiesToEven rounding mode numeral.
|
|
/// </summary>
|
|
public FPRMNum MkFPRMNearestTiesToEven()
|
|
{
|
|
Contract.Ensures(Contract.Result<FPRMNum>() != null);
|
|
return new FPRMNum(this, Native.Z3_mk_fpa_round_nearest_ties_to_even(nCtx));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a NearestTiesToAway rounding mode numeral.
|
|
/// </summary>
|
|
public FPRMNum MkFPRMNearestTiesToAway()
|
|
{
|
|
Contract.Ensures(Contract.Result<FPRMNum>() != null);
|
|
return new FPRMNum(this, Native.Z3_mk_fpa_round_nearest_ties_to_away(nCtx));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a TowardPositive rounding mode numeral.
|
|
/// </summary>
|
|
public FPRMNum MkFPRMTowardPositive()
|
|
{
|
|
Contract.Ensures(Contract.Result<FPRMNum>() != null);
|
|
return new FPRMNum(this, Native.Z3_mk_fpa_round_toward_positive(nCtx));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a TowardNegative rounding mode numeral.
|
|
/// </summary>
|
|
public FPRMNum MkFPRMTowardNegative()
|
|
{
|
|
Contract.Ensures(Contract.Result<FPRMNum>() != null);
|
|
return new FPRMNum(this, Native.Z3_mk_fpa_round_toward_negative(nCtx));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a TowardZero rounding mode numeral.
|
|
/// </summary>
|
|
public FPRMNum MkFPRMTowardZero()
|
|
{
|
|
Contract.Ensures(Contract.Result<FPRMNum>() != null);
|
|
return new FPRMNum(this, Native.Z3_mk_fpa_round_toward_zero(nCtx));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a floating point sort.
|
|
/// </summary>
|
|
/// <param name="ebits">exponent bits in the floating point sort.</param>
|
|
/// <param name="sbits">significand bits in the floating point sort.</param>
|
|
public FPSort MkFPSort(uint ebits, uint sbits)
|
|
{
|
|
Contract.Ensures(Contract.Result<FPSort>() != null);
|
|
return new FPSort(this, ebits, sbits);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a floating point NaN numeral.
|
|
/// </summary>
|
|
/// <param name="s">floating point sort.</param>
|
|
public FPNum MkFPNaN(FPSort s)
|
|
{
|
|
Contract.Ensures(Contract.Result<FPRMNum>() != null);
|
|
return new FPNum(this, Native.Z3_mk_fpa_nan(nCtx, s.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a floating point Inf numeral.
|
|
/// </summary>
|
|
/// <param name="s">floating point sort.</param>
|
|
/// <param name="negative">indicates whether the result should be negative.</param>
|
|
public FPNum MkFPInf(FPSort s, bool negative)
|
|
{
|
|
Contract.Ensures(Contract.Result<FPRMNum>() != null);
|
|
return new FPNum(this, Native.Z3_mk_fpa_inf(nCtx, s.NativeObject, negative ? 1 : 0));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a floating point numeral.
|
|
/// </summary>
|
|
/// <param name="v">A string representing the value in decimal notation.</param>
|
|
/// <param name="s">floating point sort</param>
|
|
public FPNum MkFP(double v, FPSort s)
|
|
{
|
|
Contract.Ensures(Contract.Result<FPNum>() != null);
|
|
return new FPNum(this, Native.Z3_mk_fpa_double(this.nCtx, v, s.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Floating-point absolute value
|
|
/// </summary>
|
|
/// <param name="t">floating point term</param>
|
|
public FPExpr MkFPAbs(FPExpr t)
|
|
{
|
|
Contract.Ensures(Contract.Result<FPNum>() != null);
|
|
return new FPExpr(this, Native.Z3_mk_fpa_abs(this.nCtx, t.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Floating-point negation
|
|
/// </summary>
|
|
/// <param name="t">floating point term</param>
|
|
public FPExpr MkFPNeg(FPExpr t)
|
|
{
|
|
Contract.Ensures(Contract.Result<FPNum>() != null);
|
|
return new FPExpr(this, Native.Z3_mk_fpa_neg(this.nCtx, t.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Floating-point addition
|
|
/// </summary>
|
|
/// <param name="rm">rounding mode term</param>
|
|
/// <param name="t1">floating point term</param>
|
|
/// <param name="t2">floating point term</param>
|
|
public FPExpr MkFPAdd(FPRMExpr rm, FPExpr t1, FPExpr t2)
|
|
{
|
|
Contract.Ensures(Contract.Result<FPNum>() != null);
|
|
return new FPExpr(this, Native.Z3_mk_fpa_add(this.nCtx, rm.NativeObject, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Floating-point subtraction
|
|
/// </summary>
|
|
/// <param name="rm">rounding mode term</param>
|
|
/// <param name="t1">floating point term</param>
|
|
/// <param name="t2">floating point term</param>
|
|
public FPExpr MkFPSub(FPRMExpr rm, FPExpr t1, FPExpr t2)
|
|
{
|
|
Contract.Ensures(Contract.Result<FPNum>() != null);
|
|
return new FPExpr(this, Native.Z3_mk_fpa_sub(this.nCtx, rm.NativeObject, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Floating-point multiplication
|
|
/// </summary>
|
|
/// <param name="rm">rounding mode term</param>
|
|
/// <param name="t1">floating point term</param>
|
|
/// <param name="t2">floating point term</param>
|
|
public FPExpr MkFPMul(FPRMExpr rm, FPExpr t1, FPExpr t2)
|
|
{
|
|
Contract.Ensures(Contract.Result<FPNum>() != null);
|
|
return new FPExpr(this, Native.Z3_mk_fpa_mul(this.nCtx, rm.NativeObject, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Floating-point division
|
|
/// </summary>
|
|
/// <param name="rm">rounding mode term</param>
|
|
/// <param name="t1">floating point term</param>
|
|
/// <param name="t2">floating point term</param>
|
|
public FPExpr MkFPDiv(FPRMExpr rm, FPExpr t1, FPExpr t2)
|
|
{
|
|
Contract.Ensures(Contract.Result<FPNum>() != null);
|
|
return new FPExpr(this, Native.Z3_mk_fpa_div(this.nCtx, rm.NativeObject, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Floating-point fused multiply-add
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The result is round((t1 * t2) + t3)
|
|
/// </remarks>
|
|
/// <param name="rm">rounding mode term</param>
|
|
/// <param name="t1">floating point term</param>
|
|
/// <param name="t2">floating point term</param>
|
|
/// <param name="t3">floating point term</param>
|
|
public FPExpr MkFPFMA(FPRMExpr rm, FPExpr t1, FPExpr t2, FPExpr t3)
|
|
{
|
|
Contract.Ensures(Contract.Result<FPNum>() != null);
|
|
return new FPExpr(this, Native.Z3_mk_fpa_fma(this.nCtx, rm.NativeObject, t1.NativeObject, t2.NativeObject, t3.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Floating-point square root
|
|
/// </summary>
|
|
/// <param name="rm">rounding mode term</param>
|
|
/// <param name="t">floating point term</param>
|
|
public FPExpr MkFPSqrt(FPRMExpr rm, FPExpr t)
|
|
{
|
|
Contract.Ensures(Contract.Result<FPNum>() != null);
|
|
return new FPExpr(this, Native.Z3_mk_fpa_sqrt(this.nCtx, rm.NativeObject, t.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Floating-point remainder
|
|
/// </summary>
|
|
/// <param name="t1">floating point term</param>
|
|
/// <param name="t2">floating point term</param>
|
|
public FPExpr MkFPRem(FPExpr t1, FPExpr t2)
|
|
{
|
|
Contract.Ensures(Contract.Result<FPNum>() != null);
|
|
return new FPExpr(this, Native.Z3_mk_fpa_rem(this.nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Floating-point equality
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Note that this is IEEE 754 equality (as opposed to standard =).
|
|
/// </remarks>
|
|
/// <param name="t1">floating point term</param>
|
|
/// <param name="t2">floating point term</param>
|
|
public BoolExpr MkFPEq(FPExpr t1, FPExpr t2)
|
|
{
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
return new BoolExpr(this, Native.Z3_mk_fpa_eq(this.nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Floating-point less than or equal
|
|
/// </summary>
|
|
/// <param name="t1">floating point term</param>
|
|
/// <param name="t2">floating point term</param>
|
|
public BoolExpr MkFPLe(FPExpr t1, FPExpr t2)
|
|
{
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
return new BoolExpr(this, Native.Z3_mk_fpa_le(this.nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Floating-point less than
|
|
/// </summary>
|
|
/// <param name="t1">floating point term</param>
|
|
/// <param name="t2">floating point term</param>
|
|
public BoolExpr MkFPLt(FPExpr t1, FPExpr t2)
|
|
{
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
return new BoolExpr(this, Native.Z3_mk_fpa_lt(this.nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Floating-point greater than or equal
|
|
/// </summary>
|
|
/// <param name="t1">floating point term</param>
|
|
/// <param name="t2">floating point term</param>
|
|
public BoolExpr MkFPGe(FPExpr t1, FPExpr t2)
|
|
{
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
return new BoolExpr(this, Native.Z3_mk_fpa_ge(this.nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Floating-point greater than
|
|
/// </summary>
|
|
/// <param name="t1">floating point term</param>
|
|
/// <param name="t2">floating point term</param>
|
|
public BoolExpr MkFPGt(FPExpr t1, FPExpr t2)
|
|
{
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
return new BoolExpr(this, Native.Z3_mk_fpa_gt(this.nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Predicate indicating whether t is a normal floating point number
|
|
/// </summary>
|
|
/// <param name="t">floating point term</param>
|
|
public BoolExpr MkFPIsNormal(FPExpr t)
|
|
{
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
return new BoolExpr(this, Native.Z3_mk_fpa_is_normal(this.nCtx, t.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Predicate indicating whether t is a subnormal floating point number
|
|
/// </summary>
|
|
/// <param name="t">floating point term</param>
|
|
public BoolExpr MkFPIsSubnormal(FPExpr t)
|
|
{
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
return new BoolExpr(this, Native.Z3_mk_fpa_is_subnormal(this.nCtx, t.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Predicate indicating whether t is a floating point number with zero value, i.e., +0 or -0.
|
|
/// </summary>
|
|
/// <param name="t">floating point term</param>
|
|
public BoolExpr MkFPIsZero(FPExpr t)
|
|
{
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
return new BoolExpr(this, Native.Z3_mk_fpa_is_zero(this.nCtx, t.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Predicate indicating whether t is a floating point number representing +Inf or -Inf
|
|
/// </summary>
|
|
/// <param name="t">floating point term</param>
|
|
public BoolExpr MkFPIsInf(FPExpr t)
|
|
{
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
return new BoolExpr(this, Native.Z3_mk_fpa_is_inf(this.nCtx, t.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Predicate indicating whether t is a NaN
|
|
/// </summary>
|
|
/// <param name="t">floating point term</param>
|
|
public BoolExpr MkFPIsNaN(FPExpr t)
|
|
{
|
|
Contract.Ensures(Contract.Result<BoolExpr>() != null);
|
|
return new BoolExpr(this, Native.Z3_mk_fpa_is_nan(this.nCtx, t.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Floating-point minimum
|
|
/// </summary>
|
|
/// <param name="t1">floating point term</param>
|
|
/// <param name="t2">floating point term</param>
|
|
public FPExpr MkFPMin(FPExpr t1, FPExpr t2)
|
|
{
|
|
Contract.Ensures(Contract.Result<FPNum>() != null);
|
|
return new FPExpr(this, Native.Z3_mk_fpa_min(this.nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Floating-point maximium
|
|
/// </summary>
|
|
/// <param name="t1">floating point term</param>
|
|
/// <param name="t2">floating point term</param>
|
|
public FPExpr MkFPMax(FPExpr t1, FPExpr t2)
|
|
{
|
|
Contract.Ensures(Contract.Result<FPNum>() != null);
|
|
return new FPExpr(this, Native.Z3_mk_fpa_max(this.nCtx, t1.NativeObject, t2.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Conversion of a floating point number to another floating-point sort s.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Produces a term that represents the conversion of a floating-point term t to a different
|
|
/// floating point sort s. If necessary, rounding according to rm is applied.
|
|
/// </remarks>
|
|
/// <param name="s">floating point sort</param>
|
|
/// <param name="rm">floating point rounding mode term</param>
|
|
/// <param name="t">floating point term</param>
|
|
public FPExpr MkFPConvert(FPSort s, FPRMExpr rm, FPExpr t)
|
|
{
|
|
Contract.Ensures(Contract.Result<FPNum>() != null);
|
|
return new FPExpr(this, Native.Z3_mk_fpa_convert(this.nCtx, s.NativeObject, rm.NativeObject, t.NativeObject));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Conversion of a floating point term to a bit-vector term in IEEE754 format.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The size of the resulting bit-vector is automatically determined.
|
|
/// </remarks>
|
|
/// <param name="t">floating point term</param>
|
|
public FPExpr MkFPToIEEEBV(FPExpr t)
|
|
{
|
|
Contract.Ensures(Contract.Result<FPNum>() != null);
|
|
return new FPExpr(this, Native.Z3_mk_fpa_to_ieee_bv(this.nCtx, t.NativeObject));
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Miscellaneous
|
|
/// <summary>
|
|
/// Wraps an AST.
|
|
/// </summary>
|
|
/// <remarks>This function is used for transitions between native and
|
|
/// managed objects. Note that <paramref name="nativeObject"/> must be a
|
|
/// native object obtained from Z3 (e.g., through <seealso cref="UnwrapAST"/>)
|
|
/// and that it must have a correct reference count (see e.g.,
|
|
/// <seealso cref="Native.Z3_inc_ref"/>.</remarks>
|
|
/// <seealso cref="UnwrapAST"/>
|
|
/// <param name="nativeObject">The native pointer to wrap.</param>
|
|
public AST WrapAST(IntPtr nativeObject)
|
|
{
|
|
Contract.Ensures(Contract.Result<AST>() != null);
|
|
return AST.Create(this, nativeObject);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Unwraps an AST.
|
|
/// </summary>
|
|
/// <remarks>This function is used for transitions between native and
|
|
/// managed objects. It returns the native pointer to the AST. Note that
|
|
/// AST objects are reference counted and unwrapping an AST disables automatic
|
|
/// reference counting, i.e., all references to the IntPtr that is returned
|
|
/// must be handled externally and through native calls (see e.g.,
|
|
/// <seealso cref="Native.Z3_inc_ref"/>).</remarks>
|
|
/// <seealso cref="WrapAST"/>
|
|
/// <param name="a">The AST to unwrap.</param>
|
|
public IntPtr UnwrapAST(AST a)
|
|
{
|
|
return a.NativeObject;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Return a string describing all available parameters to <c>Expr.Simplify</c>.
|
|
/// </summary>
|
|
public string SimplifyHelp()
|
|
{
|
|
Contract.Ensures(Contract.Result<string>() != null);
|
|
|
|
return Native.Z3_simplify_get_help(nCtx);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Retrieves parameter descriptions for simplifier.
|
|
/// </summary>
|
|
public ParamDescrs SimplifyParameterDescriptions
|
|
{
|
|
get { return new ParamDescrs(this, Native.Z3_simplify_get_param_descrs(nCtx)); }
|
|
}
|
|
|
|
/// <summary>
|
|
/// Enable/disable printing of warning messages to the console.
|
|
/// </summary>
|
|
/// <remarks>Note that this function is static and effects the behaviour of
|
|
/// all contexts globally.</remarks>
|
|
public static void ToggleWarningMessages(bool enabled)
|
|
{
|
|
Native.Z3_toggle_warning_messages((enabled) ? 1 : 0);
|
|
}
|
|
#endregion
|
|
|
|
#region Error Handling
|
|
///// <summary>
|
|
///// A delegate which is executed when an error is raised.
|
|
///// </summary>
|
|
///// <remarks>
|
|
///// Note that it is possible for memory leaks to occur if error handlers
|
|
///// throw exceptions.
|
|
///// </remarks>
|
|
//public delegate void ErrorHandler(Context ctx, Z3_error_code errorCode, string errorString);
|
|
|
|
///// <summary>
|
|
///// The OnError event.
|
|
///// </summary>
|
|
//public event ErrorHandler OnError = null;
|
|
#endregion
|
|
|
|
#region Parameters
|
|
/// <summary>
|
|
/// Update a mutable configuration parameter.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// The list of all configuration parameters can be obtained using the Z3 executable:
|
|
/// <c>z3.exe -ini?</c>
|
|
/// Only a few configuration parameters are mutable once the context is created.
|
|
/// An exception is thrown when trying to modify an immutable parameter.
|
|
/// </remarks>
|
|
/// <seealso cref="GetParamValue"/>
|
|
public void UpdateParamValue(string id, string value)
|
|
{
|
|
Native.Z3_update_param_value(nCtx, id, value);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Get a configuration parameter.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// Returns null if the parameter value does not exist.
|
|
/// </remarks>
|
|
/// <seealso cref="UpdateParamValue"/>
|
|
public string GetParamValue(string id)
|
|
{
|
|
IntPtr res = IntPtr.Zero;
|
|
if (Native.Z3_get_param_value(nCtx, id, out res) == 0)
|
|
return null;
|
|
else
|
|
return Marshal.PtrToStringAnsi(res);
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Internal
|
|
internal IntPtr m_ctx = IntPtr.Zero;
|
|
internal Native.Z3_error_handler m_n_err_handler = null;
|
|
internal IntPtr nCtx { get { return m_ctx; } }
|
|
|
|
internal void NativeErrorHandler(IntPtr ctx, Z3_error_code errorCode)
|
|
{
|
|
// Do-nothing error handler. The wrappers in Z3.Native will throw exceptions upon errors.
|
|
}
|
|
|
|
internal void InitContext()
|
|
{
|
|
PrintMode = Z3_ast_print_mode.Z3_PRINT_SMTLIB2_COMPLIANT;
|
|
m_n_err_handler = new Native.Z3_error_handler(NativeErrorHandler); // keep reference so it doesn't get collected.
|
|
Native.Z3_set_error_handler(m_ctx, m_n_err_handler);
|
|
GC.SuppressFinalize(this);
|
|
}
|
|
|
|
[Pure]
|
|
internal void CheckContextMatch(Z3Object other)
|
|
{
|
|
Contract.Requires(other != null);
|
|
|
|
if (!ReferenceEquals(this, other.Context))
|
|
throw new Z3Exception("Context mismatch");
|
|
}
|
|
|
|
[Pure]
|
|
internal void CheckContextMatch(Z3Object[] arr)
|
|
{
|
|
Contract.Requires(arr == null || Contract.ForAll(arr, a => a != null));
|
|
|
|
if (arr != null)
|
|
{
|
|
foreach (Z3Object a in arr)
|
|
{
|
|
Contract.Assert(a != null); // It was an assume, now we added the precondition, and we made it into an assert
|
|
CheckContextMatch(a);
|
|
}
|
|
}
|
|
}
|
|
|
|
[ContractInvariantMethod]
|
|
private void ObjectInvariant()
|
|
{
|
|
Contract.Invariant(m_AST_DRQ != null);
|
|
Contract.Invariant(m_ASTMap_DRQ != null);
|
|
Contract.Invariant(m_ASTVector_DRQ != null);
|
|
Contract.Invariant(m_ApplyResult_DRQ != null);
|
|
Contract.Invariant(m_FuncEntry_DRQ != null);
|
|
Contract.Invariant(m_FuncInterp_DRQ != null);
|
|
Contract.Invariant(m_Goal_DRQ != null);
|
|
Contract.Invariant(m_Model_DRQ != null);
|
|
Contract.Invariant(m_Params_DRQ != null);
|
|
Contract.Invariant(m_ParamDescrs_DRQ != null);
|
|
Contract.Invariant(m_Probe_DRQ != null);
|
|
Contract.Invariant(m_Solver_DRQ != null);
|
|
Contract.Invariant(m_Statistics_DRQ != null);
|
|
Contract.Invariant(m_Tactic_DRQ != null);
|
|
Contract.Invariant(m_Fixedpoint_DRQ != null);
|
|
}
|
|
|
|
readonly private AST.DecRefQueue m_AST_DRQ = new AST.DecRefQueue();
|
|
readonly private ASTMap.DecRefQueue m_ASTMap_DRQ = new ASTMap.DecRefQueue();
|
|
readonly private ASTVector.DecRefQueue m_ASTVector_DRQ = new ASTVector.DecRefQueue();
|
|
readonly private ApplyResult.DecRefQueue m_ApplyResult_DRQ = new ApplyResult.DecRefQueue();
|
|
readonly private FuncInterp.Entry.DecRefQueue m_FuncEntry_DRQ = new FuncInterp.Entry.DecRefQueue();
|
|
readonly private FuncInterp.DecRefQueue m_FuncInterp_DRQ = new FuncInterp.DecRefQueue();
|
|
readonly private Goal.DecRefQueue m_Goal_DRQ = new Goal.DecRefQueue();
|
|
readonly private Model.DecRefQueue m_Model_DRQ = new Model.DecRefQueue();
|
|
readonly private Params.DecRefQueue m_Params_DRQ = new Params.DecRefQueue();
|
|
readonly private ParamDescrs.DecRefQueue m_ParamDescrs_DRQ = new ParamDescrs.DecRefQueue();
|
|
readonly private Probe.DecRefQueue m_Probe_DRQ = new Probe.DecRefQueue();
|
|
readonly private Solver.DecRefQueue m_Solver_DRQ = new Solver.DecRefQueue();
|
|
readonly private Statistics.DecRefQueue m_Statistics_DRQ = new Statistics.DecRefQueue();
|
|
readonly private Tactic.DecRefQueue m_Tactic_DRQ = new Tactic.DecRefQueue();
|
|
readonly private Fixedpoint.DecRefQueue m_Fixedpoint_DRQ = new Fixedpoint.DecRefQueue();
|
|
|
|
internal AST.DecRefQueue AST_DRQ { get { Contract.Ensures(Contract.Result<AST.DecRefQueue>() != null); return m_AST_DRQ; } }
|
|
internal ASTMap.DecRefQueue ASTMap_DRQ { get { Contract.Ensures(Contract.Result<ASTMap.DecRefQueue>() != null); return m_ASTMap_DRQ; } }
|
|
internal ASTVector.DecRefQueue ASTVector_DRQ { get { Contract.Ensures(Contract.Result<ASTVector.DecRefQueue>() != null); return m_ASTVector_DRQ; } }
|
|
internal ApplyResult.DecRefQueue ApplyResult_DRQ { get { Contract.Ensures(Contract.Result<ApplyResult.DecRefQueue>() != null); return m_ApplyResult_DRQ; } }
|
|
internal FuncInterp.Entry.DecRefQueue FuncEntry_DRQ { get { Contract.Ensures(Contract.Result<FuncInterp.Entry.DecRefQueue>() != null); return m_FuncEntry_DRQ; } }
|
|
internal FuncInterp.DecRefQueue FuncInterp_DRQ { get { Contract.Ensures(Contract.Result<FuncInterp.DecRefQueue>() != null); return m_FuncInterp_DRQ; } }
|
|
internal Goal.DecRefQueue Goal_DRQ { get { Contract.Ensures(Contract.Result<Goal.DecRefQueue>() != null); return m_Goal_DRQ; } }
|
|
internal Model.DecRefQueue Model_DRQ { get { Contract.Ensures(Contract.Result<Model.DecRefQueue>() != null); return m_Model_DRQ; } }
|
|
internal Params.DecRefQueue Params_DRQ { get { Contract.Ensures(Contract.Result<Params.DecRefQueue>() != null); return m_Params_DRQ; } }
|
|
internal ParamDescrs.DecRefQueue ParamDescrs_DRQ { get { Contract.Ensures(Contract.Result<ParamDescrs.DecRefQueue>() != null); return m_ParamDescrs_DRQ; } }
|
|
internal Probe.DecRefQueue Probe_DRQ { get { Contract.Ensures(Contract.Result<Probe.DecRefQueue>() != null); return m_Probe_DRQ; } }
|
|
internal Solver.DecRefQueue Solver_DRQ { get { Contract.Ensures(Contract.Result<Solver.DecRefQueue>() != null); return m_Solver_DRQ; } }
|
|
internal Statistics.DecRefQueue Statistics_DRQ { get { Contract.Ensures(Contract.Result<Statistics.DecRefQueue>() != null); return m_Statistics_DRQ; } }
|
|
internal Tactic.DecRefQueue Tactic_DRQ { get { Contract.Ensures(Contract.Result<Tactic.DecRefQueue>() != null); return m_Tactic_DRQ; } }
|
|
internal Fixedpoint.DecRefQueue Fixedpoint_DRQ { get { Contract.Ensures(Contract.Result<Fixedpoint.DecRefQueue>() != null); return m_Fixedpoint_DRQ; } }
|
|
|
|
|
|
internal uint refCount = 0;
|
|
|
|
/// <summary>
|
|
/// Finalizer.
|
|
/// </summary>
|
|
~Context()
|
|
{
|
|
// Console.WriteLine("Context Finalizer from " + System.Threading.Thread.CurrentThread.ManagedThreadId);
|
|
Dispose();
|
|
|
|
if (refCount == 0)
|
|
{
|
|
m_n_err_handler = null;
|
|
Native.Z3_del_context(m_ctx);
|
|
m_ctx = IntPtr.Zero;
|
|
}
|
|
else
|
|
GC.ReRegisterForFinalize(this);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Disposes of the context.
|
|
/// </summary>
|
|
public void Dispose()
|
|
{
|
|
// Console.WriteLine("Context Dispose from " + System.Threading.Thread.CurrentThread.ManagedThreadId);
|
|
AST_DRQ.Clear(this);
|
|
ASTMap_DRQ.Clear(this);
|
|
ASTVector_DRQ.Clear(this);
|
|
ApplyResult_DRQ.Clear(this);
|
|
FuncEntry_DRQ.Clear(this);
|
|
FuncInterp_DRQ.Clear(this);
|
|
Goal_DRQ.Clear(this);
|
|
Model_DRQ.Clear(this);
|
|
Params_DRQ.Clear(this);
|
|
ParamDescrs_DRQ.Clear(this);
|
|
Probe_DRQ.Clear(this);
|
|
Solver_DRQ.Clear(this);
|
|
Statistics_DRQ.Clear(this);
|
|
Tactic_DRQ.Clear(this);
|
|
Fixedpoint_DRQ.Clear(this);
|
|
|
|
m_boolSort = null;
|
|
m_intSort = null;
|
|
m_realSort = null;
|
|
}
|
|
#endregion
|
|
}
|
|
}
|