~ubuntu-branches/ubuntu/quantal/spass/quantal

« back to all changes in this revision

Viewing changes to SPASS/proofcheck.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 CHECKING                             * */
 
5
/* *                                                        * */
 
6
/* *  Copyright (C) 1998, 1999, 2000, 2001                  * */
 
7
/* *  MPI fuer Informatik                                   * */
 
8
/* *                                                        * */
 
9
/* *  This program is free software; you can redistribute   * */
 
10
/* *  it and/or modify it under the terms of the FreeBSD    * */
 
11
/* *  Licence.                                              * */
 
12
/* *                                                        * */
 
13
/* *  This program is distributed in the hope that it will  * */
 
14
/* *  be useful, but WITHOUT ANY WARRANTY; without even     * */
 
15
/* *  the implied warranty of MERCHANTABILITY or FITNESS    * */
 
16
/* *  FOR A PARTICULAR PURPOSE.  See the LICENCE file       * */ 
 
17
/* *  for more details.                                     * */
 
18
/* *                                                        * */
 
19
/* $Revision: 1.3 $                                         * */
 
20
/* $State: Exp $                                            * */
 
21
/* $Date: 2010-02-22 14:09:58 $                             * */
 
22
/* $Author: weidenb $                                       * */
 
23
/* *                                                        * */
 
24
/* *                                                        * */
 
25
/* *             Contact:                                   * */
 
26
/* *             Christoph Weidenbach                       * */
 
27
/* *             MPI fuer Informatik                        * */
 
28
/* *             Stuhlsatzenhausweg 85                      * */
 
29
/* *             66123 Saarbruecken                         * */
 
30
/* *             Email: spass@mpi-inf.mpg.de                * */
 
31
/* *             Germany                                    * */
 
32
/* *                                                        * */
 
33
/* ********************************************************** */
 
34
 
 
35
/* $RCSfile: proofcheck.h,v $ */
 
36
 
 
37
#ifndef _PROOFCHECK_H_
 
38
#define _PROOFCHECK_H_
 
39
 
 
40
#include <string.h>
 
41
#include <ctype.h>
 
42
#include <math.h>
 
43
#include "list.h"
 
44
#include "vector.h"
 
45
 
 
46
#include "misc.h"
 
47
#include "dfg.h"
 
48
#include "foldfg.h"
 
49
#include "flags.h"
 
50
#include "clause.h"
 
51
#include "tableau.h"
 
52
#include "search.h"
 
53
#include "dfg.h"
 
54
 
 
55
 
 
56
LIST  pcheck_ReduceSPASSProof(LIST);
 
57
char* pcheck_GenericFilename(const char*, const char*);
 
58
int   pcheck_SeqProofDepth(LIST);
 
59
void  pcheck_DeleteProof(LIST);
 
60
BOOL  pcheck_BuildTableauFromProof(LIST, TABLEAU*);
 
61
LIST  pcheck_ConvertTermListToClauseList(LIST, FLAGSTORE, PRECEDENCE);
 
62
void  pcheck_TableauToProofTask(TABLEAU, const char*, const char*);
 
63
BOOL  pcheck_TableauProof(TABLEAU*, LIST);
 
64
LIST  pcheck_ParentPointersToParentNumbers(LIST);
 
65
LIST  pcheck_ConvertParentsInSPASSProof(PROOFSEARCH, LIST);
 
66
void  pcheck_MarkRecursive(LIST); 
 
67
LIST  pcheck_ClauseNumberMergeSort(LIST);
 
68
void  pcheck_ClauseListRemoveFlag(LIST, CLAUSE_FLAGS);
 
69
 
 
70
#endif
 
71
 
 
72
 
 
73