Microsoft.Z3.InterpolationContext.WriteInterpolationProblem C# (CSharp) Méthode

WriteInterpolationProblem() public méthode

Writes an interpolation problem to a file.
For more information on interpolation please refer too the function Z3_write_interpolation_problem in the C/C++ API, which is well documented.
public WriteInterpolationProblem ( string filename, Expr cnsts, uint parents, Expr theory ) : void
filename string
cnsts Expr
parents uint
theory Expr
Résultat void
        public void WriteInterpolationProblem(string filename, Expr[] cnsts, uint[] parents, Expr[] theory)
        {
            Contract.Requires(cnsts.Length == parents.Length);
            Native.Z3_write_interpolation_problem(nCtx, (uint)cnsts.Length, Expr.ArrayToNative(cnsts), parents, filename, (uint)theory.Length, Expr.ArrayToNative(theory));
        }