mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 20:05:51 +00:00
36 lines
No EOL
596 B
C#
36 lines
No EOL
596 B
C#
/*++
|
|
Copyright (c) 2012 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
Deprecated.cs
|
|
|
|
Abstract:
|
|
|
|
Expose deprecated features for use from the managed API
|
|
those who use them for experiments.
|
|
|
|
Author:
|
|
|
|
Christoph Wintersteiger (cwinter) 2012-03-15
|
|
|
|
Notes:
|
|
|
|
--*/
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Runtime.InteropServices;
|
|
using System.Diagnostics.Contracts;
|
|
|
|
namespace Microsoft.Z3
|
|
{
|
|
/// <summary>
|
|
/// The main interaction with Z3 happens via the Context.
|
|
/// </summary>
|
|
[ContractVerification(true)]
|
|
public class Deprecated
|
|
{
|
|
|
|
|
|
}
|
|
} |