~ubuntu-branches/ubuntu/trusty/spass/trusty

« back to all changes in this revision

Viewing changes to SPASS/doc-proof.h

  • Committer: Bazaar Package Importer
  • Author(s): Roland Stigge
  • Date: 2010-06-27 18:59:28 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20100627185928-kdjuqghv04rxyqmc
Tags: 3.7-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**************************************************************/
 
2
/* ********************************************************** */
 
3
/* *                                                        * */
 
4
/* *                 PROOF DOCUMENTATION                    * */
 
5
/* *                                                        * */
 
6
/* *  $Module:   DOCPROOF                                   * */ 
 
7
/* *                                                        * */
 
8
/* *  Copyright (C) 1996, 1997, 1998, 2000, 2001            * */
 
9
/* *  MPI fuer Informatik                                   * */
 
10
/* *                                                        * */
 
11
/* *  This program is free software; you can redistribute   * */
 
12
/* *  it and/or modify it under the terms of the FreeBSD    * */
 
13
/* *  Licence.                                              * */
 
14
/* *                                                        * */
 
15
/* *  This program is distributed in the hope that it will  * */
 
16
/* *  be useful, but WITHOUT ANY WARRANTY; without even     * */
 
17
/* *  the implied warranty of MERCHANTABILITY or FITNESS    * */
 
18
/* *  FOR A PARTICULAR PURPOSE.  See the LICENCE file       * */
 
19
/* *  for more details.                                     * */
 
20
/* *                                                        * */
 
21
/* *                                                        * */
 
22
/* $Revision: 1.2 $                                     * */
 
23
/* $State: Exp $                                            * */
 
24
/* $Date: 2010-02-22 14:09:58 $                             * */
 
25
/* $Author: weidenb $                                         * */
 
26
/* *                                                        * */
 
27
/* *             Contact:                                   * */
 
28
/* *             Christoph Weidenbach                       * */
 
29
/* *             MPI fuer Informatik                        * */
 
30
/* *             Stuhlsatzenhausweg 85                      * */
 
31
/* *             66123 Saarbruecken                         * */
 
32
/* *             Email: spass@mpi-inf.mpg.de                * */
 
33
/* *             Germany                                    * */
 
34
/* *                                                        * */
 
35
/* ********************************************************** */
 
36
/**************************************************************/
 
37
 
 
38
 
 
39
/* $RCSfile: doc-proof.h,v $ */
 
40
 
 
41
#ifndef _DOC_PROOF_
 
42
#define _DOC_PROOF_
 
43
 
 
44
/**************************************************************/
 
45
/* Includes                                                   */
 
46
/**************************************************************/
 
47
 
 
48
#include "clause.h"
 
49
#include "st.h"
 
50
#include "sharing.h"
 
51
#include "search.h"
 
52
#include "doc-proof.h"
 
53
#include "proofcheck.h"
 
54
 
 
55
/**************************************************************/
 
56
/* Data Structures and Constants                              */
 
57
/**************************************************************/
 
58
 
 
59
extern int dp_DEPTH;
 
60
 
 
61
 
 
62
/**************************************************************/
 
63
/* Macros                                                     */
 
64
/**************************************************************/ 
 
65
 
 
66
static __inline__ int dp_ProofDepth(void)
 
67
{
 
68
  return dp_DEPTH;
 
69
}
 
70
 
 
71
static __inline__ void dp_SetProofDepth(int Depth)
 
72
{
 
73
  dp_DEPTH = Depth;
 
74
}
 
75
 
 
76
 
 
77
/**************************************************************/
 
78
/* Functions                                                  */
 
79
/**************************************************************/        
 
80
 
 
81
void dp_Init(void);
 
82
LIST dp_PrintProof(PROOFSEARCH, LIST, const char*);
 
83
 
 
84
#endif