mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
Switched ParamDescrs.ToString to native implementation
Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
parent
44db8c083d
commit
c2623e15c3
|
@ -75,12 +75,7 @@ namespace Microsoft.Z3
|
|||
/// </summary>
|
||||
public override string ToString()
|
||||
{
|
||||
String res = "";
|
||||
Symbol[] n = Names;
|
||||
if (n.Length > 0) res = n[0].ToString();
|
||||
for (uint i = 1; i < n.Length; i++)
|
||||
res += " " + n[i].ToString();
|
||||
return res;
|
||||
return Native.Z3_param_descrs_to_string(Context.nCtx, NativeObject);
|
||||
}
|
||||
|
||||
#region Internal
|
||||
|
|
Loading…
Reference in a new issue