mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 19:35:50 +00:00
expose name inclusion as optional
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
dbe2c9b305
commit
b992f59aad
5 changed files with 10 additions and 10 deletions
|
@ -225,9 +225,9 @@ namespace Microsoft.Z3
|
|||
/// Goal to DIMACS formatted string conversion.
|
||||
/// </summary>
|
||||
/// <returns>A string representation of the Goal.</returns>
|
||||
public string ToDimacs()
|
||||
public string ToDimacs(bool include_names = true)
|
||||
{
|
||||
return Native.Z3_goal_to_dimacs_string(Context.nCtx, NativeObject);
|
||||
return Native.Z3_goal_to_dimacs_string(Context.nCtx, NativeObject, include_names);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue