~ubuntu-branches/ubuntu/saucy/ladr/saucy

« back to all changes in this revision

Viewing changes to provers.src/utilities.h.bak

  • Committer: Package Import Robot
  • Author(s): Frank Lichtenheld
  • Date: 2013-05-25 11:43:32 UTC
  • mfrom: (5.1.5 sid)
  • Revision ID: package-import@ubuntu.com-20130525114332-lkzco1dti2hwrf7v
Tags: 0.0.200911a-2
* QA upload.
* Upload to unstable.
* Change maintainer to QA group.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*  Copyright (C) 2006, 2007 William McCune
2
 
 
3
 
    This file is part of the LADR Deduction Library.
4
 
 
5
 
    The LADR Deduction Library is free software; you can redistribute it
6
 
    and/or modify it under the terms of the GNU General Public License,
7
 
    version 2.
8
 
 
9
 
    The LADR Deduction Library is distributed in the hope that it will be
10
 
    useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 
    GNU General Public License for more details.
13
 
 
14
 
    You should have received a copy of the GNU General Public License
15
 
    along with the LADR Deduction Library; if not, write to the Free Software
16
 
    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
17
 
*/
18
 
 
19
 
#ifndef TP_UTILITIES_H
20
 
#define TP_UTILITIES_H
21
 
 
22
 
#include "search-structures.h"
23
 
 
24
 
/* INTRODUCTION
25
 
*/
26
 
 
27
 
/* Public definitions */
28
 
 
29
 
/* End of public definitions */
30
 
 
31
 
/* Public function prototypes from utilities.c */
32
 
 
33
 
void print_memory_stats(FILE *fp);
34
 
 
35
 
void fsym_report(Ilist fsyms, Plist clauses);
36
 
 
37
 
BOOL inverse_order(Clist clauses);
38
 
 
39
 
void p_sym_list(Ilist syms);
40
 
 
41
 
void symbol_order(Clist usable, Clist sos, Clist demods, BOOL echo);
42
 
 
43
 
Ilist unary_symbols(Ilist a);
44
 
 
45
 
void auto_kbo_weights(Clist usable, Clist sos);
46
 
 
47
 
int neg_pos_depth_difference(Plist sos);
48
 
 
49
 
void structure_of_clauses(Clist clauses);
50
 
 
51
 
int plist_size_of_diff(Plist a, Plist b);
52
 
 
53
 
void structure_of_variables(Clist clauses);
54
 
 
55
 
Ordertype clause_compare_m4(Topform a, Topform b);
56
 
 
57
 
int bogo_ticks(void);
58
 
 
59
 
Topform first_negative_clause(Plist proof);
60
 
 
61
 
Plist neg_clauses_and_descendants(Plist proof,
62
 
                                  Clist a_list, Clist b_list, Clist c_list);
63
 
 
64
 
Plist neg_descendants(Topform top_neg,
65
 
                      Clist a_list, Clist b_list, Clist c_list);
66
 
                      
67
 
 
68
 
void check_constant_sharing(Plist clauses);
69
 
 
70
 
#endif  /* conditional compilation of whole file */