File: dimparser.c

package info (click to toggle)
spass 3.9-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 3,632 kB
  • sloc: ansic: 59,216; yacc: 1,574; lex: 300; pascal: 158; makefile: 148; sh: 7
file content (170 lines) | stat: -rw-r--r-- 5,326 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
/************************************************************/
/************************************************************/
/**                                                        **/
/**                       PARSER                           **/
/**                                                        **/
/**             Parsing the DIMACs input.                  **/
/**                                                        **/
/**                Author: Martin Suda                     **/
/**                                                        **/
/**                                                        **/
/**  This program is free software; you can redistribute   **/
/**  it and/or modify it under the terms of the FreeBSD    **/
/**  Licence.                                              **/
/**                                                        **/
/**  This program is distributed in the hope that it will  **/
/**  be useful, but WITHOUT ANY WARRANTY; without even     **/
/**  the implied warranty of MERCHANTABILITY or FITNESS    **/
/**  FOR A PARTICULAR PURPOSE.  See the LICENCE file       **/
/**  for more details.                                     **/
/************************************************************/
/************************************************************/

#include "dimparser.h"

/**************************************************************/
/* Functions                                                  */
/**************************************************************/

SATRESULT dimparser_Parse(FILE* pFile, ARRAY* variables, ARRAY* clauses)
/**************************************************************
INPUT:   A file to read, 2 empty arrays.
RETURNS: Typically UNKNOWN, but trivial instances can be resolved
          already at parsetime.
SUMMARY: The file gets parsed and the two arrays are filled
         appropriately. Parsing may issue warnings or
         terminate with an error if the input doesn't
         conform to the format.
***************************************************************/
{
  ARRAY clause;
  int c,e,lit,var;
  int vars_announced, clauses_announced, new_name;
  BOOL whole, drop_next;
  SATRESULT result;

  result = UNKNOWN;

  /* Read the header. */
  do
  {
    c = fgetc (pFile);

    if (c == 'c') 
    {  /* comment -> eat the rest of the line */    
      do
      {
        c = fgetc(pFile);
      }
      while ((c != '\n') && (c != EOF));

      if (c == EOF)
      {
        fprintf(stderr,"File not complete!\n");
        exit(EXIT_FAILURE);
      }

      continue; /*we are on the next line -> read next character*/
    }

    if (c != 'p')
    {
      fprintf(stderr,"Invalid format!\n");
      exit(EXIT_FAILURE);
    }

    if (fscanf(pFile," cnf %d %d",&vars_announced,&clauses_announced) != 2)
    {
      fprintf(stderr,"Invalid format!\n");
      exit(EXIT_FAILURE);
    }

    break;

  }
  while (1);

  c = fgetc(pFile);
  if ((c != (int)'\n') && (c != '\r'))
    fprintf(stderr,"Warning: Newline expected(#%d read).\n",c);

  clause = array_Create(10,50);
  whole = TRUE; /* boolean-like: whole clause read? */
  drop_next = FALSE;

  /* Read the clauses */
  while((e = fscanf(pFile,"%d",&lit)) == 1)
  {
    var = abs(lit);

    if (var == 0) 
    { /* other clause read */
      if (array_GetSize(clause) == 0) {
        fprintf(stderr,"Warning: Empty clause read - problem trivially unsatisfiable.\n");
        result = UNSATISFIABLE;        
      }

      if (drop_next)
        array_Delete(clause);
      else
        *clauses = array_Add(*clauses,(intptr_t)clause);
      clause = array_Create(10,50);
    
      whole = TRUE;
      drop_next = FALSE;

      c = fgetc(pFile);
      if ((c != '\n') && (c != '\r') && (c != ' ') )
        fprintf(stderr,"Warning: Newline expected(#%d read).\n",c);
    }
    else
    { /* just a literal */
      int index;
    
      whole = FALSE;
     
      if (!array_ContainsElement(*variables,var,&index)) {
        *variables = array_Add(*variables,var);
        new_name = array_GetSize(*variables); 
      } else {
        new_name = index+1;
      }
      /* in any case: new_name = (index of the var in the array)+1  */   

      /*overwrite lit to reference vars (index+1)*/
      lit = (lit>0) ? new_name : -new_name;

      if (array_ContainsElement(clause,lit,&index)) {
        fprintf(stderr,"Warning: Multiple occurence of literal %d in clause number %d.\n",
          lit,array_GetSize(*clauses)+1);
      } else {
        clause = array_Add(clause,lit);
      }

      if (array_ContainsElement(clause,-lit,&index)) {
        fprintf(stderr,"Clause number %d containes both positive and negative occurence of varible %d.\n"
          "Clause trivially satisfiable - not included.\n",
          array_GetSize(*clauses)+1,var);
        drop_next = TRUE;
      }
    }
  }

  if(e != EOF)
    fprintf(stderr,"Warning: Format error - didn't finish reading.\n");

  if(!whole)
  {
    fprintf(stderr,"Warning: Last clause not properly closed.\n");
    *clauses = array_Add(*clauses,(intptr_t)clause);
  }
  else /*We were closed properly - the clause already prepared for reading next line has to be disposed. */
  {
    array_Delete(clause);
  }

  if (array_GetSize(*clauses) == 0)
    result = SATISFIABLE;

  return result;
}