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
42
src/api/dotnet/ReExpr.cs
Normal file
42
src/api/dotnet/ReExpr.cs
Normal file
|
@ -0,0 +1,42 @@
|
|||
/*++
|
||||
Copyright (<c>) 2016 Microsoft Corporation
|
||||
|
||||
Module Name:
|
||||
|
||||
ReExpr.cs
|
||||
|
||||
Abstract:
|
||||
|
||||
Z3 Managed API: Regular Expressions
|
||||
|
||||
Author:
|
||||
|
||||
Christoph Wintersteiger (cwinter) 2012-11-23
|
||||
|
||||
Notes:
|
||||
|
||||
--*/
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
using System.Diagnostics.Contracts;
|
||||
|
||||
namespace Microsoft.Z3
|
||||
{
|
||||
/// <summary>
|
||||
/// Regular expression expressions
|
||||
/// </summary>
|
||||
public class ReExpr : Expr
|
||||
{
|
||||
#region Internal
|
||||
/// <summary> Constructor for ReExpr </summary>
|
||||
internal ReExpr(Context ctx, IntPtr obj)
|
||||
: base(ctx, obj)
|
||||
{
|
||||
Contract.Requires(ctx != null);
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue