1 |
/* ASCEND modelling environment |
2 |
Copyright (C) 2006 Carnegie Mellon University |
3 |
Copyright (C) 1996 Ben Allan |
4 |
Copyright (C) 1990, 1993, 1994 Thomas Guthrie Epperly |
5 |
|
6 |
This program is free software; you can redistribute it and/or modify |
7 |
it under the terms of the GNU General Public License as published by |
8 |
the Free Software Foundation; either version 2, or (at your option) |
9 |
any later version. |
10 |
|
11 |
This program is distributed in the hope that it will be useful, |
12 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 |
GNU General Public License for more details. |
15 |
|
16 |
You should have received a copy of the GNU General Public License |
17 |
along with this program; if not, write to the Free Software |
18 |
Foundation, Inc., 59 Temple Place - Suite 330, |
19 |
Boston, MA 02111-1307, USA. |
20 |
*//** |
21 |
@file |
22 |
Ascend Instance Tree Link Management |
23 |
|
24 |
Requires: |
25 |
#include "utilities/ascConfig.h" |
26 |
#include "instance_enum.h" |
27 |
*//* |
28 |
by Ben Allan |
29 |
based on instance.c by Tom Epperly |
30 |
8/16/89 |
31 |
Last in CVS: $Revision: 1.7 $ $Date: 1997/07/18 12:31:17 $ $Author: mthomas $ |
32 |
*/ |
33 |
|
34 |
#ifndef ASC_LINKINST_H |
35 |
#define ASC_LINKINST_H |
36 |
|
37 |
/** addtogroup compiler Compiler |
38 |
@{ |
39 |
*/ |
40 |
|
41 |
extern void ChangeRelationPointers(struct Instance *rel, |
42 |
struct Instance *old, |
43 |
struct Instance *new); |
44 |
/**< |
45 |
This procedure changes all references of "old" in relation |
46 |
instance rel to "new". |
47 |
*/ |
48 |
|
49 |
extern void ChangeLogRelPointers(struct Instance *lrel, |
50 |
struct Instance *old, |
51 |
struct Instance *new); |
52 |
/**< |
53 |
This procedure changes all references of "old" in logical relation |
54 |
instance lrel to "new". |
55 |
*/ |
56 |
|
57 |
extern void ChangeWhenPointers(struct Instance *when, |
58 |
struct Instance *old, |
59 |
struct Instance *new); |
60 |
/**< |
61 |
This procedure changes all references of "old" in when |
62 |
instance when to "new". |
63 |
*/ |
64 |
|
65 |
extern void ChangeParent(struct Instance *parent, |
66 |
struct Instance *oldchild, |
67 |
struct Instance *newchild); |
68 |
/**< |
69 |
Tell a parent to point to newchild instead of pointing to oldchild |
70 |
*/ |
71 |
|
72 |
extern void ReDirectParents(struct Instance *oldinst, struct Instance *newinst); |
73 |
/**< |
74 |
Tell to all the parent of the oldchild, to point to newchild rather |
75 |
than to point to oldchild. |
76 |
*/ |
77 |
|
78 |
extern void ReDirectChildren(struct Instance *oldinst, struct Instance *newinst); |
79 |
/**< |
80 |
Look at all of the children of the instance new; if old is one of |
81 |
their parents, delete the parent old and add the parent new. |
82 |
*/ |
83 |
|
84 |
extern void ReorderChildrenPtrs(struct Instance **c, |
85 |
CONST ChildListPtr oldinst, |
86 |
CONST ChildListPtr newinst, |
87 |
unsigned long int oldlen, |
88 |
unsigned long int newlen); |
89 |
/**< |
90 |
This expands the old child pointers packed into a MODEL |
91 |
struct into the new list, starting at the tail of the instance |
92 |
and copying until blanks are needed to accomodate new |
93 |
children, filling those blanks with NULL, and then continuing |
94 |
on up toward the top of the child list which comes right |
95 |
after the end of the struct ModelInstance defined in the header |
96 |
instance_types.h |
97 |
*/ |
98 |
|
99 |
extern void FixCliques(struct Instance *old, struct Instance *new); |
100 |
/**< |
101 |
Substitute the old instance in a clique by the new instance. It is |
102 |
required after merging or refinement an instance, task which implies |
103 |
some instance is going to be destroyed. |
104 |
*/ |
105 |
|
106 |
extern void FixRelations(struct RealAtomInstance *old, struct RealAtomInstance *new); |
107 |
/**< |
108 |
This is called to tell relations about a change in variable location |
109 |
e.g. If two atoms are merged, point all the relations that know about |
110 |
ATOM old to ATOM new.<br><br> |
111 |
|
112 |
A RealAtomInstance contains a gl_list of relations. Such a gl_list tells |
113 |
us in which relations this real atom appears. Basically it is a list |
114 |
of pointers. When merging two MODELS, for example, the atoms |
115 |
contained in one of the models are going to be destroyed. In such a |
116 |
case (and in many other involving merging and refinement) the relation |
117 |
using such a variable must be notified about the change. This is the |
118 |
goal of this function. It will vist the list of relations of a real atom |
119 |
instance and it will tell them to use the the "new" instance instead of |
120 |
the "old" instance. For an explanation about how to handle different |
121 |
cases, see the function FixWhens below, thinking of course in list |
122 |
of relations instances rather than a list of when instances. |
123 |
*/ |
124 |
|
125 |
extern void FixLogRelations(struct Instance *old, struct Instance *new); |
126 |
/**< |
127 |
This is called to tell logrelations about a change in the location of a |
128 |
variable or a relation referenced in the logrelation. For example: |
129 |
|
130 |
A BOOLEAN_ATOM_INST contains a gl_list of logrelations. Such a gl_list |
131 |
tells us in which logrelations this boolean atom appears. Basically |
132 |
it is a list of pointers. When merging two MODELS, for example, the atoms |
133 |
contained in one of the models are going to be destroyed. In such a |
134 |
case (and in many other involving merging and refinement) the logrelation |
135 |
using such a variable must be notified about the change. This is the |
136 |
goal of this function. Similar situation applies for REL_INST and |
137 |
LREL_INST.<br><br> |
138 |
|
139 |
It will vist the list of logrelations of the instance and it will tell |
140 |
them to use the the "new" instance instead of the "old" instance.<br><br> |
141 |
|
142 |
For an explanation about how to handle different |
143 |
cases, see the function FixWhens below, thinking of course in list |
144 |
of logrelations instances rather than a list of when instances. |
145 |
*/ |
146 |
|
147 |
extern void FixWhens(struct Instance *old, struct Instance *new); |
148 |
/**< |
149 |
A WHEN instance contains a list of variables and a list of CASEs. Also, |
150 |
each CASE contains a list of model and relation instances to be |
151 |
used if such a CASE applies. In the list of variables, instances |
152 |
allowed are |
153 |
- BOOLEAN_ATOM_INST, |
154 |
- INTEGER_ATOM_INST, |
155 |
- SYMBOL_ATOM_INST, |
156 |
- BOOLEAN_CONSTANT_INST, |
157 |
- INTEGER_CONSTANT_INST, and |
158 |
- SYMBOL_CONSTANT_INST. |
159 |
|
160 |
In the list of instances of each CASE, we allow |
161 |
- MODEL_INST, |
162 |
- REL_INST, |
163 |
- LREL_INST, |
164 |
- WHEN_INST. |
165 |
|
166 |
For purposes of Merging and refining, an instance must know if it |
167 |
appears in some of the lists of instances of a WHEN instance. That is, |
168 |
all the instances listed above contain a when field, which is a |
169 |
gl_list. This gl_list tells us which and how many WHEN statements use |
170 |
the instance.<br><br> |
171 |
|
172 |
So, in the process of merging two instances , for example, we keep |
173 |
only one of the instances (the most refined) and destroy the other. |
174 |
If the instance that we are going to destroy is used in some |
175 |
WHEN statement, then we should tell those WHEN about the change. |
176 |
That is what this function does. It takes two instance structures |
177 |
as argument, old and new. Then, |
178 |
-# It goes through the list of whens of the NEW instance and tells |
179 |
the WHENs contained in such a list that they must point to the instance |
180 |
new instead of the instance old. |
181 |
-# Actually there are some modifications to the previous case. |
182 |
The function can also go through the list of whens of the |
183 |
OLD instance and tell the WHENs contained in such a list that |
184 |
they must point to the instance new instead of the instance old. |
185 |
|
186 |
So, which list of when we are going to visit depends in what we want. |
187 |
What is always the same however, is the fact that the WHEN has to |
188 |
point the instance new rather than the instance old at the end of |
189 |
the process, since the instance old is, in general, going to be |
190 |
destroyed.<br><br> |
191 |
|
192 |
The following cases were anticipated: |
193 |
-# If the list of whens of the instance new is NULL, this list will |
194 |
be set equal to the list of whens of the old instance and then |
195 |
the list of whens of the instance new should be visited. |
196 |
This may happen when we are refining ( booleans, integer, symbols |
197 |
or relations, but not models) |
198 |
|
199 |
-# If the list of when of new and old is the same, it does not |
200 |
matter which list of when we have to visit, we visit the list |
201 |
of whens of the new instance. This may happen when we are |
202 |
merging instances of the same type. |
203 |
|
204 |
-# If the list of whens of the new instance is not null and is |
205 |
different to the list of whens of the old instance, we will |
206 |
visit the list of whens of the old instance, perform the |
207 |
change of the pointers (new instead of old), and then enlarge |
208 |
the list of whens of the new instance with the WHENs of the |
209 |
old instance. Example |
210 |
<pre> |
211 |
old->whens contains when1, when2 (also when1 and when2 point to old) |
212 |
new->whens contains when3, when4 (also when3 and when4 point to new) |
213 |
|
214 |
old is going to be destroyed, it is going to be subtituted by new. |
215 |
Then, changing pointers |
216 |
|
217 |
when1 and when2 will point to new |
218 |
|
219 |
Therefore, new must know that when1 and when2 point to it now |
220 |
|
221 |
new->whens will contain when1,when2,when3,when4 |
222 |
|
223 |
This may happen when we are merging two instances, one more |
224 |
refined than another. Remeber again, old is going to be destroyed. |
225 |
</pre> |
226 |
*/ |
227 |
|
228 |
extern void FixWhensForRefinement(struct Instance *old, struct Instance *new); |
229 |
/**< |
230 |
This function is almost equal to the previous function, the difference |
231 |
is that it is specific for the refinement of a MODEL. In such a case, |
232 |
the instance new is the result of a reallocation of memory of the |
233 |
instance old. Therefore, the list of whens of the old instance is NULL, |
234 |
and the list of WHEN of the new instance is not NULL. This would fall |
235 |
in case 3 of the previous function, which involves visiting the list |
236 |
of whens of the old instance (which is NULL).That is precisely |
237 |
the reason for which we wrote this other function, we want to visit |
238 |
the list of whens of the new instance instead. |
239 |
*/ |
240 |
|
241 |
/* @} */ |
242 |
|
243 |
#endif /* ASC_LINKINST_H */ |
244 |
|