-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAtomNode.h
More file actions
387 lines (308 loc) · 9.16 KB
/
AtomNode.h
File metadata and controls
387 lines (308 loc) · 9.16 KB
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
/***************************************************************************
* Copyright (C) 2009 by Mushthofa *
* unintendedchoice@gmail.com *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* 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 *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
/**
* @file AtomNode.h
* @author Roman Schindlauer, Mushthofa
* @date Sat Feb 4 19:09:02 CET 2006
*
* @brief Class representing one atom node in the dependency graph
*
*
*/
#ifndef ATOM_NODE_H
#define ATOM_NODE_H
#include "Rule.h"
#include "Program.h"
// forwards declaration
class AtomNode;
typedef boost::shared_ptr<AtomNode> AtomNodePtr;
/**
* @brief Dependency between two AtomNodes.
*
* A dependency contains an AtomNode, which is the "target" of the dependency,
* and a type. A dependency object is supposed to belong to an AtomNode object,
* which is then the "source" of the dependency. If the dependency was caused by
* a rule, the dependency will be associated with this rule (by storing its
* pointer).
*/
class Dependency
{
public:
/**
* @brief Type of Dependency.
*
* UNIFYING: The atoms of two nodes can be unified.
* PRECEDING: A preceding dependency points from a body atom node to its head
* atom node.
* NEG_PRECEDING: Like preceding, but with a weakly negated body atom.
* DISJUNCTIVE: Dependency between two head atom nodes of a disjunctive
* head.
*
* For FASP SRCF checking, we only need Preceeding/neg preceeding
*/
typedef enum {
//UNIFYING = 0x1,
PRECEDING = 0x2,
NEG_PRECEDING = 0x4,
DISJUNCTIVE = 0x8
} Type;
/// Ctor.
Dependency();
/**
* Copy constructor.
*/
Dependency(const Dependency&);
/**
* @brief Construct a dependency of a specific type to a given AtomNode
* target.
*/
Dependency(RulePtr, const AtomNodePtr&, Type);
/**
* @brief Return the dependency type.
*/
Type getType() const;
/**
* @brief Return true iff dependency is positive (head-body/unifying)
*/
bool isPositive() const
{
return (type != NEG_PRECEDING);// && (type != DISJUNCTIVE);
}
/**
* AtomNode uses those rules to create a list of rules on-the-fly.
*
* @return the rule that created this dependency.
*/
RulePtr getRule() const;
/**
* @brief Return the target AtomNode of the dependency.
*/
const AtomNodePtr& getAtomNode() const;
/**
* @brief Add a dependency information to two AtomNodes.
*
*/
static void addDep(RulePtr, const AtomNodePtr&, const AtomNodePtr&, Type);
/**
* @brief Comparison operator needed for std::set<Dependency>.
*/
bool operator< (const Dependency& dep2) const;
private:
/**
* @brief AtomNode that is the target of this dependency.
*/
AtomNodePtr atomNode;
/**
* Type of the dependency.
*/
Type type;
/**
* a dependency belongs to a certain rule.
*/
RulePtr rule;
};
//
// verbose and debug serialization
//
std::ostream& operator<< (std::ostream& out, const Dependency& dep);
class AtomNode
{
public:
/**
* @brief Constructs an AtomNode from a given Atom.
*/
AtomNode(const AtomPtr& atom = AtomPtr());
/**
* @brief Sets the head-flag of the Node.
*
* For calculating the correct dependencies when a new AtomNode is added to
* a collection of existing Nodes (see NodeGraph), it is vital to know for
* each AtomNode whether it is associated with a head-atom or a body-atom.
* This function sets the head-flag of the AtomNode.
*/
void setHead();
/**
* @brief Sets the body-flag of the Node.
*
* See setHead().
*/
void setBody();
/**
* @brief Returns the head-flag of the AtomNode.
*
* See setHead().
*/
bool isHead() const;
/**
* @brief Returns the body-flag of the AtomNode.
*
* See setHead().
*/
bool isBody() const;
/**
* @brief Adds a preceding dependency for this AtomNode.
*
* A preceding dependency means that this AtomNode depends on another one.
*/
void addPreceding(const Dependency&);
/**
* @brief Add succeeding dependency for this AtomNode.
*
* A succeeding dependency means that another AtomNode depends on this one.
*/
void addSucceeding(const Dependency&);
/**
* @brief Returns the atom-object this Node is associated with.
*/
const AtomPtr& getAtom() const;
/**
* @brief Returns all preceding dependencies of this AtomNode.
*/
const std::set<Dependency>& getPreceding() const;
/**
* @brief Returns all positive preceding dependencies of this AtomNode.
*/
const std::set<Dependency>& getPositivePreceding() const;
/**
* @brief Returns all positive preceding dependencies of this AtomNode.
*/
// FFASP : const std::set<Dependency>& getDisjunctivePreceding() const;
/**
* @brief Returns all succeeding dependencies of this AtomNode.
*/
const std::set<Dependency>& getSucceeding() const;
/**
* @brief Returns all rules associated with this AtomNode.
*/
const std::vector<RulePtr>& getRules() const;
/**
* @brief Returns the unique Id of this AtomNode.
*/
unsigned getId() const;
private:
/**
* @brief This AtomNode's Atom object.
*/
const AtomPtr atom;
/**
* @brief head-flag.
*/
bool inHead;
/**
* @brief body-flag.
*/
bool inBody;
/**
* @brief Rules that belong to this AtomNode (in case it occured
* in a rule's head).
*
* This is a cache for the rules created in
* AtomNode::getRules. Must be mutable because of constness of
* getRules.
*/
mutable std::vector<RulePtr> rules;
/**
* @brief Preceding dependencies.
*/
std::set<Dependency> preceding;
/**
* @brief Positive Preceding dependencies.
*/
std::set<Dependency> pospreceding;
/**
* @brief Disjunctive Preceding dependencies.
*/
// FFASP : std::set<Dependency> disjpreceding;
/**
* @brief succeeding dependencies.
*/
std::set<Dependency> succeeding;
/**
* @brief Unique numerical index to facilitate interfacing of Component
* finder algorithms.
*/
unsigned nodeId;
/**
* @brief Node counter for assigning node Ids.
*/
static unsigned nodeCount;
};
std::ostream& operator<< (std::ostream& out, const AtomNode& atomnode);
/**
* @brief Class for storing simple nodes of a dependency graph.
*
* A nodegraph is just a container for AtomNodes, taking care of creating and
* deleting AtomNode objects. It provides specific functions for handling a set
* of AtomNodes, like unique creation and finding a specific node.
*/
class NodeGraph
{
private:
std::vector<AtomNodePtr> atomNodes;
mutable std::vector<RulePtr> prog;
public:
/// Dtor.
~NodeGraph();
/**
* @brief returns the associated Program.
* @return prog
*/
const std::vector<RulePtr>& getProgram() const;
/**
* @brief Returns entire set of AtomNodes.
*/
const std::vector<AtomNodePtr>& getNodes() const;
/**
* @brief Clears internal AtomNodes and Program.
*/
void reset();
/**
* @brief Return a node with a specific AtomNode Id.
*/
//const AtomNodePtr
//getNode(unsigned);
AtomNodePtr addNode();
/**
* @brief Create a new node for this head atom and return its pointer or
* return pointer to already existing node that matches this atom.
*
* If a new node is created, all existing nodes are searched for atoms that
* unify with the new one. If a node is found, whose atom occurred in a
* rule's body, a unifying dependency from the new node to the found one is
* created.
*/
AtomNodePtr addUniqueHeadNode(const AtomPtr&);
/**
* @brief Create a new node for this body atom and return its pointer or
* return pointer to already existing node that matches this atom.
*
* See also addUniqueHeadNode. All existing nods are searched for a node
* that unifies with the new one. If one is found that occured in a rule's
* head, a unifying dependency from the existing one to the new one is
* creates.
*/
AtomNodePtr addUniqueBodyNode(const AtomPtr&);
/**
* @brief Finds an AtomNode that is associated with a specific Atom object.
*/
void findNode(const AtomPtr&, AtomNodePtr&) const;
};
#endif
// end