Z3
Deprecated.cs
Go to the documentation of this file.
1/*++
2Copyright (c) 2012 Microsoft Corporation
3
4Module Name:
5
6 Deprecated.cs
7
8Abstract:
9
10 Expose deprecated features for use from the managed API
11 those who use them for experiments.
12
13Author:
14
15 Christoph Wintersteiger (cwinter) 2012-03-15
16
17Notes:
18
19--*/
20using System.Diagnostics;
21using System;
22using System.Collections.Generic;
23using System.Runtime.InteropServices;
24
25namespace Microsoft.Z3
26{
30 public class Deprecated
31 {
32
33
34 }
35}
The main interaction with Z3 happens via the Context.
Definition: Deprecated.cs:31