mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 03:15:50 +00:00
33 lines
477 B
Java
33 lines
477 B
Java
/**
|
|
Copyright (c) 2012-2014 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
FiniteDomainExpr.java
|
|
|
|
Abstract:
|
|
|
|
Author:
|
|
|
|
@author Christoph Wintersteiger (cwinter) 2015-12-02
|
|
|
|
Notes:
|
|
|
|
**/
|
|
|
|
package com.microsoft.z3;
|
|
|
|
/**
|
|
* Finite-domain expressions
|
|
**/
|
|
public class FiniteDomainExpr extends Expr
|
|
{
|
|
/**
|
|
* Constructor for FiniteDomainExpr
|
|
* @throws Z3Exception on error
|
|
**/
|
|
FiniteDomainExpr(Context ctx, long obj)
|
|
{
|
|
super(ctx, obj);
|
|
}
|
|
}
|