mirror of
https://github.com/Z3Prover/z3
synced 2025-06-18 11:58:31 +00:00
merge
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
f525f43e43
commit
ef31b27d5e
2 changed files with 0 additions and 54 deletions
|
@ -91,11 +91,7 @@ namespace Microsoft.Z3
|
||||||
public Params Add(string name, bool value)
|
public Params Add(string name, bool value)
|
||||||
{
|
{
|
||||||
Native.Z3_params_set_bool(Context.nCtx, NativeObject, Context.MkSymbol(name).NativeObject, (value) ? 1 : 0);
|
Native.Z3_params_set_bool(Context.nCtx, NativeObject, Context.MkSymbol(name).NativeObject, (value) ? 1 : 0);
|
||||||
<<<<<<< HEAD
|
|
||||||
return this;
|
return this;
|
||||||
=======
|
|
||||||
return this;
|
|
||||||
>>>>>>> fc719a5ee82361ffedb9ef46793e3401fdc32cc5
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -104,11 +100,7 @@ namespace Microsoft.Z3
|
||||||
public Params Add(string name, uint value)
|
public Params Add(string name, uint value)
|
||||||
{
|
{
|
||||||
Native.Z3_params_set_uint(Context.nCtx, NativeObject, Context.MkSymbol(name).NativeObject, value);
|
Native.Z3_params_set_uint(Context.nCtx, NativeObject, Context.MkSymbol(name).NativeObject, value);
|
||||||
<<<<<<< HEAD
|
|
||||||
return this;
|
return this;
|
||||||
=======
|
|
||||||
return this;
|
|
||||||
>>>>>>> fc719a5ee82361ffedb9ef46793e3401fdc32cc5
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
@ -99,48 +99,6 @@ namespace Microsoft.Z3
|
||||||
public void Set(Symbol name, Symbol value) { Parameters = Context.MkParams().Add(name, value); }
|
public void Set(Symbol name, Symbol value) { Parameters = Context.MkParams().Add(name, value); }
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Sets parameter on the solver
|
|
||||||
/// </summary>
|
|
||||||
public void Set(string name, bool value) { Parameters = Context.MkParams().Add(name, value); }
|
|
||||||
/// <summary>
|
|
||||||
/// Sets parameter on the solver
|
|
||||||
/// </summary>
|
|
||||||
public void Set(string name, uint value) { Parameters = Context.MkParams().Add(name, value); }
|
|
||||||
/// <summary>
|
|
||||||
/// Sets parameter on the solver
|
|
||||||
/// </summary>
|
|
||||||
public void Set(string name, double value) { Parameters = Context.MkParams().Add(name, value); }
|
|
||||||
/// <summary>
|
|
||||||
/// Sets parameter on the solver
|
|
||||||
/// </summary>
|
|
||||||
public void Set(string name, string value) { Parameters = Context.MkParams().Add(name, value); }
|
|
||||||
/// <summary>
|
|
||||||
/// Sets parameter on the solver
|
|
||||||
/// </summary>
|
|
||||||
public void Set(string name, Symbol value) { Parameters = Context.MkParams().Add(name, value); }
|
|
||||||
/// <summary>
|
|
||||||
/// Sets parameter on the solver
|
|
||||||
/// </summary>
|
|
||||||
public void Set(Symbol name, bool value) { Parameters = Context.MkParams().Add(name, value); }
|
|
||||||
/// <summary>
|
|
||||||
/// Sets parameter on the solver
|
|
||||||
/// </summary>
|
|
||||||
public void Set(Symbol name, uint value) { Parameters = Context.MkParams().Add(name, value); }
|
|
||||||
/// <summary>
|
|
||||||
/// Sets parameter on the solver
|
|
||||||
/// </summary>
|
|
||||||
public void Set(Symbol name, double value) { Parameters = Context.MkParams().Add(name, value); }
|
|
||||||
/// <summary>
|
|
||||||
/// Sets parameter on the solver
|
|
||||||
/// </summary>
|
|
||||||
public void Set(Symbol name, string value) { Parameters = Context.MkParams().Add(name, value); }
|
|
||||||
/// <summary>
|
|
||||||
/// Sets parameter on the solver
|
|
||||||
/// </summary>
|
|
||||||
public void Set(Symbol name, Symbol value) { Parameters = Context.MkParams().Add(name, value); }
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieves parameter descriptions for solver.
|
/// Retrieves parameter descriptions for solver.
|
||||||
|
@ -359,10 +317,6 @@ namespace Microsoft.Z3
|
||||||
return lboolToStatus(r);
|
return lboolToStatus(r);
|
||||||
}
|
}
|
||||||
|
|
||||||
<<<<<<< HEAD
|
|
||||||
|
|
||||||
=======
|
|
||||||
>>>>>>> fc719a5ee82361ffedb9ef46793e3401fdc32cc5
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Retrieve fixed assignments to the set of variables in the form of consequences.
|
/// Retrieve fixed assignments to the set of variables in the form of consequences.
|
||||||
/// Each consequence is an implication of the form
|
/// Each consequence is an implication of the form
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue