3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 11:25:51 +00:00

missing files?

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2016-01-05 08:32:48 -08:00
parent b0d244c1e0
commit 752a973e53
4 changed files with 124 additions and 0 deletions

29
src/api/java/SeqSort.java Normal file
View file

@ -0,0 +1,29 @@
/**
Copyright (c) 2012-2014 Microsoft Corporation
Module Name:
SeqSort.java
Abstract:
Author:
@author Christoph Wintersteiger (cwinter) 2012-03-15
Notes:
**/
package com.microsoft.z3;
/**
* A Sequence sort
**/
public class SeqSort extends Sort
{
SeqSort(Context ctx, long obj)
{
super(ctx, obj);
}
}