mirror of
https://github.com/Z3Prover/z3
synced 2025-04-25 01:55:32 +00:00
33 lines
436 B
Java
33 lines
436 B
Java
/**
|
|
Copyright (c) 2012-2014 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
IntExpr.java
|
|
|
|
Abstract:
|
|
|
|
Author:
|
|
|
|
@author Christoph Wintersteiger (cwinter) 2012-03-15
|
|
|
|
Notes:
|
|
|
|
**/
|
|
|
|
package com.microsoft.z3;
|
|
|
|
/**
|
|
* Int expressions
|
|
**/
|
|
public class IntExpr extends ArithExpr
|
|
{
|
|
/**
|
|
* Constructor for IntExpr
|
|
* @throws Z3Exception on error
|
|
**/
|
|
IntExpr(Context ctx, long obj)
|
|
{
|
|
super(ctx, obj);
|
|
}
|
|
}
|