3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-10 19:27:06 +00:00

Java API: package renaming.

Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
Christoph M. Wintersteiger 2012-11-27 19:09:30 +00:00
parent d65b836ace
commit eee3bf886d
73 changed files with 95 additions and 88 deletions

View file

@ -4,9 +4,9 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
import com.Microsoft.Z3.Enumerations.*;
import com.microsoft.z3.enumerations.*;
/**
* The abstract syntax tree (AST) class.

View file

@ -3,7 +3,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
public class ASTDecRefQueue extends IDecRefQueue
{

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* Map from AST to AST

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* Vectors of ASTs.

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* Algebraic numbers

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* ApplyResult objects represent the result of an application of a tactic to a

View file

@ -3,7 +3,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
class ApplyResultDecRefQueue extends IDecRefQueue
{

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
* **/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* Arithmetic expressions (int/real)

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* An arithmetic sort, i.e., Int or Real.

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* Array sorts.

View file

@ -3,7 +3,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
class ASTMapDecRefQueue extends IDecRefQueue
{

View file

@ -3,7 +3,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
class ASTVectorDecRefQueue extends IDecRefQueue
{

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* Bit-vector expressions

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
import java.math.BigInteger;

View file

@ -3,7 +3,7 @@
* w/ further modifications by:
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* Bit-vector sorts.

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* Boolean expressions

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* A Boolean sort.

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* Constructors are used for datatype sorts.

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* Lists of constructors

View file

@ -4,10 +4,10 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
import java.util.*;
import com.Microsoft.Z3.Enumerations.*;
import com.microsoft.z3.enumerations.*;
/**
* The main interaction with Z3 happens via the Context.

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* Datatype expressions

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* Datatype sorts.

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* Enumeration sorts.

View file

@ -4,9 +4,9 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
import com.Microsoft.Z3.Enumerations.*;
import com.microsoft.z3.enumerations.*;
/* using System; */

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* Finite domain sorts.

View file

@ -4,9 +4,9 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
import com.Microsoft.Z3.Enumerations.*;
import com.microsoft.z3.enumerations.*;
/**
* Object for managing fixedpoints

View file

@ -3,7 +3,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
class FixedpointDecRefQueue extends IDecRefQueue
{

View file

@ -4,9 +4,9 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
import com.Microsoft.Z3.Enumerations.*;
import com.microsoft.z3.enumerations.*;
/**
* Function declarations.

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* A function interpretation is represented as a finite map and an 'else' value.

View file

@ -3,7 +3,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
class FuncInterpDecRefQueue extends IDecRefQueue
{

View file

@ -3,7 +3,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
class FuncInterpEntryDecRefQueue extends IDecRefQueue
{

View file

@ -4,9 +4,9 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
import com.Microsoft.Z3.Enumerations.*;
import com.microsoft.z3.enumerations.*;
/**
* A goal (aka problem). A goal is essentially a set of formulas, that can be

View file

@ -3,7 +3,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
class GoalDecRefQueue extends IDecRefQueue
{

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
import java.util.*;

View file

@ -17,7 +17,7 @@ Notes:
--*/
package com.Microsoft.Z3;
package com.microsoft.z3;
public class IDisposable
{

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* Int expressions

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
import java.math.BigInteger;

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* An Integer sort

View file

@ -4,9 +4,9 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
import com.Microsoft.Z3.Enumerations.*;
import com.microsoft.z3.enumerations.*;
/**
* Numbered symbols

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* List sorts.

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* Interaction logging for Z3. <remarks> Note that this is a global, static log

View file

@ -4,9 +4,9 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
import com.Microsoft.Z3.Enumerations.*;
import com.microsoft.z3.enumerations.*;
/**
* A Model contains interpretations (assignments) of constants and functions.

View file

@ -3,7 +3,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
class ModelDecRefQueue extends IDecRefQueue
{

View file

@ -4,9 +4,9 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
import com.Microsoft.Z3.Enumerations.*;
import com.microsoft.z3.enumerations.*;
/**
* A ParamDescrs describes a set of parameters.

View file

@ -3,7 +3,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
class ParamDescrsDecRefQueue extends IDecRefQueue
{

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* A ParameterSet represents a configuration in the form of Symbol/value pairs.

View file

@ -3,7 +3,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
class ParamsDecRefQueue extends IDecRefQueue
{

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* Patterns comprise a list of terms. The list should be non-empty. If the list

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* Probes are used to inspect a goal (aka problem) and collect information that

View file

@ -3,7 +3,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
class ProbeDecRefQueue extends IDecRefQueue
{

View file

@ -4,9 +4,9 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
import com.Microsoft.Z3.Enumerations.*;
import com.microsoft.z3.enumerations.*;
/**
* Quantifier expressions.

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
import java.math.BigInteger;
/**

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* Real expressions

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* A real sort

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* Relation sorts.

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* Set sorts.

View file

@ -4,9 +4,9 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
import com.Microsoft.Z3.Enumerations.*;
import com.microsoft.z3.enumerations.*;
/**
* Solvers.

View file

@ -3,7 +3,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
class SolverDecRefQueue extends IDecRefQueue
{

View file

@ -4,9 +4,9 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
import com.Microsoft.Z3.Enumerations.*;
import com.microsoft.z3.enumerations.*;
/**
* The Sort class implements type information for ASTs.

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* Objects of this class track statistical information about solvers.

View file

@ -3,7 +3,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
class StatisticsDecRefQueue extends IDecRefQueue
{

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* Status values.

View file

@ -4,9 +4,9 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
import com.Microsoft.Z3.Enumerations.*;
import com.microsoft.z3.enumerations.*;
/**
* Named symbols

View file

@ -4,9 +4,9 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
import com.Microsoft.Z3.Enumerations.*;
import com.microsoft.z3.enumerations.*;
/**
* Symbols are used to name several term and type constructors.

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* Tactics are the basic building block for creating custom solvers for specific

View file

@ -3,7 +3,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
class TacticDecRefQueue extends IDecRefQueue
{

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* Tuple sorts.

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* Uninterpreted Sorts

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* Version information. <remarks>Note that this class is static.</remarks>

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
import java.lang.Exception;

View file

@ -4,7 +4,7 @@
* @author Christoph M. Wintersteiger (cwinter)
**/
package com.Microsoft.Z3;
package com.microsoft.z3;
/**
* Internal base class for interfacing with native Z3 objects. Should not be

View file

@ -1,11 +1,18 @@
############################################
######################################################
# Copyright (c) 2012 Microsoft Corporation
#
# Auxiliary scripts for generating Java bindings
# from the managed API.
#
# Author: Christoph M. Wintersteiger (cwinter)
############################################
######################################################
###
# DO NOT USE THIS SCRIPT!
# This script creates a rough draft of a Java API from
# the managed API, but does not automated the process.
###
CS="../dotnet/"
EXT=".cs"