3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-26 02:25:32 +00:00

.NET API: bugfix

Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
Christoph M. Wintersteiger 2013-01-10 18:08:56 +00:00
parent c430fe26aa
commit 3482b8f4f1
2 changed files with 9 additions and 1 deletions

View file

@ -215,7 +215,7 @@ namespace Microsoft.Z3
/// </summary>
public bool IsConst
{
get { return IsExpr && NumArgs == 0 && FuncDecl.DomainSize == 0; }
get { return IsApp && NumArgs == 0 && FuncDecl.DomainSize == 0; }
}
#endregion