mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 11:55:51 +00:00
seq, API
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
a3c4972c85
commit
68a532d066
9 changed files with 454 additions and 20 deletions
|
@ -147,6 +147,8 @@ namespace Microsoft.Z3
|
|||
case Z3_sort_kind.Z3_RELATION_SORT: return new RelationSort(ctx, obj);
|
||||
case Z3_sort_kind.Z3_FLOATING_POINT_SORT: return new FPSort(ctx, obj);
|
||||
case Z3_sort_kind.Z3_ROUNDING_MODE_SORT: return new FPRMSort(ctx, obj);
|
||||
case Z3_sort_kind.Z3_SEQ_SORT: return new SeqSort(ctx, obj);
|
||||
case Z3_sort_kind.Z3_RE_SORT: return new ReSort(ctx, obj);
|
||||
default:
|
||||
throw new Z3Exception("Unknown sort kind");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue