PajekParser.java

1
/*
2
 * Copyright 2006 - 2013
3
 *     Stefan Balev     <stefan.balev@graphstream-project.org>
4
 *     Julien Baudry    <julien.baudry@graphstream-project.org>
5
 *     Antoine Dutot    <antoine.dutot@graphstream-project.org>
6
 *     Yoann Pign��      <yoann.pigne@graphstream-project.org>
7
 *     Guilhelm Savin   <guilhelm.savin@graphstream-project.org>
8
 * 
9
 * This file is part of GraphStream <http://graphstream-project.org>.
10
 * 
11
 * GraphStream is a library whose purpose is to handle static or dynamic
12
 * graph, create them from scratch, file or any source and display them.
13
 * 
14
 * This program is free software distributed under the terms of two licenses, the
15
 * CeCILL-C license that fits European law, and the GNU Lesser General Public
16
 * License. You can  use, modify and/ or redistribute the software under the terms
17
 * of the CeCILL-C license as circulated by CEA, CNRS and INRIA at the following
18
 * URL <http://www.cecill.info> or under the terms of the GNU LGPL as published by
19
 * the Free Software Foundation, either version 3 of the License, or (at your
20
 * option) any later version.
21
 * 
22
 * This program is distributed in the hope that it will be useful, but WITHOUT ANY
23
 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
24
 * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
25
 * 
26
 * You should have received a copy of the GNU Lesser General Public License
27
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
28
 * 
29
 * The fact that you are presently reading this means that you have had
30
 * knowledge of the CeCILL-C and LGPL licenses and that you accept their terms.
31
 */
32
package org.graphstream.stream.file.pajek;
33
34
import java.io.InputStream;
35
import java.io.IOException;
36
import java.io.Reader;
37
38
import java.util.ArrayList;
39
40
import org.graphstream.stream.file.FileSourcePajek;
41
import org.graphstream.util.parser.ParseException;
42
import org.graphstream.util.parser.Parser;
43
import org.graphstream.util.parser.SimpleCharStream;
44
import org.graphstream.util.parser.Token;
45
import org.graphstream.util.parser.TokenMgrError;
46
47
@SuppressWarnings("unused")
48
public class PajekParser implements Parser, PajekParserConstants {
49
	// The node count.
50
	int nodeCount;
51
	// If true we are parsing the vertices labels.
52
	// False as soon as we encounter the arcs.
53
	boolean inVertices = true;
54
	// If true the list of edges is a edge list.
55
	boolean edgeListMode = true;
56
57
	PajekContext ctx;
58
59
	public PajekParser(FileSourcePajek pajek, InputStream stream) {
60
		this(stream);
61
		this.ctx = new PajekContext(pajek);
62
	}
63
64
	public PajekParser(FileSourcePajek pajek, Reader stream) {
65
		this(stream);
66
		this.ctx = new PajekContext(pajek);
67
	}
68
69
	public void open() {
70
	}
71
72
	/**
73
	 * Closes the parser, closing the opened stream.
74
	 */
75
	public void close() throws IOException {
76 1 1. close : removed call to org/graphstream/util/parser/SimpleCharStream::close → NO_COVERAGE
		jj_input_stream.close();
77
	}
78
79
	/*****************************************************************/
80
	/* The parser. */
81
	/*****************************************************************/
82
83
	/** Unused rule, call it to slurp in the whole file. */
84
	final public void all() throws ParseException {
85
		label_1: while (true) {
86 1 1. all : negated conditional → NO_COVERAGE
			if (jj_2_1(2)) {
87 1 1. all : removed call to org/graphstream/stream/file/pajek/PajekParser::network → NO_COVERAGE
				network();
88 1 1. all : negated conditional → NO_COVERAGE
			} else if (jj_2_2(2)) {
89 1 1. all : removed call to org/graphstream/stream/file/pajek/PajekParser::vertices → NO_COVERAGE
				vertices();
90 1 1. all : negated conditional → NO_COVERAGE
			} else if (jj_2_3(2)) {
91 1 1. all : removed call to org/graphstream/stream/file/pajek/PajekParser::edges → NO_COVERAGE
				edges();
92 1 1. all : negated conditional → NO_COVERAGE
			} else if (jj_2_4(2)) {
93
				jj_consume_token(COMMENT);
94 1 1. all : negated conditional → NO_COVERAGE
			} else if (jj_2_5(2)) {
95
				jj_consume_token(EOL);
96
			} else {
97
				jj_consume_token(-1);
98
				throw new ParseException();
99
			}
100 1 1. all : negated conditional → NO_COVERAGE
			if (jj_2_6(2)) {
101
				;
102
			} else {
103
				break label_1;
104
			}
105
		}
106
		jj_consume_token(0);
107
	}
108
109
	final public boolean next() throws ParseException {
110
		boolean ok = true;
111
		Token k;
112 1 1. next : negated conditional → NO_COVERAGE
		if (jj_2_7(2)) {
113 1 1. next : removed call to org/graphstream/stream/file/pajek/PajekParser::network → NO_COVERAGE
			network();
114 1 1. next : negated conditional → NO_COVERAGE
		} else if (jj_2_8(2)) {
115 1 1. next : removed call to org/graphstream/stream/file/pajek/PajekParser::vertices → NO_COVERAGE
			vertices();
116 1 1. next : negated conditional → NO_COVERAGE
		} else if (jj_2_9(2)) {
117 1 1. next : removed call to org/graphstream/stream/file/pajek/PajekParser::edges → NO_COVERAGE
			edges();
118 1 1. next : negated conditional → NO_COVERAGE
		} else if (jj_2_10(2)) {
119
			k = jj_consume_token(COMMENT);
120
			System.err.printf("got comment %s%n", k.image);
121 1 1. next : negated conditional → NO_COVERAGE
		} else if (jj_2_11(2)) {
122
			jj_consume_token(EOL);
123 1 1. next : negated conditional → NO_COVERAGE
		} else if (jj_2_12(2)) {
124
			jj_consume_token(0);
125
			ok = false;
126
		} else {
127
			jj_consume_token(-1);
128
			throw new ParseException();
129
		}
130
131 1 1. next : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return ok;
132
	}
133
134
	final public void network() throws ParseException {
135
		Token k;
136
		StringBuffer buf = new StringBuffer();
137
		boolean first = true;
138
		jj_consume_token(NETWORK);
139
		label_2: while (true) {
140 1 1. network : negated conditional → NO_COVERAGE
			if (jj_2_13(2)) {
141
				;
142
			} else {
143
				break label_2;
144
			}
145 1 1. network : negated conditional → NO_COVERAGE
			if (jj_2_14(2)) {
146
				k = jj_consume_token(STRING);
147 1 1. network : negated conditional → NO_COVERAGE
				if (!first)
148
					buf.append(" ");
149 1 1. network : Replaced integer subtraction with addition → NO_COVERAGE
				buf.append(k.image.substring(1, k.image.length() - 1));
150
				first = false;
151 1 1. network : negated conditional → NO_COVERAGE
			} else if (jj_2_15(2)) {
152
				k = jj_consume_token(KEY);
153 1 1. network : negated conditional → NO_COVERAGE
				if (!first)
154
					buf.append(" ");
155
				buf.append(k.image);
156
				first = false;
157
			} else {
158
				jj_consume_token(-1);
159
				throw new ParseException();
160
			}
161
		}
162 1 1. network : removed call to org/graphstream/stream/file/pajek/PajekContext::addGraphAttribute → NO_COVERAGE
		ctx.addGraphAttribute("ui.label", buf.toString());
163 1 1. network : removed call to org/graphstream/stream/file/pajek/PajekParser::EO → NO_COVERAGE
		EO();
164
	}
165
166
	// Vertices
167
	final public void vertices() throws ParseException {
168
		Token n;
169
		jj_consume_token(VERTICES);
170
		n = jj_consume_token(INT);
171 1 1. vertices : removed call to org/graphstream/stream/file/pajek/PajekParser::EO → NO_COVERAGE
		EO();
172
		nodeCount = ctx.addNodes(n);
173
		label_3: while (true) {
174 1 1. vertices : negated conditional → NO_COVERAGE
			if (jj_2_16(2)) {
175
				;
176
			} else {
177
				break label_3;
178
			}
179 1 1. vertices : negated conditional → NO_COVERAGE
			if (jj_2_17(2)) {
180 1 1. vertices : removed call to org/graphstream/stream/file/pajek/PajekParser::vertex → NO_COVERAGE
				vertex();
181 1 1. vertices : negated conditional → NO_COVERAGE
			} else if (jj_2_18(2)) {
182
				jj_consume_token(COMMENT);
183
			} else {
184
				jj_consume_token(-1);
185
				throw new ParseException();
186
			}
187
		}
188
	}
189
190
	final public void vertex() throws ParseException {
191
		Token id, k, x, y, z = null, sh;
192
		String label = null, value;
193
		NodeGraphics graphics = null;
194
		id = jj_consume_token(INT);
195 1 1. vertex : negated conditional → NO_COVERAGE
		if (jj_2_53(2)) {
196
			k = validIdentifier();
197
			label = k.image;
198 1 1. vertex : negated conditional → NO_COVERAGE
			if (jj_2_52(2)) {
199 1 1. vertex : negated conditional → NO_COVERAGE
				if (jj_2_19(2)) {
200
					x = jj_consume_token(REAL);
201 1 1. vertex : negated conditional → NO_COVERAGE
				} else if (jj_2_20(2)) {
202
					x = jj_consume_token(INT);
203
				} else {
204
					jj_consume_token(-1);
205
					throw new ParseException();
206
				}
207 1 1. vertex : negated conditional → NO_COVERAGE
				if (jj_2_21(2)) {
208
					y = jj_consume_token(REAL);
209 1 1. vertex : negated conditional → NO_COVERAGE
				} else if (jj_2_22(2)) {
210
					y = jj_consume_token(INT);
211
				} else {
212
					jj_consume_token(-1);
213
					throw new ParseException();
214
				}
215 1 1. vertex : negated conditional → NO_COVERAGE
				if (jj_2_25(2)) {
216 1 1. vertex : negated conditional → NO_COVERAGE
					if (jj_2_23(2)) {
217
						z = jj_consume_token(REAL);
218 1 1. vertex : negated conditional → NO_COVERAGE
					} else if (jj_2_24(2)) {
219
						z = jj_consume_token(INT);
220
					} else {
221
						jj_consume_token(-1);
222
						throw new ParseException();
223
					}
224
				} else {
225
					;
226
				}
227 1 1. vertex : removed call to org/graphstream/stream/file/pajek/PajekContext::addNodePosition → NO_COVERAGE
				ctx.addNodePosition(id.image, x, y, z);
228 1 1. vertex : negated conditional → NO_COVERAGE
				if (jj_2_32(2)) {
229 1 1. vertex : negated conditional → NO_COVERAGE
					if (jj_2_26(2)) {
230
						k = jj_consume_token(ELLIPSE);
231 1 1. vertex : negated conditional → NO_COVERAGE
						if (graphics == null)
232
							graphics = new NodeGraphics();
233 1 1. vertex : removed call to org/graphstream/stream/file/pajek/NodeGraphics::addKey → NO_COVERAGE
						graphics.addKey("shape", "circle", k);
234 1 1. vertex : negated conditional → NO_COVERAGE
					} else if (jj_2_27(2)) {
235
						k = jj_consume_token(BOX);
236 1 1. vertex : negated conditional → NO_COVERAGE
						if (graphics == null)
237
							graphics = new NodeGraphics();
238 1 1. vertex : removed call to org/graphstream/stream/file/pajek/NodeGraphics::addKey → NO_COVERAGE
						graphics.addKey("shape", "box", k);
239 1 1. vertex : negated conditional → NO_COVERAGE
					} else if (jj_2_28(2)) {
240
						k = jj_consume_token(TRIANGLE);
241 1 1. vertex : negated conditional → NO_COVERAGE
						if (graphics == null)
242
							graphics = new NodeGraphics();
243 1 1. vertex : removed call to org/graphstream/stream/file/pajek/NodeGraphics::addKey → NO_COVERAGE
						graphics.addKey("shape", "triangle", k);
244 1 1. vertex : negated conditional → NO_COVERAGE
					} else if (jj_2_29(2)) {
245
						k = jj_consume_token(CROSS);
246 1 1. vertex : negated conditional → NO_COVERAGE
						if (graphics == null)
247
							graphics = new NodeGraphics();
248 1 1. vertex : removed call to org/graphstream/stream/file/pajek/NodeGraphics::addKey → NO_COVERAGE
						graphics.addKey("shape", "cross", k);
249 1 1. vertex : negated conditional → NO_COVERAGE
					} else if (jj_2_30(2)) {
250
						k = jj_consume_token(DIAMOND);
251 1 1. vertex : negated conditional → NO_COVERAGE
						if (graphics == null)
252
							graphics = new NodeGraphics();
253 1 1. vertex : removed call to org/graphstream/stream/file/pajek/NodeGraphics::addKey → NO_COVERAGE
						graphics.addKey("shape", "diamond", k);
254 1 1. vertex : negated conditional → NO_COVERAGE
					} else if (jj_2_31(2)) {
255
						k = jj_consume_token(EMPTY);
256 1 1. vertex : negated conditional → NO_COVERAGE
						if (graphics == null)
257
							graphics = new NodeGraphics();
258 1 1. vertex : removed call to org/graphstream/stream/file/pajek/NodeGraphics::addKey → NO_COVERAGE
						graphics.addKey("shape", "circle", k);
259
					} else {
260
						jj_consume_token(-1);
261
						throw new ParseException();
262
					}
263
				} else {
264
					;
265
				}
266
				label_4: while (true) {
267 1 1. vertex : negated conditional → NO_COVERAGE
					if (jj_2_33(2)) {
268
						;
269
					} else {
270
						break label_4;
271
					}
272 1 1. vertex : negated conditional → NO_COVERAGE
					if (jj_2_34(2)) {
273
						k = jj_consume_token(SIZE);
274
						value = number();
275 1 1. vertex : negated conditional → NO_COVERAGE
						if (graphics == null)
276
							graphics = new NodeGraphics();
277 1 1. vertex : removed call to org/graphstream/stream/file/pajek/NodeGraphics::addKey → NO_COVERAGE
						graphics.addKey("s_size", value, k);
278 1 1. vertex : negated conditional → NO_COVERAGE
					} else if (jj_2_35(2)) {
279
						k = jj_consume_token(XFACT);
280
						value = number();
281
282 1 1. vertex : negated conditional → NO_COVERAGE
					} else if (jj_2_36(2)) {
283
						k = jj_consume_token(YFACT);
284
						value = number();
285
286 1 1. vertex : negated conditional → NO_COVERAGE
					} else if (jj_2_37(2)) {
287
						k = jj_consume_token(PHI);
288
						value = number();
289
290 1 1. vertex : negated conditional → NO_COVERAGE
					} else if (jj_2_38(2)) {
291
						k = jj_consume_token(R);
292
						value = number();
293
294 1 1. vertex : negated conditional → NO_COVERAGE
					} else if (jj_2_39(2)) {
295
						k = jj_consume_token(Q);
296
						value = number();
297
298 1 1. vertex : negated conditional → NO_COVERAGE
					} else if (jj_2_40(2)) {
299
						k = jj_consume_token(IC);
300
						value = color();
301 1 1. vertex : negated conditional → NO_COVERAGE
						if (graphics == null)
302
							graphics = new NodeGraphics();
303 1 1. vertex : removed call to org/graphstream/stream/file/pajek/NodeGraphics::addKey → NO_COVERAGE
						graphics.addKey("ic", value, k);
304 1 1. vertex : negated conditional → NO_COVERAGE
					} else if (jj_2_41(2)) {
305
						k = jj_consume_token(BC);
306
						value = color();
307 1 1. vertex : negated conditional → NO_COVERAGE
						if (graphics == null)
308
							graphics = new NodeGraphics();
309 1 1. vertex : removed call to org/graphstream/stream/file/pajek/NodeGraphics::addKey → NO_COVERAGE
						graphics.addKey("bc", value, k);
310 1 1. vertex : negated conditional → NO_COVERAGE
					} else if (jj_2_42(2)) {
311
						k = jj_consume_token(BW);
312
						value = number();
313 1 1. vertex : negated conditional → NO_COVERAGE
						if (graphics == null)
314
							graphics = new NodeGraphics();
315 1 1. vertex : removed call to org/graphstream/stream/file/pajek/NodeGraphics::addKey → NO_COVERAGE
						graphics.addKey("bw", value, k);
316 1 1. vertex : negated conditional → NO_COVERAGE
					} else if (jj_2_43(2)) {
317
						k = jj_consume_token(LC);
318
						value = color();
319 1 1. vertex : negated conditional → NO_COVERAGE
						if (graphics == null)
320
							graphics = new NodeGraphics();
321 1 1. vertex : removed call to org/graphstream/stream/file/pajek/NodeGraphics::addKey → NO_COVERAGE
						graphics.addKey("lc", value, k);
322 1 1. vertex : negated conditional → NO_COVERAGE
					} else if (jj_2_44(2)) {
323
						k = jj_consume_token(LA);
324
						value = number();
325
326 1 1. vertex : negated conditional → NO_COVERAGE
					} else if (jj_2_45(2)) {
327
						k = jj_consume_token(LR);
328
						value = number();
329
330 1 1. vertex : negated conditional → NO_COVERAGE
					} else if (jj_2_46(2)) {
331
						k = jj_consume_token(LPHI);
332
						value = number();
333
334 1 1. vertex : negated conditional → NO_COVERAGE
					} else if (jj_2_47(2)) {
335
						k = jj_consume_token(FOS);
336
						value = number();
337 1 1. vertex : negated conditional → NO_COVERAGE
						if (graphics == null)
338
							graphics = new NodeGraphics();
339 1 1. vertex : removed call to org/graphstream/stream/file/pajek/NodeGraphics::addKey → NO_COVERAGE
						graphics.addKey("fos", value, k);
340 1 1. vertex : negated conditional → NO_COVERAGE
					} else if (jj_2_48(2)) {
341
						k = jj_consume_token(FONT);
342
						value = keyOrString();
343 1 1. vertex : negated conditional → NO_COVERAGE
						if (graphics == null)
344
							graphics = new NodeGraphics();
345 1 1. vertex : removed call to org/graphstream/stream/file/pajek/NodeGraphics::addKey → NO_COVERAGE
						graphics.addKey("font", value, k);
346
					} else {
347
						jj_consume_token(-1);
348
						throw new ParseException();
349
					}
350
				}
351
				label_5: while (true) {
352 1 1. vertex : negated conditional → NO_COVERAGE
					if (jj_2_49(2)) {
353
						;
354
					} else {
355
						break label_5;
356
					}
357 1 1. vertex : negated conditional → NO_COVERAGE
					if (jj_2_50(2)) {
358
						k = validIdentifier();
359 1 1. vertex : negated conditional → NO_COVERAGE
					} else if (jj_2_51(2)) {
360
						k = jj_consume_token(REAL);
361
					} else {
362
						jj_consume_token(-1);
363
						throw new ParseException();
364
					}
365
					System.err.printf("%d:%d: unparsed garbage in .net (%s)%n",
366
							k.beginLine, k.beginColumn, k.image);
367
				}
368
			} else {
369
				;
370
			}
371
		} else {
372
			;
373
		}
374 1 1. vertex : removed call to org/graphstream/stream/file/pajek/PajekParser::EO → NO_COVERAGE
		EO();
375 1 1. vertex : negated conditional → NO_COVERAGE
		if (label != null) {
376 1 1. vertex : negated conditional → NO_COVERAGE
			if (label.startsWith("\u005c""))
377 1 1. vertex : Replaced integer subtraction with addition → NO_COVERAGE
				label = label.substring(1, label.length() - 1);
378 1 1. vertex : removed call to org/graphstream/stream/file/pajek/PajekContext::addNodeLabel → NO_COVERAGE
			ctx.addNodeLabel(id.image, label);
379
		}
380 1 1. vertex : negated conditional → NO_COVERAGE
		if (graphics != null)
381 1 1. vertex : removed call to org/graphstream/stream/file/pajek/PajekContext::addNodeGraphics → NO_COVERAGE
			ctx.addNodeGraphics(id.image, graphics);
382
	}
383
384
	// Edges and edge lists.
385
	final public void edges() throws ParseException {
386 1 1. edges : negated conditional → NO_COVERAGE
		if (jj_2_66(2)) {
387
			jj_consume_token(ARCS);
388 1 1. edges : removed call to org/graphstream/stream/file/pajek/PajekParser::EO → NO_COVERAGE
			EO();
389
			edgeListMode = false;
390
			inVertices = false;
391 1 1. edges : removed call to org/graphstream/stream/file/pajek/PajekContext::setDirected → NO_COVERAGE
			ctx.setDirected(true);
392
			label_6: while (true) {
393 1 1. edges : negated conditional → NO_COVERAGE
				if (jj_2_54(2)) {
394
					;
395
				} else {
396
					break label_6;
397
				}
398 1 1. edges : negated conditional → NO_COVERAGE
				if (jj_2_55(2)) {
399 1 1. edges : removed call to org/graphstream/stream/file/pajek/PajekParser::edge → NO_COVERAGE
					edge();
400 1 1. edges : negated conditional → NO_COVERAGE
				} else if (jj_2_56(2)) {
401
					jj_consume_token(COMMENT);
402
				} else {
403
					jj_consume_token(-1);
404
					throw new ParseException();
405
				}
406
			}
407 1 1. edges : negated conditional → NO_COVERAGE
		} else if (jj_2_67(2)) {
408
			jj_consume_token(EDGES);
409 1 1. edges : removed call to org/graphstream/stream/file/pajek/PajekParser::EO → NO_COVERAGE
			EO();
410
			edgeListMode = false;
411
			inVertices = false;
412 1 1. edges : removed call to org/graphstream/stream/file/pajek/PajekContext::setDirected → NO_COVERAGE
			ctx.setDirected(false);
413
			label_7: while (true) {
414 1 1. edges : negated conditional → NO_COVERAGE
				if (jj_2_57(2)) {
415
					;
416
				} else {
417
					break label_7;
418
				}
419 1 1. edges : negated conditional → NO_COVERAGE
				if (jj_2_58(2)) {
420 1 1. edges : removed call to org/graphstream/stream/file/pajek/PajekParser::edge → NO_COVERAGE
					edge();
421 1 1. edges : negated conditional → NO_COVERAGE
				} else if (jj_2_59(2)) {
422
					jj_consume_token(COMMENT);
423
				} else {
424
					jj_consume_token(-1);
425
					throw new ParseException();
426
				}
427
			}
428 1 1. edges : negated conditional → NO_COVERAGE
		} else if (jj_2_68(2)) {
429
			jj_consume_token(ARCSLIST);
430 1 1. edges : removed call to org/graphstream/stream/file/pajek/PajekParser::EO → NO_COVERAGE
			EO();
431
			edgeListMode = true;
432
			inVertices = false;
433 1 1. edges : removed call to org/graphstream/stream/file/pajek/PajekContext::setDirected → NO_COVERAGE
			ctx.setDirected(true);
434
			label_8: while (true) {
435 1 1. edges : negated conditional → NO_COVERAGE
				if (jj_2_60(2)) {
436
					;
437
				} else {
438
					break label_8;
439
				}
440 1 1. edges : negated conditional → NO_COVERAGE
				if (jj_2_61(2)) {
441 1 1. edges : removed call to org/graphstream/stream/file/pajek/PajekParser::edgeList → NO_COVERAGE
					edgeList();
442 1 1. edges : negated conditional → NO_COVERAGE
				} else if (jj_2_62(2)) {
443
					jj_consume_token(COMMENT);
444
				} else {
445
					jj_consume_token(-1);
446
					throw new ParseException();
447
				}
448
			}
449 1 1. edges : negated conditional → NO_COVERAGE
		} else if (jj_2_69(2)) {
450
			jj_consume_token(EDGESLIST);
451 1 1. edges : removed call to org/graphstream/stream/file/pajek/PajekParser::EO → NO_COVERAGE
			EO();
452
			edgeListMode = true;
453
			inVertices = false;
454 1 1. edges : removed call to org/graphstream/stream/file/pajek/PajekContext::setDirected → NO_COVERAGE
			ctx.setDirected(false);
455
			label_9: while (true) {
456 1 1. edges : negated conditional → NO_COVERAGE
				if (jj_2_63(2)) {
457
					;
458
				} else {
459
					break label_9;
460
				}
461 1 1. edges : negated conditional → NO_COVERAGE
				if (jj_2_64(2)) {
462 1 1. edges : removed call to org/graphstream/stream/file/pajek/PajekParser::edgeList → NO_COVERAGE
					edgeList();
463 1 1. edges : negated conditional → NO_COVERAGE
				} else if (jj_2_65(2)) {
464
					jj_consume_token(COMMENT);
465
				} else {
466
					jj_consume_token(-1);
467
					throw new ParseException();
468
				}
469
			}
470 1 1. edges : negated conditional → NO_COVERAGE
		} else if (jj_2_70(2)) {
471 1 1. edges : removed call to org/graphstream/stream/file/pajek/PajekParser::matrix → NO_COVERAGE
			matrix();
472 1 1. edges : negated conditional → NO_COVERAGE
		} else if (jj_2_71(2)) {
473
			jj_consume_token(COMMENT);
474
		} else {
475
			jj_consume_token(-1);
476
			throw new ParseException();
477
		}
478
	}
479
480
	final public void edge() throws ParseException {
481
		Token src, trg, more, weight, k, sh;
482
		String id, value;
483
		EdgeGraphics graphics = null;
484
		src = jj_consume_token(INT);
485
		trg = jj_consume_token(INT);
486
		id = ctx.addEdge(src.image, trg.image);
487 1 1. edge : negated conditional → NO_COVERAGE
		if (jj_2_100(2)) {
488 1 1. edge : negated conditional → NO_COVERAGE
			if (jj_2_72(2)) {
489
				k = jj_consume_token(INT);
490 1 1. edge : negated conditional → NO_COVERAGE
			} else if (jj_2_73(2)) {
491
				k = jj_consume_token(REAL);
492
			} else {
493
				jj_consume_token(-1);
494
				throw new ParseException();
495
			}
496 1 1. edge : removed call to org/graphstream/stream/file/pajek/PajekContext::addEdgeWeight → NO_COVERAGE
			ctx.addEdgeWeight(id, k);
497
			label_10: while (true) {
498 1 1. edge : negated conditional → NO_COVERAGE
				if (jj_2_74(2)) {
499
					;
500
				} else {
501
					break label_10;
502
				}
503 1 1. edge : negated conditional → NO_COVERAGE
				if (jj_2_77(2)) {
504
					k = jj_consume_token(P);
505
					value = keyOrString();
506 1 1. edge : negated conditional → NO_COVERAGE
					if (graphics == null)
507
						graphics = new EdgeGraphics();
508 1 1. edge : removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE
					graphics.addKey("p", value, k);
509 1 1. edge : negated conditional → NO_COVERAGE
				} else if (jj_2_78(2)) {
510
					k = jj_consume_token(W);
511
					value = number();
512 1 1. edge : negated conditional → NO_COVERAGE
					if (graphics == null)
513
						graphics = new EdgeGraphics();
514 1 1. edge : removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE
					graphics.addKey("w", value, k);
515 1 1. edge : negated conditional → NO_COVERAGE
				} else if (jj_2_79(2)) {
516
					k = jj_consume_token(C);
517
					value = color();
518 1 1. edge : negated conditional → NO_COVERAGE
					if (graphics == null)
519
						graphics = new EdgeGraphics();
520 1 1. edge : removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE
					graphics.addKey("c", value, k);
521 1 1. edge : negated conditional → NO_COVERAGE
				} else if (jj_2_80(2)) {
522
					k = jj_consume_token(S);
523
					value = number();
524 1 1. edge : negated conditional → NO_COVERAGE
					if (graphics == null)
525
						graphics = new EdgeGraphics();
526 1 1. edge : removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE
					graphics.addKey("s", value, k);
527 1 1. edge : negated conditional → NO_COVERAGE
				} else if (jj_2_81(2)) {
528
					k = jj_consume_token(A);
529 1 1. edge : negated conditional → NO_COVERAGE
					if (jj_2_75(2)) {
530
						k = jj_consume_token(A);
531 1 1. edge : negated conditional → NO_COVERAGE
					} else if (jj_2_76(2)) {
532
						k = jj_consume_token(B);
533
					} else {
534
						jj_consume_token(-1);
535
						throw new ParseException();
536
					}
537 1 1. edge : negated conditional → NO_COVERAGE
					if (graphics == null)
538
						graphics = new EdgeGraphics();
539 1 1. edge : removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE
					graphics.addKey("a", k.image, k);
540 1 1. edge : negated conditional → NO_COVERAGE
				} else if (jj_2_82(2)) {
541
					k = jj_consume_token(AP);
542
					value = number();
543 1 1. edge : negated conditional → NO_COVERAGE
					if (graphics == null)
544
						graphics = new EdgeGraphics();
545 1 1. edge : removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE
					graphics.addKey("ap", value, k);
546 1 1. edge : negated conditional → NO_COVERAGE
				} else if (jj_2_83(2)) {
547
					k = jj_consume_token(L);
548
					value = keyOrString();
549 1 1. edge : negated conditional → NO_COVERAGE
					if (graphics == null)
550
						graphics = new EdgeGraphics();
551 1 1. edge : removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE
					graphics.addKey("l", value, k);
552 1 1. edge : negated conditional → NO_COVERAGE
				} else if (jj_2_84(2)) {
553
					k = jj_consume_token(LP);
554
					value = number();
555 1 1. edge : negated conditional → NO_COVERAGE
					if (graphics == null)
556
						graphics = new EdgeGraphics();
557 1 1. edge : removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE
					graphics.addKey("lp", value, k);
558 1 1. edge : negated conditional → NO_COVERAGE
				} else if (jj_2_85(2)) {
559
					k = jj_consume_token(LR);
560
					value = number();
561 1 1. edge : negated conditional → NO_COVERAGE
					if (graphics == null)
562
						graphics = new EdgeGraphics();
563 1 1. edge : removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE
					graphics.addKey("lr", value, k);
564 1 1. edge : negated conditional → NO_COVERAGE
				} else if (jj_2_86(2)) {
565
					k = jj_consume_token(LPHI);
566
					value = number();
567 1 1. edge : negated conditional → NO_COVERAGE
					if (graphics == null)
568
						graphics = new EdgeGraphics();
569 1 1. edge : removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE
					graphics.addKey("lphi", value, k);
570 1 1. edge : negated conditional → NO_COVERAGE
				} else if (jj_2_87(2)) {
571
					k = jj_consume_token(LC);
572
					value = color();
573 1 1. edge : negated conditional → NO_COVERAGE
					if (graphics == null)
574
						graphics = new EdgeGraphics();
575 1 1. edge : removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE
					graphics.addKey("lc", value, k);
576 1 1. edge : negated conditional → NO_COVERAGE
				} else if (jj_2_88(2)) {
577
					k = jj_consume_token(LA);
578
					value = number();
579 1 1. edge : negated conditional → NO_COVERAGE
					if (graphics == null)
580
						graphics = new EdgeGraphics();
581 1 1. edge : removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE
					graphics.addKey("la", value, k);
582 1 1. edge : negated conditional → NO_COVERAGE
				} else if (jj_2_89(2)) {
583
					k = jj_consume_token(FOS);
584
					value = number();
585 1 1. edge : negated conditional → NO_COVERAGE
					if (graphics == null)
586
						graphics = new EdgeGraphics();
587 1 1. edge : removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE
					graphics.addKey("fos", value, k);
588 1 1. edge : negated conditional → NO_COVERAGE
				} else if (jj_2_90(2)) {
589
					k = jj_consume_token(FONT);
590
					value = keyOrString();
591 1 1. edge : negated conditional → NO_COVERAGE
					if (graphics == null)
592
						graphics = new EdgeGraphics();
593 1 1. edge : removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE
					graphics.addKey("font", value, k);
594 1 1. edge : negated conditional → NO_COVERAGE
				} else if (jj_2_91(2)) {
595
					k = jj_consume_token(H1);
596
					value = number();
597 1 1. edge : negated conditional → NO_COVERAGE
					if (graphics == null)
598
						graphics = new EdgeGraphics();
599 1 1. edge : removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE
					graphics.addKey("h1", value, k);
600 1 1. edge : negated conditional → NO_COVERAGE
				} else if (jj_2_92(2)) {
601
					k = jj_consume_token(H2);
602
					value = number();
603 1 1. edge : negated conditional → NO_COVERAGE
					if (graphics == null)
604
						graphics = new EdgeGraphics();
605 1 1. edge : removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE
					graphics.addKey("h2", value, k);
606 1 1. edge : negated conditional → NO_COVERAGE
				} else if (jj_2_93(2)) {
607
					k = jj_consume_token(A1);
608
					value = number();
609 1 1. edge : negated conditional → NO_COVERAGE
					if (graphics == null)
610
						graphics = new EdgeGraphics();
611 1 1. edge : removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE
					graphics.addKey("a1", value, k);
612 1 1. edge : negated conditional → NO_COVERAGE
				} else if (jj_2_94(2)) {
613
					k = jj_consume_token(A2);
614
					value = number();
615 1 1. edge : negated conditional → NO_COVERAGE
					if (graphics == null)
616
						graphics = new EdgeGraphics();
617 1 1. edge : removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE
					graphics.addKey("a2", value, k);
618 1 1. edge : negated conditional → NO_COVERAGE
				} else if (jj_2_95(2)) {
619
					k = jj_consume_token(K1);
620
					value = number();
621 1 1. edge : negated conditional → NO_COVERAGE
					if (graphics == null)
622
						graphics = new EdgeGraphics();
623 1 1. edge : removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE
					graphics.addKey("k1", value, k);
624 1 1. edge : negated conditional → NO_COVERAGE
				} else if (jj_2_96(2)) {
625
					k = jj_consume_token(K2);
626
					value = number();
627 1 1. edge : negated conditional → NO_COVERAGE
					if (graphics == null)
628
						graphics = new EdgeGraphics();
629 1 1. edge : removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE
					graphics.addKey("k2", value, k);
630
				} else {
631
					jj_consume_token(-1);
632
					throw new ParseException();
633
				}
634
			}
635
			label_11: while (true) {
636 1 1. edge : negated conditional → NO_COVERAGE
				if (jj_2_97(2)) {
637
					;
638
				} else {
639
					break label_11;
640
				}
641 1 1. edge : negated conditional → NO_COVERAGE
				if (jj_2_98(2)) {
642
					k = validIdentifier();
643 1 1. edge : negated conditional → NO_COVERAGE
				} else if (jj_2_99(2)) {
644
					k = jj_consume_token(REAL);
645
				} else {
646
					jj_consume_token(-1);
647
					throw new ParseException();
648
				}
649
				System.err.printf("%d:%d: unparsed garbage in .net (%s)%n",
650
						k.beginLine, k.beginColumn, k.image);
651
			}
652
		} else {
653
			;
654
		}
655 1 1. edge : removed call to org/graphstream/stream/file/pajek/PajekParser::EO → NO_COVERAGE
		EO();
656 1 1. edge : negated conditional → NO_COVERAGE
		if (graphics != null)
657 1 1. edge : removed call to org/graphstream/stream/file/pajek/PajekContext::addEdgeGraphics → NO_COVERAGE
			ctx.addEdgeGraphics(id, graphics);
658
	}
659
660
	final public void edgeList() throws ParseException {
661
		Token src, trg, more;
662
		String id;
663
		src = jj_consume_token(INT);
664
		trg = jj_consume_token(INT);
665
		id = ctx.addEdge(src.image, trg.image);
666
		label_12: while (true) {
667 1 1. edgeList : negated conditional → NO_COVERAGE
			if (jj_2_101(2)) {
668
				;
669
			} else {
670
				break label_12;
671
			}
672
			more = jj_consume_token(INT);
673 1 1. edgeList : negated conditional → NO_COVERAGE
			if (edgeListMode)
674
				ctx.addEdge(src.image, more.image);
675
		}
676 1 1. edgeList : removed call to org/graphstream/stream/file/pajek/PajekParser::EO → NO_COVERAGE
		EO();
677
	}
678
679
	// The awful *matrix notation.
680
	final public void matrix() throws ParseException {
681
		EdgeMatrix mat = new EdgeMatrix(nodeCount);
682
		ArrayList<String> line;
683
		jj_consume_token(MATRIX);
684
		label_13: while (true) {
685
			jj_consume_token(EOL);
686 1 1. matrix : negated conditional → NO_COVERAGE
			if (jj_2_102(2)) {
687
				;
688
			} else {
689
				break label_13;
690
			}
691
		}
692
		label_14: while (true) {
693 1 1. matrix : negated conditional → NO_COVERAGE
			if (jj_2_103(2)) {
694
				line = matrixline(mat);
695 1 1. matrix : removed call to org/graphstream/stream/file/pajek/EdgeMatrix::addLine → NO_COVERAGE
				mat.addLine(line);
696 1 1. matrix : negated conditional → NO_COVERAGE
			} else if (jj_2_104(2)) {
697
				jj_consume_token(COMMENT);
698
			} else {
699
				jj_consume_token(-1);
700
				throw new ParseException();
701
			}
702 1 1. matrix : negated conditional → NO_COVERAGE
			if (jj_2_105(2)) {
703
				;
704
			} else {
705
				break label_14;
706
			}
707
		}
708 1 1. matrix : removed call to org/graphstream/stream/file/pajek/PajekContext::addEdges → NO_COVERAGE
		ctx.addEdges(mat);
709
	}
710
711
	final public ArrayList<String> matrixline(EdgeMatrix mat)
712
			throws ParseException {
713
		Token k;
714
		ArrayList<String> line = new ArrayList<String>(nodeCount);
715
		label_15: while (true) {
716
			k = jj_consume_token(INT);
717
			line.add(k.image);
718 1 1. matrixline : negated conditional → NO_COVERAGE
			if (jj_2_106(2)) {
719
				;
720
			} else {
721
				break label_15;
722
			}
723
		}
724 1 1. matrixline : removed call to org/graphstream/stream/file/pajek/PajekParser::EO → NO_COVERAGE
		EO();
725
726 1 1. matrixline : mutated return of Object value for org/graphstream/stream/file/pajek/PajekParser::matrixline to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
		return line;
727
	}
728
729
	// Various
730
	final public String keyOrString() throws ParseException {
731
		Token k;
732
		String value;
733 1 1. keyOrString : negated conditional → NO_COVERAGE
		if (jj_2_107(2)) {
734
			k = jj_consume_token(KEY);
735
			value = k.image;
736 1 1. keyOrString : negated conditional → NO_COVERAGE
		} else if (jj_2_108(2)) {
737
			k = jj_consume_token(STRING);
738 1 1. keyOrString : Replaced integer subtraction with addition → NO_COVERAGE
			value = k.image.substring(1, k.image.length() - 1);
739
		} else {
740
			jj_consume_token(-1);
741
			throw new ParseException();
742
		}
743
744 1 1. keyOrString : mutated return of Object value for org/graphstream/stream/file/pajek/PajekParser::keyOrString to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
		return value;
745
	}
746
747
	final public String number() throws ParseException {
748
		Token k;
749 1 1. number : negated conditional → NO_COVERAGE
		if (jj_2_109(2)) {
750
			k = jj_consume_token(INT);
751 1 1. number : negated conditional → NO_COVERAGE
		} else if (jj_2_110(2)) {
752
			k = jj_consume_token(REAL);
753
		} else {
754
			jj_consume_token(-1);
755
			throw new ParseException();
756
		}
757
758 1 1. number : mutated return of Object value for org/graphstream/stream/file/pajek/PajekParser::number to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
		return k.image;
759
	}
760
761
	final public String color() throws ParseException {
762
		String value;
763
		Token r, g, b;
764 1 1. color : negated conditional → NO_COVERAGE
		if (jj_2_111(2)) {
765
			value = keyOrString();
766 1 1. color : negated conditional → NO_COVERAGE
		} else if (jj_2_112(2)) {
767
			r = jj_consume_token(REAL);
768
			g = jj_consume_token(REAL);
769
			b = jj_consume_token(REAL);
770
			value = PajekContext.toColorValue(r, g, b);
771 1 1. color : negated conditional → NO_COVERAGE
		} else if (jj_2_113(2)) {
772
			r = jj_consume_token(INT);
773
			g = jj_consume_token(INT);
774
			b = jj_consume_token(INT);
775
			value = PajekContext.toColorValue(r, g, b);
776
		} else {
777
			jj_consume_token(-1);
778
			throw new ParseException();
779
		}
780
781 1 1. color : mutated return of Object value for org/graphstream/stream/file/pajek/PajekParser::color to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
		return value;
782
	}
783
784
	final public void EO() throws ParseException {
785 1 1. EO : negated conditional → NO_COVERAGE
		if (jj_2_115(2)) {
786
			label_16: while (true) {
787
				jj_consume_token(EOL);
788 1 1. EO : negated conditional → NO_COVERAGE
				if (jj_2_114(2)) {
789
					;
790
				} else {
791
					break label_16;
792
				}
793
			}
794 1 1. EO : negated conditional → NO_COVERAGE
		} else if (jj_2_116(2)) {
795
			jj_consume_token(0);
796
		} else {
797
			jj_consume_token(-1);
798
			throw new ParseException();
799
		}
800
	}
801
802
	final public Token anyGraphicAttribute() throws ParseException {
803
		Token k;
804 1 1. anyGraphicAttribute : negated conditional → NO_COVERAGE
		if (jj_2_117(2)) {
805
			k = jj_consume_token(INT);
806 1 1. anyGraphicAttribute : negated conditional → NO_COVERAGE
		} else if (jj_2_118(2)) {
807
			k = jj_consume_token(REAL);
808 1 1. anyGraphicAttribute : negated conditional → NO_COVERAGE
		} else if (jj_2_119(2)) {
809
			k = jj_consume_token(KEY);
810 1 1. anyGraphicAttribute : negated conditional → NO_COVERAGE
		} else if (jj_2_120(2)) {
811
			k = jj_consume_token(STRING);
812 1 1. anyGraphicAttribute : negated conditional → NO_COVERAGE
		} else if (jj_2_121(2)) {
813
			k = jj_consume_token(SIZE);
814 1 1. anyGraphicAttribute : negated conditional → NO_COVERAGE
		} else if (jj_2_122(2)) {
815
			k = jj_consume_token(XFACT);
816 1 1. anyGraphicAttribute : negated conditional → NO_COVERAGE
		} else if (jj_2_123(2)) {
817
			k = jj_consume_token(YFACT);
818 1 1. anyGraphicAttribute : negated conditional → NO_COVERAGE
		} else if (jj_2_124(2)) {
819
			k = jj_consume_token(PHI);
820 1 1. anyGraphicAttribute : negated conditional → NO_COVERAGE
		} else if (jj_2_125(2)) {
821
			k = jj_consume_token(R);
822 1 1. anyGraphicAttribute : negated conditional → NO_COVERAGE
		} else if (jj_2_126(2)) {
823
			k = jj_consume_token(Q);
824 1 1. anyGraphicAttribute : negated conditional → NO_COVERAGE
		} else if (jj_2_127(2)) {
825
			k = jj_consume_token(IC);
826 1 1. anyGraphicAttribute : negated conditional → NO_COVERAGE
		} else if (jj_2_128(2)) {
827
			k = jj_consume_token(BC);
828 1 1. anyGraphicAttribute : negated conditional → NO_COVERAGE
		} else if (jj_2_129(2)) {
829
			k = jj_consume_token(BW);
830 1 1. anyGraphicAttribute : negated conditional → NO_COVERAGE
		} else if (jj_2_130(2)) {
831
			k = jj_consume_token(LC);
832 1 1. anyGraphicAttribute : negated conditional → NO_COVERAGE
		} else if (jj_2_131(2)) {
833
			k = jj_consume_token(LA);
834 1 1. anyGraphicAttribute : negated conditional → NO_COVERAGE
		} else if (jj_2_132(2)) {
835
			k = jj_consume_token(LR);
836 1 1. anyGraphicAttribute : negated conditional → NO_COVERAGE
		} else if (jj_2_133(2)) {
837
			k = jj_consume_token(LPHI);
838 1 1. anyGraphicAttribute : negated conditional → NO_COVERAGE
		} else if (jj_2_134(2)) {
839
			k = jj_consume_token(FOS);
840 1 1. anyGraphicAttribute : negated conditional → NO_COVERAGE
		} else if (jj_2_135(2)) {
841
			k = jj_consume_token(FONT);
842 1 1. anyGraphicAttribute : negated conditional → NO_COVERAGE
		} else if (jj_2_136(2)) {
843
			k = jj_consume_token(C);
844 1 1. anyGraphicAttribute : negated conditional → NO_COVERAGE
		} else if (jj_2_137(2)) {
845
			k = jj_consume_token(P);
846 1 1. anyGraphicAttribute : negated conditional → NO_COVERAGE
		} else if (jj_2_138(2)) {
847
			k = jj_consume_token(W);
848 1 1. anyGraphicAttribute : negated conditional → NO_COVERAGE
		} else if (jj_2_139(2)) {
849
			k = jj_consume_token(A);
850 1 1. anyGraphicAttribute : negated conditional → NO_COVERAGE
		} else if (jj_2_140(2)) {
851
			k = jj_consume_token(B);
852 1 1. anyGraphicAttribute : negated conditional → NO_COVERAGE
		} else if (jj_2_141(2)) {
853
			k = jj_consume_token(AP);
854 1 1. anyGraphicAttribute : negated conditional → NO_COVERAGE
		} else if (jj_2_142(2)) {
855
			k = jj_consume_token(L);
856 1 1. anyGraphicAttribute : negated conditional → NO_COVERAGE
		} else if (jj_2_143(2)) {
857
			k = jj_consume_token(LP);
858 1 1. anyGraphicAttribute : negated conditional → NO_COVERAGE
		} else if (jj_2_144(2)) {
859
			k = jj_consume_token(H1);
860 1 1. anyGraphicAttribute : negated conditional → NO_COVERAGE
		} else if (jj_2_145(2)) {
861
			k = jj_consume_token(H2);
862 1 1. anyGraphicAttribute : negated conditional → NO_COVERAGE
		} else if (jj_2_146(2)) {
863
			k = jj_consume_token(K1);
864 1 1. anyGraphicAttribute : negated conditional → NO_COVERAGE
		} else if (jj_2_147(2)) {
865
			k = jj_consume_token(K2);
866 1 1. anyGraphicAttribute : negated conditional → NO_COVERAGE
		} else if (jj_2_148(2)) {
867
			k = jj_consume_token(A1);
868 1 1. anyGraphicAttribute : negated conditional → NO_COVERAGE
		} else if (jj_2_149(2)) {
869
			k = jj_consume_token(A2);
870
		} else {
871
			jj_consume_token(-1);
872
			throw new ParseException();
873
		}
874
875 1 1. anyGraphicAttribute : mutated return of Object value for org/graphstream/stream/file/pajek/PajekParser::anyGraphicAttribute to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
		return k;
876
	}
877
878
	final public Token validIdentifier() throws ParseException {
879
		Token k = null;
880 1 1. validIdentifier : negated conditional → NO_COVERAGE
		if (jj_2_150(2)) {
881
			k = jj_consume_token(KEY);
882 1 1. validIdentifier : negated conditional → NO_COVERAGE
		} else if (jj_2_151(2)) {
883
			k = jj_consume_token(STRING);
884 1 1. validIdentifier : negated conditional → NO_COVERAGE
		} else if (jj_2_152(2)) {
885
			k = jj_consume_token(INT);
886 1 1. validIdentifier : negated conditional → NO_COVERAGE
		} else if (jj_2_153(2)) {
887
			k = jj_consume_token(A);
888 1 1. validIdentifier : negated conditional → NO_COVERAGE
		} else if (jj_2_154(2)) {
889
			k = jj_consume_token(A1);
890 1 1. validIdentifier : negated conditional → NO_COVERAGE
		} else if (jj_2_155(2)) {
891
			k = jj_consume_token(A2);
892 1 1. validIdentifier : negated conditional → NO_COVERAGE
		} else if (jj_2_156(2)) {
893
			k = jj_consume_token(AP);
894 1 1. validIdentifier : negated conditional → NO_COVERAGE
		} else if (jj_2_157(2)) {
895
			k = jj_consume_token(B);
896 1 1. validIdentifier : negated conditional → NO_COVERAGE
		} else if (jj_2_158(2)) {
897
			k = jj_consume_token(BC);
898 1 1. validIdentifier : negated conditional → NO_COVERAGE
		} else if (jj_2_159(2)) {
899
			k = jj_consume_token(BW);
900 1 1. validIdentifier : negated conditional → NO_COVERAGE
		} else if (jj_2_160(2)) {
901
			k = jj_consume_token(C);
902 1 1. validIdentifier : negated conditional → NO_COVERAGE
		} else if (jj_2_161(2)) {
903
			k = jj_consume_token(FONT);
904 1 1. validIdentifier : negated conditional → NO_COVERAGE
		} else if (jj_2_162(2)) {
905
			k = jj_consume_token(FOS);
906 1 1. validIdentifier : negated conditional → NO_COVERAGE
		} else if (jj_2_163(2)) {
907
			k = jj_consume_token(H1);
908 1 1. validIdentifier : negated conditional → NO_COVERAGE
		} else if (jj_2_164(2)) {
909
			k = jj_consume_token(H2);
910 1 1. validIdentifier : negated conditional → NO_COVERAGE
		} else if (jj_2_165(2)) {
911
			k = jj_consume_token(IC);
912 1 1. validIdentifier : negated conditional → NO_COVERAGE
		} else if (jj_2_166(2)) {
913
			k = jj_consume_token(K1);
914 1 1. validIdentifier : negated conditional → NO_COVERAGE
		} else if (jj_2_167(2)) {
915
			k = jj_consume_token(K2);
916 1 1. validIdentifier : negated conditional → NO_COVERAGE
		} else if (jj_2_168(2)) {
917
			k = jj_consume_token(L);
918 1 1. validIdentifier : negated conditional → NO_COVERAGE
		} else if (jj_2_169(2)) {
919
			k = jj_consume_token(LA);
920 1 1. validIdentifier : negated conditional → NO_COVERAGE
		} else if (jj_2_170(2)) {
921
			k = jj_consume_token(LC);
922 1 1. validIdentifier : negated conditional → NO_COVERAGE
		} else if (jj_2_171(2)) {
923
			k = jj_consume_token(LP);
924 1 1. validIdentifier : negated conditional → NO_COVERAGE
		} else if (jj_2_172(2)) {
925
			k = jj_consume_token(LPHI);
926 1 1. validIdentifier : negated conditional → NO_COVERAGE
		} else if (jj_2_173(2)) {
927
			k = jj_consume_token(LR);
928 1 1. validIdentifier : negated conditional → NO_COVERAGE
		} else if (jj_2_174(2)) {
929
			k = jj_consume_token(P);
930 1 1. validIdentifier : negated conditional → NO_COVERAGE
		} else if (jj_2_175(2)) {
931
			k = jj_consume_token(PHI);
932 1 1. validIdentifier : negated conditional → NO_COVERAGE
		} else if (jj_2_176(2)) {
933
			k = jj_consume_token(Q);
934 1 1. validIdentifier : negated conditional → NO_COVERAGE
		} else if (jj_2_177(2)) {
935
			k = jj_consume_token(R);
936 1 1. validIdentifier : negated conditional → NO_COVERAGE
		} else if (jj_2_178(2)) {
937
			k = jj_consume_token(S);
938 1 1. validIdentifier : negated conditional → NO_COVERAGE
		} else if (jj_2_179(2)) {
939
			k = jj_consume_token(SIZE);
940 1 1. validIdentifier : negated conditional → NO_COVERAGE
		} else if (jj_2_180(2)) {
941
			k = jj_consume_token(W);
942 1 1. validIdentifier : negated conditional → NO_COVERAGE
		} else if (jj_2_181(2)) {
943
			k = jj_consume_token(XFACT);
944 1 1. validIdentifier : negated conditional → NO_COVERAGE
		} else if (jj_2_182(2)) {
945
			k = jj_consume_token(YFACT);
946
		} else {
947
			jj_consume_token(-1);
948
			throw new ParseException();
949
		}
950
951 1 1. validIdentifier : mutated return of Object value for org/graphstream/stream/file/pajek/PajekParser::validIdentifier to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
		return k;
952
	}
953
954
	private boolean jj_2_1(int xla) {
955
		jj_la = xla;
956
		jj_lastpos = jj_scanpos = token;
957
		try {
958 2 1. jj_2_1 : negated conditional → NO_COVERAGE
2. jj_2_1 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_1();
959
		} catch (LookaheadSuccess ls) {
960 1 1. jj_2_1 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
961
		} finally {
962 3 1. jj_2_1 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_1 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_1 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(0, xla);
963
		}
964
	}
965
966
	private boolean jj_2_2(int xla) {
967
		jj_la = xla;
968
		jj_lastpos = jj_scanpos = token;
969
		try {
970 2 1. jj_2_2 : negated conditional → NO_COVERAGE
2. jj_2_2 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_2();
971
		} catch (LookaheadSuccess ls) {
972 1 1. jj_2_2 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
973
		} finally {
974 3 1. jj_2_2 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_2 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_2 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(1, xla);
975
		}
976
	}
977
978
	private boolean jj_2_3(int xla) {
979
		jj_la = xla;
980
		jj_lastpos = jj_scanpos = token;
981
		try {
982 2 1. jj_2_3 : negated conditional → NO_COVERAGE
2. jj_2_3 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_3();
983
		} catch (LookaheadSuccess ls) {
984 1 1. jj_2_3 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
985
		} finally {
986 3 1. jj_2_3 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_3 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_3 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(2, xla);
987
		}
988
	}
989
990
	private boolean jj_2_4(int xla) {
991
		jj_la = xla;
992
		jj_lastpos = jj_scanpos = token;
993
		try {
994 2 1. jj_2_4 : negated conditional → NO_COVERAGE
2. jj_2_4 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_4();
995
		} catch (LookaheadSuccess ls) {
996 1 1. jj_2_4 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
997
		} finally {
998 3 1. jj_2_4 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_4 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_4 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(3, xla);
999
		}
1000
	}
1001
1002
	private boolean jj_2_5(int xla) {
1003
		jj_la = xla;
1004
		jj_lastpos = jj_scanpos = token;
1005
		try {
1006 2 1. jj_2_5 : negated conditional → NO_COVERAGE
2. jj_2_5 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_5();
1007
		} catch (LookaheadSuccess ls) {
1008 1 1. jj_2_5 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1009
		} finally {
1010 3 1. jj_2_5 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_5 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_5 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(4, xla);
1011
		}
1012
	}
1013
1014
	private boolean jj_2_6(int xla) {
1015
		jj_la = xla;
1016
		jj_lastpos = jj_scanpos = token;
1017
		try {
1018 2 1. jj_2_6 : negated conditional → NO_COVERAGE
2. jj_2_6 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_6();
1019
		} catch (LookaheadSuccess ls) {
1020 1 1. jj_2_6 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1021
		} finally {
1022 3 1. jj_2_6 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_6 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_6 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(5, xla);
1023
		}
1024
	}
1025
1026
	private boolean jj_2_7(int xla) {
1027
		jj_la = xla;
1028
		jj_lastpos = jj_scanpos = token;
1029
		try {
1030 2 1. jj_2_7 : negated conditional → NO_COVERAGE
2. jj_2_7 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_7();
1031
		} catch (LookaheadSuccess ls) {
1032 1 1. jj_2_7 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1033
		} finally {
1034 3 1. jj_2_7 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_7 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_7 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(6, xla);
1035
		}
1036
	}
1037
1038
	private boolean jj_2_8(int xla) {
1039
		jj_la = xla;
1040
		jj_lastpos = jj_scanpos = token;
1041
		try {
1042 2 1. jj_2_8 : negated conditional → NO_COVERAGE
2. jj_2_8 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_8();
1043
		} catch (LookaheadSuccess ls) {
1044 1 1. jj_2_8 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1045
		} finally {
1046 3 1. jj_2_8 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_8 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_8 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(7, xla);
1047
		}
1048
	}
1049
1050
	private boolean jj_2_9(int xla) {
1051
		jj_la = xla;
1052
		jj_lastpos = jj_scanpos = token;
1053
		try {
1054 2 1. jj_2_9 : negated conditional → NO_COVERAGE
2. jj_2_9 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_9();
1055
		} catch (LookaheadSuccess ls) {
1056 1 1. jj_2_9 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1057
		} finally {
1058 3 1. jj_2_9 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_9 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_9 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(8, xla);
1059
		}
1060
	}
1061
1062
	private boolean jj_2_10(int xla) {
1063
		jj_la = xla;
1064
		jj_lastpos = jj_scanpos = token;
1065
		try {
1066 2 1. jj_2_10 : negated conditional → NO_COVERAGE
2. jj_2_10 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_10();
1067
		} catch (LookaheadSuccess ls) {
1068 1 1. jj_2_10 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1069
		} finally {
1070 3 1. jj_2_10 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_10 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_10 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(9, xla);
1071
		}
1072
	}
1073
1074
	private boolean jj_2_11(int xla) {
1075
		jj_la = xla;
1076
		jj_lastpos = jj_scanpos = token;
1077
		try {
1078 2 1. jj_2_11 : negated conditional → NO_COVERAGE
2. jj_2_11 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_11();
1079
		} catch (LookaheadSuccess ls) {
1080 1 1. jj_2_11 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1081
		} finally {
1082 3 1. jj_2_11 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_11 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_11 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(10, xla);
1083
		}
1084
	}
1085
1086
	private boolean jj_2_12(int xla) {
1087
		jj_la = xla;
1088
		jj_lastpos = jj_scanpos = token;
1089
		try {
1090 2 1. jj_2_12 : negated conditional → NO_COVERAGE
2. jj_2_12 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_12();
1091
		} catch (LookaheadSuccess ls) {
1092 1 1. jj_2_12 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1093
		} finally {
1094 3 1. jj_2_12 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_12 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_12 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(11, xla);
1095
		}
1096
	}
1097
1098
	private boolean jj_2_13(int xla) {
1099
		jj_la = xla;
1100
		jj_lastpos = jj_scanpos = token;
1101
		try {
1102 2 1. jj_2_13 : negated conditional → NO_COVERAGE
2. jj_2_13 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_13();
1103
		} catch (LookaheadSuccess ls) {
1104 1 1. jj_2_13 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1105
		} finally {
1106 3 1. jj_2_13 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_13 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_13 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(12, xla);
1107
		}
1108
	}
1109
1110
	private boolean jj_2_14(int xla) {
1111
		jj_la = xla;
1112
		jj_lastpos = jj_scanpos = token;
1113
		try {
1114 2 1. jj_2_14 : negated conditional → NO_COVERAGE
2. jj_2_14 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_14();
1115
		} catch (LookaheadSuccess ls) {
1116 1 1. jj_2_14 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1117
		} finally {
1118 3 1. jj_2_14 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_14 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_14 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(13, xla);
1119
		}
1120
	}
1121
1122
	private boolean jj_2_15(int xla) {
1123
		jj_la = xla;
1124
		jj_lastpos = jj_scanpos = token;
1125
		try {
1126 2 1. jj_2_15 : negated conditional → NO_COVERAGE
2. jj_2_15 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_15();
1127
		} catch (LookaheadSuccess ls) {
1128 1 1. jj_2_15 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1129
		} finally {
1130 3 1. jj_2_15 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_15 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_15 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(14, xla);
1131
		}
1132
	}
1133
1134
	private boolean jj_2_16(int xla) {
1135
		jj_la = xla;
1136
		jj_lastpos = jj_scanpos = token;
1137
		try {
1138 2 1. jj_2_16 : negated conditional → NO_COVERAGE
2. jj_2_16 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_16();
1139
		} catch (LookaheadSuccess ls) {
1140 1 1. jj_2_16 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1141
		} finally {
1142 3 1. jj_2_16 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_16 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_16 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(15, xla);
1143
		}
1144
	}
1145
1146
	private boolean jj_2_17(int xla) {
1147
		jj_la = xla;
1148
		jj_lastpos = jj_scanpos = token;
1149
		try {
1150 2 1. jj_2_17 : negated conditional → NO_COVERAGE
2. jj_2_17 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_17();
1151
		} catch (LookaheadSuccess ls) {
1152 1 1. jj_2_17 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1153
		} finally {
1154 3 1. jj_2_17 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_17 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_17 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(16, xla);
1155
		}
1156
	}
1157
1158
	private boolean jj_2_18(int xla) {
1159
		jj_la = xla;
1160
		jj_lastpos = jj_scanpos = token;
1161
		try {
1162 2 1. jj_2_18 : negated conditional → NO_COVERAGE
2. jj_2_18 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_18();
1163
		} catch (LookaheadSuccess ls) {
1164 1 1. jj_2_18 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1165
		} finally {
1166 3 1. jj_2_18 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_18 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_18 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(17, xla);
1167
		}
1168
	}
1169
1170
	private boolean jj_2_19(int xla) {
1171
		jj_la = xla;
1172
		jj_lastpos = jj_scanpos = token;
1173
		try {
1174 2 1. jj_2_19 : negated conditional → NO_COVERAGE
2. jj_2_19 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_19();
1175
		} catch (LookaheadSuccess ls) {
1176 1 1. jj_2_19 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1177
		} finally {
1178 3 1. jj_2_19 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_19 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_19 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(18, xla);
1179
		}
1180
	}
1181
1182
	private boolean jj_2_20(int xla) {
1183
		jj_la = xla;
1184
		jj_lastpos = jj_scanpos = token;
1185
		try {
1186 2 1. jj_2_20 : negated conditional → NO_COVERAGE
2. jj_2_20 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_20();
1187
		} catch (LookaheadSuccess ls) {
1188 1 1. jj_2_20 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1189
		} finally {
1190 3 1. jj_2_20 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_20 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_20 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(19, xla);
1191
		}
1192
	}
1193
1194
	private boolean jj_2_21(int xla) {
1195
		jj_la = xla;
1196
		jj_lastpos = jj_scanpos = token;
1197
		try {
1198 2 1. jj_2_21 : negated conditional → NO_COVERAGE
2. jj_2_21 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_21();
1199
		} catch (LookaheadSuccess ls) {
1200 1 1. jj_2_21 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1201
		} finally {
1202 3 1. jj_2_21 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_21 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_21 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(20, xla);
1203
		}
1204
	}
1205
1206
	private boolean jj_2_22(int xla) {
1207
		jj_la = xla;
1208
		jj_lastpos = jj_scanpos = token;
1209
		try {
1210 2 1. jj_2_22 : negated conditional → NO_COVERAGE
2. jj_2_22 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_22();
1211
		} catch (LookaheadSuccess ls) {
1212 1 1. jj_2_22 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1213
		} finally {
1214 3 1. jj_2_22 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_22 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_22 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(21, xla);
1215
		}
1216
	}
1217
1218
	private boolean jj_2_23(int xla) {
1219
		jj_la = xla;
1220
		jj_lastpos = jj_scanpos = token;
1221
		try {
1222 2 1. jj_2_23 : negated conditional → NO_COVERAGE
2. jj_2_23 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_23();
1223
		} catch (LookaheadSuccess ls) {
1224 1 1. jj_2_23 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1225
		} finally {
1226 3 1. jj_2_23 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_23 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_23 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(22, xla);
1227
		}
1228
	}
1229
1230
	private boolean jj_2_24(int xla) {
1231
		jj_la = xla;
1232
		jj_lastpos = jj_scanpos = token;
1233
		try {
1234 2 1. jj_2_24 : negated conditional → NO_COVERAGE
2. jj_2_24 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_24();
1235
		} catch (LookaheadSuccess ls) {
1236 1 1. jj_2_24 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1237
		} finally {
1238 3 1. jj_2_24 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_24 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_24 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(23, xla);
1239
		}
1240
	}
1241
1242
	private boolean jj_2_25(int xla) {
1243
		jj_la = xla;
1244
		jj_lastpos = jj_scanpos = token;
1245
		try {
1246 2 1. jj_2_25 : negated conditional → NO_COVERAGE
2. jj_2_25 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_25();
1247
		} catch (LookaheadSuccess ls) {
1248 1 1. jj_2_25 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1249
		} finally {
1250 3 1. jj_2_25 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_25 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_25 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(24, xla);
1251
		}
1252
	}
1253
1254
	private boolean jj_2_26(int xla) {
1255
		jj_la = xla;
1256
		jj_lastpos = jj_scanpos = token;
1257
		try {
1258 2 1. jj_2_26 : negated conditional → NO_COVERAGE
2. jj_2_26 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_26();
1259
		} catch (LookaheadSuccess ls) {
1260 1 1. jj_2_26 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1261
		} finally {
1262 3 1. jj_2_26 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_26 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_26 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(25, xla);
1263
		}
1264
	}
1265
1266
	private boolean jj_2_27(int xla) {
1267
		jj_la = xla;
1268
		jj_lastpos = jj_scanpos = token;
1269
		try {
1270 2 1. jj_2_27 : negated conditional → NO_COVERAGE
2. jj_2_27 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_27();
1271
		} catch (LookaheadSuccess ls) {
1272 1 1. jj_2_27 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1273
		} finally {
1274 3 1. jj_2_27 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_27 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_27 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(26, xla);
1275
		}
1276
	}
1277
1278
	private boolean jj_2_28(int xla) {
1279
		jj_la = xla;
1280
		jj_lastpos = jj_scanpos = token;
1281
		try {
1282 2 1. jj_2_28 : negated conditional → NO_COVERAGE
2. jj_2_28 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_28();
1283
		} catch (LookaheadSuccess ls) {
1284 1 1. jj_2_28 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1285
		} finally {
1286 3 1. jj_2_28 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_28 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_28 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(27, xla);
1287
		}
1288
	}
1289
1290
	private boolean jj_2_29(int xla) {
1291
		jj_la = xla;
1292
		jj_lastpos = jj_scanpos = token;
1293
		try {
1294 2 1. jj_2_29 : negated conditional → NO_COVERAGE
2. jj_2_29 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_29();
1295
		} catch (LookaheadSuccess ls) {
1296 1 1. jj_2_29 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1297
		} finally {
1298 3 1. jj_2_29 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_29 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_29 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(28, xla);
1299
		}
1300
	}
1301
1302
	private boolean jj_2_30(int xla) {
1303
		jj_la = xla;
1304
		jj_lastpos = jj_scanpos = token;
1305
		try {
1306 2 1. jj_2_30 : negated conditional → NO_COVERAGE
2. jj_2_30 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_30();
1307
		} catch (LookaheadSuccess ls) {
1308 1 1. jj_2_30 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1309
		} finally {
1310 3 1. jj_2_30 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_30 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_30 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(29, xla);
1311
		}
1312
	}
1313
1314
	private boolean jj_2_31(int xla) {
1315
		jj_la = xla;
1316
		jj_lastpos = jj_scanpos = token;
1317
		try {
1318 2 1. jj_2_31 : negated conditional → NO_COVERAGE
2. jj_2_31 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_31();
1319
		} catch (LookaheadSuccess ls) {
1320 1 1. jj_2_31 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1321
		} finally {
1322 3 1. jj_2_31 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_31 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_31 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(30, xla);
1323
		}
1324
	}
1325
1326
	private boolean jj_2_32(int xla) {
1327
		jj_la = xla;
1328
		jj_lastpos = jj_scanpos = token;
1329
		try {
1330 2 1. jj_2_32 : negated conditional → NO_COVERAGE
2. jj_2_32 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_32();
1331
		} catch (LookaheadSuccess ls) {
1332 1 1. jj_2_32 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1333
		} finally {
1334 3 1. jj_2_32 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_32 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_32 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(31, xla);
1335
		}
1336
	}
1337
1338
	private boolean jj_2_33(int xla) {
1339
		jj_la = xla;
1340
		jj_lastpos = jj_scanpos = token;
1341
		try {
1342 2 1. jj_2_33 : negated conditional → NO_COVERAGE
2. jj_2_33 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_33();
1343
		} catch (LookaheadSuccess ls) {
1344 1 1. jj_2_33 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1345
		} finally {
1346 3 1. jj_2_33 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_33 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_33 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(32, xla);
1347
		}
1348
	}
1349
1350
	private boolean jj_2_34(int xla) {
1351
		jj_la = xla;
1352
		jj_lastpos = jj_scanpos = token;
1353
		try {
1354 2 1. jj_2_34 : negated conditional → NO_COVERAGE
2. jj_2_34 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_34();
1355
		} catch (LookaheadSuccess ls) {
1356 1 1. jj_2_34 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1357
		} finally {
1358 3 1. jj_2_34 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_34 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_34 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(33, xla);
1359
		}
1360
	}
1361
1362
	private boolean jj_2_35(int xla) {
1363
		jj_la = xla;
1364
		jj_lastpos = jj_scanpos = token;
1365
		try {
1366 2 1. jj_2_35 : negated conditional → NO_COVERAGE
2. jj_2_35 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_35();
1367
		} catch (LookaheadSuccess ls) {
1368 1 1. jj_2_35 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1369
		} finally {
1370 3 1. jj_2_35 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_35 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_35 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(34, xla);
1371
		}
1372
	}
1373
1374
	private boolean jj_2_36(int xla) {
1375
		jj_la = xla;
1376
		jj_lastpos = jj_scanpos = token;
1377
		try {
1378 2 1. jj_2_36 : negated conditional → NO_COVERAGE
2. jj_2_36 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_36();
1379
		} catch (LookaheadSuccess ls) {
1380 1 1. jj_2_36 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1381
		} finally {
1382 3 1. jj_2_36 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_36 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_36 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(35, xla);
1383
		}
1384
	}
1385
1386
	private boolean jj_2_37(int xla) {
1387
		jj_la = xla;
1388
		jj_lastpos = jj_scanpos = token;
1389
		try {
1390 2 1. jj_2_37 : negated conditional → NO_COVERAGE
2. jj_2_37 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_37();
1391
		} catch (LookaheadSuccess ls) {
1392 1 1. jj_2_37 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1393
		} finally {
1394 3 1. jj_2_37 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_37 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_37 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(36, xla);
1395
		}
1396
	}
1397
1398
	private boolean jj_2_38(int xla) {
1399
		jj_la = xla;
1400
		jj_lastpos = jj_scanpos = token;
1401
		try {
1402 2 1. jj_2_38 : negated conditional → NO_COVERAGE
2. jj_2_38 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_38();
1403
		} catch (LookaheadSuccess ls) {
1404 1 1. jj_2_38 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1405
		} finally {
1406 3 1. jj_2_38 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_38 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_38 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(37, xla);
1407
		}
1408
	}
1409
1410
	private boolean jj_2_39(int xla) {
1411
		jj_la = xla;
1412
		jj_lastpos = jj_scanpos = token;
1413
		try {
1414 2 1. jj_2_39 : negated conditional → NO_COVERAGE
2. jj_2_39 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_39();
1415
		} catch (LookaheadSuccess ls) {
1416 1 1. jj_2_39 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1417
		} finally {
1418 3 1. jj_2_39 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_39 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_39 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(38, xla);
1419
		}
1420
	}
1421
1422
	private boolean jj_2_40(int xla) {
1423
		jj_la = xla;
1424
		jj_lastpos = jj_scanpos = token;
1425
		try {
1426 2 1. jj_2_40 : negated conditional → NO_COVERAGE
2. jj_2_40 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_40();
1427
		} catch (LookaheadSuccess ls) {
1428 1 1. jj_2_40 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1429
		} finally {
1430 3 1. jj_2_40 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_40 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_40 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(39, xla);
1431
		}
1432
	}
1433
1434
	private boolean jj_2_41(int xla) {
1435
		jj_la = xla;
1436
		jj_lastpos = jj_scanpos = token;
1437
		try {
1438 2 1. jj_2_41 : negated conditional → NO_COVERAGE
2. jj_2_41 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_41();
1439
		} catch (LookaheadSuccess ls) {
1440 1 1. jj_2_41 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1441
		} finally {
1442 3 1. jj_2_41 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_41 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_41 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(40, xla);
1443
		}
1444
	}
1445
1446
	private boolean jj_2_42(int xla) {
1447
		jj_la = xla;
1448
		jj_lastpos = jj_scanpos = token;
1449
		try {
1450 2 1. jj_2_42 : negated conditional → NO_COVERAGE
2. jj_2_42 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_42();
1451
		} catch (LookaheadSuccess ls) {
1452 1 1. jj_2_42 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1453
		} finally {
1454 3 1. jj_2_42 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_42 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_42 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(41, xla);
1455
		}
1456
	}
1457
1458
	private boolean jj_2_43(int xla) {
1459
		jj_la = xla;
1460
		jj_lastpos = jj_scanpos = token;
1461
		try {
1462 2 1. jj_2_43 : negated conditional → NO_COVERAGE
2. jj_2_43 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_43();
1463
		} catch (LookaheadSuccess ls) {
1464 1 1. jj_2_43 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1465
		} finally {
1466 3 1. jj_2_43 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_43 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_43 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(42, xla);
1467
		}
1468
	}
1469
1470
	private boolean jj_2_44(int xla) {
1471
		jj_la = xla;
1472
		jj_lastpos = jj_scanpos = token;
1473
		try {
1474 2 1. jj_2_44 : negated conditional → NO_COVERAGE
2. jj_2_44 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_44();
1475
		} catch (LookaheadSuccess ls) {
1476 1 1. jj_2_44 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1477
		} finally {
1478 3 1. jj_2_44 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_44 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_44 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(43, xla);
1479
		}
1480
	}
1481
1482
	private boolean jj_2_45(int xla) {
1483
		jj_la = xla;
1484
		jj_lastpos = jj_scanpos = token;
1485
		try {
1486 2 1. jj_2_45 : negated conditional → NO_COVERAGE
2. jj_2_45 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_45();
1487
		} catch (LookaheadSuccess ls) {
1488 1 1. jj_2_45 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1489
		} finally {
1490 3 1. jj_2_45 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_45 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_45 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(44, xla);
1491
		}
1492
	}
1493
1494
	private boolean jj_2_46(int xla) {
1495
		jj_la = xla;
1496
		jj_lastpos = jj_scanpos = token;
1497
		try {
1498 2 1. jj_2_46 : negated conditional → NO_COVERAGE
2. jj_2_46 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_46();
1499
		} catch (LookaheadSuccess ls) {
1500 1 1. jj_2_46 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1501
		} finally {
1502 3 1. jj_2_46 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_46 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_46 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(45, xla);
1503
		}
1504
	}
1505
1506
	private boolean jj_2_47(int xla) {
1507
		jj_la = xla;
1508
		jj_lastpos = jj_scanpos = token;
1509
		try {
1510 2 1. jj_2_47 : negated conditional → NO_COVERAGE
2. jj_2_47 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_47();
1511
		} catch (LookaheadSuccess ls) {
1512 1 1. jj_2_47 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1513
		} finally {
1514 3 1. jj_2_47 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_47 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_47 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(46, xla);
1515
		}
1516
	}
1517
1518
	private boolean jj_2_48(int xla) {
1519
		jj_la = xla;
1520
		jj_lastpos = jj_scanpos = token;
1521
		try {
1522 2 1. jj_2_48 : negated conditional → NO_COVERAGE
2. jj_2_48 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_48();
1523
		} catch (LookaheadSuccess ls) {
1524 1 1. jj_2_48 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1525
		} finally {
1526 3 1. jj_2_48 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_48 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_48 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(47, xla);
1527
		}
1528
	}
1529
1530
	private boolean jj_2_49(int xla) {
1531
		jj_la = xla;
1532
		jj_lastpos = jj_scanpos = token;
1533
		try {
1534 2 1. jj_2_49 : negated conditional → NO_COVERAGE
2. jj_2_49 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_49();
1535
		} catch (LookaheadSuccess ls) {
1536 1 1. jj_2_49 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1537
		} finally {
1538 3 1. jj_2_49 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_49 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_49 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(48, xla);
1539
		}
1540
	}
1541
1542
	private boolean jj_2_50(int xla) {
1543
		jj_la = xla;
1544
		jj_lastpos = jj_scanpos = token;
1545
		try {
1546 2 1. jj_2_50 : negated conditional → NO_COVERAGE
2. jj_2_50 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_50();
1547
		} catch (LookaheadSuccess ls) {
1548 1 1. jj_2_50 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1549
		} finally {
1550 3 1. jj_2_50 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_50 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_50 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(49, xla);
1551
		}
1552
	}
1553
1554
	private boolean jj_2_51(int xla) {
1555
		jj_la = xla;
1556
		jj_lastpos = jj_scanpos = token;
1557
		try {
1558 2 1. jj_2_51 : negated conditional → NO_COVERAGE
2. jj_2_51 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_51();
1559
		} catch (LookaheadSuccess ls) {
1560 1 1. jj_2_51 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1561
		} finally {
1562 3 1. jj_2_51 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_51 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_51 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(50, xla);
1563
		}
1564
	}
1565
1566
	private boolean jj_2_52(int xla) {
1567
		jj_la = xla;
1568
		jj_lastpos = jj_scanpos = token;
1569
		try {
1570 2 1. jj_2_52 : negated conditional → NO_COVERAGE
2. jj_2_52 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_52();
1571
		} catch (LookaheadSuccess ls) {
1572 1 1. jj_2_52 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1573
		} finally {
1574 3 1. jj_2_52 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_52 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_52 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(51, xla);
1575
		}
1576
	}
1577
1578
	private boolean jj_2_53(int xla) {
1579
		jj_la = xla;
1580
		jj_lastpos = jj_scanpos = token;
1581
		try {
1582 2 1. jj_2_53 : negated conditional → NO_COVERAGE
2. jj_2_53 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_53();
1583
		} catch (LookaheadSuccess ls) {
1584 1 1. jj_2_53 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1585
		} finally {
1586 3 1. jj_2_53 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_53 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_53 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(52, xla);
1587
		}
1588
	}
1589
1590
	private boolean jj_2_54(int xla) {
1591
		jj_la = xla;
1592
		jj_lastpos = jj_scanpos = token;
1593
		try {
1594 2 1. jj_2_54 : negated conditional → NO_COVERAGE
2. jj_2_54 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_54();
1595
		} catch (LookaheadSuccess ls) {
1596 1 1. jj_2_54 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1597
		} finally {
1598 3 1. jj_2_54 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_54 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_54 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(53, xla);
1599
		}
1600
	}
1601
1602
	private boolean jj_2_55(int xla) {
1603
		jj_la = xla;
1604
		jj_lastpos = jj_scanpos = token;
1605
		try {
1606 2 1. jj_2_55 : negated conditional → NO_COVERAGE
2. jj_2_55 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_55();
1607
		} catch (LookaheadSuccess ls) {
1608 1 1. jj_2_55 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1609
		} finally {
1610 3 1. jj_2_55 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_55 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_55 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(54, xla);
1611
		}
1612
	}
1613
1614
	private boolean jj_2_56(int xla) {
1615
		jj_la = xla;
1616
		jj_lastpos = jj_scanpos = token;
1617
		try {
1618 2 1. jj_2_56 : negated conditional → NO_COVERAGE
2. jj_2_56 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_56();
1619
		} catch (LookaheadSuccess ls) {
1620 1 1. jj_2_56 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1621
		} finally {
1622 3 1. jj_2_56 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_56 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_56 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(55, xla);
1623
		}
1624
	}
1625
1626
	private boolean jj_2_57(int xla) {
1627
		jj_la = xla;
1628
		jj_lastpos = jj_scanpos = token;
1629
		try {
1630 2 1. jj_2_57 : negated conditional → NO_COVERAGE
2. jj_2_57 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_57();
1631
		} catch (LookaheadSuccess ls) {
1632 1 1. jj_2_57 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1633
		} finally {
1634 3 1. jj_2_57 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_57 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_57 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(56, xla);
1635
		}
1636
	}
1637
1638
	private boolean jj_2_58(int xla) {
1639
		jj_la = xla;
1640
		jj_lastpos = jj_scanpos = token;
1641
		try {
1642 2 1. jj_2_58 : negated conditional → NO_COVERAGE
2. jj_2_58 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_58();
1643
		} catch (LookaheadSuccess ls) {
1644 1 1. jj_2_58 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1645
		} finally {
1646 3 1. jj_2_58 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_58 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_58 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(57, xla);
1647
		}
1648
	}
1649
1650
	private boolean jj_2_59(int xla) {
1651
		jj_la = xla;
1652
		jj_lastpos = jj_scanpos = token;
1653
		try {
1654 2 1. jj_2_59 : negated conditional → NO_COVERAGE
2. jj_2_59 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_59();
1655
		} catch (LookaheadSuccess ls) {
1656 1 1. jj_2_59 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1657
		} finally {
1658 3 1. jj_2_59 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_59 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_59 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(58, xla);
1659
		}
1660
	}
1661
1662
	private boolean jj_2_60(int xla) {
1663
		jj_la = xla;
1664
		jj_lastpos = jj_scanpos = token;
1665
		try {
1666 2 1. jj_2_60 : negated conditional → NO_COVERAGE
2. jj_2_60 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_60();
1667
		} catch (LookaheadSuccess ls) {
1668 1 1. jj_2_60 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1669
		} finally {
1670 3 1. jj_2_60 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_60 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_60 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(59, xla);
1671
		}
1672
	}
1673
1674
	private boolean jj_2_61(int xla) {
1675
		jj_la = xla;
1676
		jj_lastpos = jj_scanpos = token;
1677
		try {
1678 2 1. jj_2_61 : negated conditional → NO_COVERAGE
2. jj_2_61 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_61();
1679
		} catch (LookaheadSuccess ls) {
1680 1 1. jj_2_61 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1681
		} finally {
1682 3 1. jj_2_61 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_61 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_61 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(60, xla);
1683
		}
1684
	}
1685
1686
	private boolean jj_2_62(int xla) {
1687
		jj_la = xla;
1688
		jj_lastpos = jj_scanpos = token;
1689
		try {
1690 2 1. jj_2_62 : negated conditional → NO_COVERAGE
2. jj_2_62 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_62();
1691
		} catch (LookaheadSuccess ls) {
1692 1 1. jj_2_62 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1693
		} finally {
1694 3 1. jj_2_62 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_62 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_62 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(61, xla);
1695
		}
1696
	}
1697
1698
	private boolean jj_2_63(int xla) {
1699
		jj_la = xla;
1700
		jj_lastpos = jj_scanpos = token;
1701
		try {
1702 2 1. jj_2_63 : negated conditional → NO_COVERAGE
2. jj_2_63 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_63();
1703
		} catch (LookaheadSuccess ls) {
1704 1 1. jj_2_63 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1705
		} finally {
1706 3 1. jj_2_63 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_63 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_63 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(62, xla);
1707
		}
1708
	}
1709
1710
	private boolean jj_2_64(int xla) {
1711
		jj_la = xla;
1712
		jj_lastpos = jj_scanpos = token;
1713
		try {
1714 2 1. jj_2_64 : negated conditional → NO_COVERAGE
2. jj_2_64 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_64();
1715
		} catch (LookaheadSuccess ls) {
1716 1 1. jj_2_64 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1717
		} finally {
1718 3 1. jj_2_64 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_64 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_64 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(63, xla);
1719
		}
1720
	}
1721
1722
	private boolean jj_2_65(int xla) {
1723
		jj_la = xla;
1724
		jj_lastpos = jj_scanpos = token;
1725
		try {
1726 2 1. jj_2_65 : negated conditional → NO_COVERAGE
2. jj_2_65 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_65();
1727
		} catch (LookaheadSuccess ls) {
1728 1 1. jj_2_65 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1729
		} finally {
1730 3 1. jj_2_65 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_65 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_65 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(64, xla);
1731
		}
1732
	}
1733
1734
	private boolean jj_2_66(int xla) {
1735
		jj_la = xla;
1736
		jj_lastpos = jj_scanpos = token;
1737
		try {
1738 2 1. jj_2_66 : negated conditional → NO_COVERAGE
2. jj_2_66 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_66();
1739
		} catch (LookaheadSuccess ls) {
1740 1 1. jj_2_66 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1741
		} finally {
1742 3 1. jj_2_66 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_66 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_66 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(65, xla);
1743
		}
1744
	}
1745
1746
	private boolean jj_2_67(int xla) {
1747
		jj_la = xla;
1748
		jj_lastpos = jj_scanpos = token;
1749
		try {
1750 2 1. jj_2_67 : negated conditional → NO_COVERAGE
2. jj_2_67 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_67();
1751
		} catch (LookaheadSuccess ls) {
1752 1 1. jj_2_67 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1753
		} finally {
1754 3 1. jj_2_67 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_67 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_67 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(66, xla);
1755
		}
1756
	}
1757
1758
	private boolean jj_2_68(int xla) {
1759
		jj_la = xla;
1760
		jj_lastpos = jj_scanpos = token;
1761
		try {
1762 2 1. jj_2_68 : negated conditional → NO_COVERAGE
2. jj_2_68 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_68();
1763
		} catch (LookaheadSuccess ls) {
1764 1 1. jj_2_68 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1765
		} finally {
1766 3 1. jj_2_68 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_68 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_68 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(67, xla);
1767
		}
1768
	}
1769
1770
	private boolean jj_2_69(int xla) {
1771
		jj_la = xla;
1772
		jj_lastpos = jj_scanpos = token;
1773
		try {
1774 2 1. jj_2_69 : negated conditional → NO_COVERAGE
2. jj_2_69 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_69();
1775
		} catch (LookaheadSuccess ls) {
1776 1 1. jj_2_69 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1777
		} finally {
1778 3 1. jj_2_69 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_69 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_69 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(68, xla);
1779
		}
1780
	}
1781
1782
	private boolean jj_2_70(int xla) {
1783
		jj_la = xla;
1784
		jj_lastpos = jj_scanpos = token;
1785
		try {
1786 2 1. jj_2_70 : negated conditional → NO_COVERAGE
2. jj_2_70 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_70();
1787
		} catch (LookaheadSuccess ls) {
1788 1 1. jj_2_70 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1789
		} finally {
1790 3 1. jj_2_70 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_70 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_70 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(69, xla);
1791
		}
1792
	}
1793
1794
	private boolean jj_2_71(int xla) {
1795
		jj_la = xla;
1796
		jj_lastpos = jj_scanpos = token;
1797
		try {
1798 2 1. jj_2_71 : negated conditional → NO_COVERAGE
2. jj_2_71 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_71();
1799
		} catch (LookaheadSuccess ls) {
1800 1 1. jj_2_71 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1801
		} finally {
1802 3 1. jj_2_71 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_71 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_71 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(70, xla);
1803
		}
1804
	}
1805
1806
	private boolean jj_2_72(int xla) {
1807
		jj_la = xla;
1808
		jj_lastpos = jj_scanpos = token;
1809
		try {
1810 2 1. jj_2_72 : negated conditional → NO_COVERAGE
2. jj_2_72 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_72();
1811
		} catch (LookaheadSuccess ls) {
1812 1 1. jj_2_72 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1813
		} finally {
1814 3 1. jj_2_72 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_72 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_72 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(71, xla);
1815
		}
1816
	}
1817
1818
	private boolean jj_2_73(int xla) {
1819
		jj_la = xla;
1820
		jj_lastpos = jj_scanpos = token;
1821
		try {
1822 2 1. jj_2_73 : negated conditional → NO_COVERAGE
2. jj_2_73 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_73();
1823
		} catch (LookaheadSuccess ls) {
1824 1 1. jj_2_73 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1825
		} finally {
1826 3 1. jj_2_73 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_73 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_73 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(72, xla);
1827
		}
1828
	}
1829
1830
	private boolean jj_2_74(int xla) {
1831
		jj_la = xla;
1832
		jj_lastpos = jj_scanpos = token;
1833
		try {
1834 2 1. jj_2_74 : negated conditional → NO_COVERAGE
2. jj_2_74 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_74();
1835
		} catch (LookaheadSuccess ls) {
1836 1 1. jj_2_74 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1837
		} finally {
1838 3 1. jj_2_74 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_74 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_74 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(73, xla);
1839
		}
1840
	}
1841
1842
	private boolean jj_2_75(int xla) {
1843
		jj_la = xla;
1844
		jj_lastpos = jj_scanpos = token;
1845
		try {
1846 2 1. jj_2_75 : negated conditional → NO_COVERAGE
2. jj_2_75 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_75();
1847
		} catch (LookaheadSuccess ls) {
1848 1 1. jj_2_75 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1849
		} finally {
1850 3 1. jj_2_75 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_75 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_75 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(74, xla);
1851
		}
1852
	}
1853
1854
	private boolean jj_2_76(int xla) {
1855
		jj_la = xla;
1856
		jj_lastpos = jj_scanpos = token;
1857
		try {
1858 2 1. jj_2_76 : negated conditional → NO_COVERAGE
2. jj_2_76 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_76();
1859
		} catch (LookaheadSuccess ls) {
1860 1 1. jj_2_76 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1861
		} finally {
1862 3 1. jj_2_76 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_76 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_76 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(75, xla);
1863
		}
1864
	}
1865
1866
	private boolean jj_2_77(int xla) {
1867
		jj_la = xla;
1868
		jj_lastpos = jj_scanpos = token;
1869
		try {
1870 2 1. jj_2_77 : negated conditional → NO_COVERAGE
2. jj_2_77 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_77();
1871
		} catch (LookaheadSuccess ls) {
1872 1 1. jj_2_77 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1873
		} finally {
1874 3 1. jj_2_77 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_77 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_77 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(76, xla);
1875
		}
1876
	}
1877
1878
	private boolean jj_2_78(int xla) {
1879
		jj_la = xla;
1880
		jj_lastpos = jj_scanpos = token;
1881
		try {
1882 2 1. jj_2_78 : negated conditional → NO_COVERAGE
2. jj_2_78 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_78();
1883
		} catch (LookaheadSuccess ls) {
1884 1 1. jj_2_78 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1885
		} finally {
1886 3 1. jj_2_78 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_78 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_78 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(77, xla);
1887
		}
1888
	}
1889
1890
	private boolean jj_2_79(int xla) {
1891
		jj_la = xla;
1892
		jj_lastpos = jj_scanpos = token;
1893
		try {
1894 2 1. jj_2_79 : negated conditional → NO_COVERAGE
2. jj_2_79 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_79();
1895
		} catch (LookaheadSuccess ls) {
1896 1 1. jj_2_79 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1897
		} finally {
1898 3 1. jj_2_79 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_79 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_79 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(78, xla);
1899
		}
1900
	}
1901
1902
	private boolean jj_2_80(int xla) {
1903
		jj_la = xla;
1904
		jj_lastpos = jj_scanpos = token;
1905
		try {
1906 2 1. jj_2_80 : negated conditional → NO_COVERAGE
2. jj_2_80 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_80();
1907
		} catch (LookaheadSuccess ls) {
1908 1 1. jj_2_80 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1909
		} finally {
1910 3 1. jj_2_80 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_80 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_80 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(79, xla);
1911
		}
1912
	}
1913
1914
	private boolean jj_2_81(int xla) {
1915
		jj_la = xla;
1916
		jj_lastpos = jj_scanpos = token;
1917
		try {
1918 2 1. jj_2_81 : negated conditional → NO_COVERAGE
2. jj_2_81 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_81();
1919
		} catch (LookaheadSuccess ls) {
1920 1 1. jj_2_81 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1921
		} finally {
1922 3 1. jj_2_81 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_81 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_81 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(80, xla);
1923
		}
1924
	}
1925
1926
	private boolean jj_2_82(int xla) {
1927
		jj_la = xla;
1928
		jj_lastpos = jj_scanpos = token;
1929
		try {
1930 2 1. jj_2_82 : negated conditional → NO_COVERAGE
2. jj_2_82 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_82();
1931
		} catch (LookaheadSuccess ls) {
1932 1 1. jj_2_82 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1933
		} finally {
1934 3 1. jj_2_82 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_82 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_82 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(81, xla);
1935
		}
1936
	}
1937
1938
	private boolean jj_2_83(int xla) {
1939
		jj_la = xla;
1940
		jj_lastpos = jj_scanpos = token;
1941
		try {
1942 2 1. jj_2_83 : negated conditional → NO_COVERAGE
2. jj_2_83 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_83();
1943
		} catch (LookaheadSuccess ls) {
1944 1 1. jj_2_83 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1945
		} finally {
1946 3 1. jj_2_83 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_83 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_83 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(82, xla);
1947
		}
1948
	}
1949
1950
	private boolean jj_2_84(int xla) {
1951
		jj_la = xla;
1952
		jj_lastpos = jj_scanpos = token;
1953
		try {
1954 2 1. jj_2_84 : negated conditional → NO_COVERAGE
2. jj_2_84 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_84();
1955
		} catch (LookaheadSuccess ls) {
1956 1 1. jj_2_84 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1957
		} finally {
1958 3 1. jj_2_84 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_84 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_84 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(83, xla);
1959
		}
1960
	}
1961
1962
	private boolean jj_2_85(int xla) {
1963
		jj_la = xla;
1964
		jj_lastpos = jj_scanpos = token;
1965
		try {
1966 2 1. jj_2_85 : negated conditional → NO_COVERAGE
2. jj_2_85 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_85();
1967
		} catch (LookaheadSuccess ls) {
1968 1 1. jj_2_85 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1969
		} finally {
1970 3 1. jj_2_85 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_85 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_85 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(84, xla);
1971
		}
1972
	}
1973
1974
	private boolean jj_2_86(int xla) {
1975
		jj_la = xla;
1976
		jj_lastpos = jj_scanpos = token;
1977
		try {
1978 2 1. jj_2_86 : negated conditional → NO_COVERAGE
2. jj_2_86 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_86();
1979
		} catch (LookaheadSuccess ls) {
1980 1 1. jj_2_86 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1981
		} finally {
1982 3 1. jj_2_86 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_86 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_86 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(85, xla);
1983
		}
1984
	}
1985
1986
	private boolean jj_2_87(int xla) {
1987
		jj_la = xla;
1988
		jj_lastpos = jj_scanpos = token;
1989
		try {
1990 2 1. jj_2_87 : negated conditional → NO_COVERAGE
2. jj_2_87 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_87();
1991
		} catch (LookaheadSuccess ls) {
1992 1 1. jj_2_87 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
1993
		} finally {
1994 3 1. jj_2_87 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_87 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_87 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(86, xla);
1995
		}
1996
	}
1997
1998
	private boolean jj_2_88(int xla) {
1999
		jj_la = xla;
2000
		jj_lastpos = jj_scanpos = token;
2001
		try {
2002 2 1. jj_2_88 : negated conditional → NO_COVERAGE
2. jj_2_88 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_88();
2003
		} catch (LookaheadSuccess ls) {
2004 1 1. jj_2_88 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2005
		} finally {
2006 3 1. jj_2_88 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_88 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_88 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(87, xla);
2007
		}
2008
	}
2009
2010
	private boolean jj_2_89(int xla) {
2011
		jj_la = xla;
2012
		jj_lastpos = jj_scanpos = token;
2013
		try {
2014 2 1. jj_2_89 : negated conditional → NO_COVERAGE
2. jj_2_89 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_89();
2015
		} catch (LookaheadSuccess ls) {
2016 1 1. jj_2_89 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2017
		} finally {
2018 3 1. jj_2_89 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_89 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_89 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(88, xla);
2019
		}
2020
	}
2021
2022
	private boolean jj_2_90(int xla) {
2023
		jj_la = xla;
2024
		jj_lastpos = jj_scanpos = token;
2025
		try {
2026 2 1. jj_2_90 : negated conditional → NO_COVERAGE
2. jj_2_90 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_90();
2027
		} catch (LookaheadSuccess ls) {
2028 1 1. jj_2_90 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2029
		} finally {
2030 3 1. jj_2_90 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_90 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_90 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(89, xla);
2031
		}
2032
	}
2033
2034
	private boolean jj_2_91(int xla) {
2035
		jj_la = xla;
2036
		jj_lastpos = jj_scanpos = token;
2037
		try {
2038 2 1. jj_2_91 : negated conditional → NO_COVERAGE
2. jj_2_91 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_91();
2039
		} catch (LookaheadSuccess ls) {
2040 1 1. jj_2_91 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2041
		} finally {
2042 3 1. jj_2_91 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_91 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_91 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(90, xla);
2043
		}
2044
	}
2045
2046
	private boolean jj_2_92(int xla) {
2047
		jj_la = xla;
2048
		jj_lastpos = jj_scanpos = token;
2049
		try {
2050 2 1. jj_2_92 : negated conditional → NO_COVERAGE
2. jj_2_92 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_92();
2051
		} catch (LookaheadSuccess ls) {
2052 1 1. jj_2_92 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2053
		} finally {
2054 3 1. jj_2_92 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_92 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_92 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(91, xla);
2055
		}
2056
	}
2057
2058
	private boolean jj_2_93(int xla) {
2059
		jj_la = xla;
2060
		jj_lastpos = jj_scanpos = token;
2061
		try {
2062 2 1. jj_2_93 : negated conditional → NO_COVERAGE
2. jj_2_93 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_93();
2063
		} catch (LookaheadSuccess ls) {
2064 1 1. jj_2_93 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2065
		} finally {
2066 3 1. jj_2_93 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_93 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_93 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(92, xla);
2067
		}
2068
	}
2069
2070
	private boolean jj_2_94(int xla) {
2071
		jj_la = xla;
2072
		jj_lastpos = jj_scanpos = token;
2073
		try {
2074 2 1. jj_2_94 : negated conditional → NO_COVERAGE
2. jj_2_94 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_94();
2075
		} catch (LookaheadSuccess ls) {
2076 1 1. jj_2_94 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2077
		} finally {
2078 3 1. jj_2_94 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_94 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_94 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(93, xla);
2079
		}
2080
	}
2081
2082
	private boolean jj_2_95(int xla) {
2083
		jj_la = xla;
2084
		jj_lastpos = jj_scanpos = token;
2085
		try {
2086 2 1. jj_2_95 : negated conditional → NO_COVERAGE
2. jj_2_95 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_95();
2087
		} catch (LookaheadSuccess ls) {
2088 1 1. jj_2_95 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2089
		} finally {
2090 3 1. jj_2_95 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_95 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_95 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(94, xla);
2091
		}
2092
	}
2093
2094
	private boolean jj_2_96(int xla) {
2095
		jj_la = xla;
2096
		jj_lastpos = jj_scanpos = token;
2097
		try {
2098 2 1. jj_2_96 : negated conditional → NO_COVERAGE
2. jj_2_96 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_96();
2099
		} catch (LookaheadSuccess ls) {
2100 1 1. jj_2_96 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2101
		} finally {
2102 3 1. jj_2_96 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_96 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_96 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(95, xla);
2103
		}
2104
	}
2105
2106
	private boolean jj_2_97(int xla) {
2107
		jj_la = xla;
2108
		jj_lastpos = jj_scanpos = token;
2109
		try {
2110 2 1. jj_2_97 : negated conditional → NO_COVERAGE
2. jj_2_97 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_97();
2111
		} catch (LookaheadSuccess ls) {
2112 1 1. jj_2_97 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2113
		} finally {
2114 3 1. jj_2_97 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_97 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_97 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(96, xla);
2115
		}
2116
	}
2117
2118
	private boolean jj_2_98(int xla) {
2119
		jj_la = xla;
2120
		jj_lastpos = jj_scanpos = token;
2121
		try {
2122 2 1. jj_2_98 : negated conditional → NO_COVERAGE
2. jj_2_98 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_98();
2123
		} catch (LookaheadSuccess ls) {
2124 1 1. jj_2_98 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2125
		} finally {
2126 3 1. jj_2_98 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_98 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_98 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(97, xla);
2127
		}
2128
	}
2129
2130
	private boolean jj_2_99(int xla) {
2131
		jj_la = xla;
2132
		jj_lastpos = jj_scanpos = token;
2133
		try {
2134 2 1. jj_2_99 : negated conditional → NO_COVERAGE
2. jj_2_99 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_99();
2135
		} catch (LookaheadSuccess ls) {
2136 1 1. jj_2_99 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2137
		} finally {
2138 3 1. jj_2_99 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_99 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_99 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(98, xla);
2139
		}
2140
	}
2141
2142
	private boolean jj_2_100(int xla) {
2143
		jj_la = xla;
2144
		jj_lastpos = jj_scanpos = token;
2145
		try {
2146 2 1. jj_2_100 : negated conditional → NO_COVERAGE
2. jj_2_100 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_100();
2147
		} catch (LookaheadSuccess ls) {
2148 1 1. jj_2_100 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2149
		} finally {
2150 3 1. jj_2_100 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_100 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_100 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(99, xla);
2151
		}
2152
	}
2153
2154
	private boolean jj_2_101(int xla) {
2155
		jj_la = xla;
2156
		jj_lastpos = jj_scanpos = token;
2157
		try {
2158 2 1. jj_2_101 : negated conditional → NO_COVERAGE
2. jj_2_101 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_101();
2159
		} catch (LookaheadSuccess ls) {
2160 1 1. jj_2_101 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2161
		} finally {
2162 3 1. jj_2_101 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_101 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_101 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(100, xla);
2163
		}
2164
	}
2165
2166
	private boolean jj_2_102(int xla) {
2167
		jj_la = xla;
2168
		jj_lastpos = jj_scanpos = token;
2169
		try {
2170 2 1. jj_2_102 : negated conditional → NO_COVERAGE
2. jj_2_102 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_102();
2171
		} catch (LookaheadSuccess ls) {
2172 1 1. jj_2_102 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2173
		} finally {
2174 3 1. jj_2_102 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_102 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_102 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(101, xla);
2175
		}
2176
	}
2177
2178
	private boolean jj_2_103(int xla) {
2179
		jj_la = xla;
2180
		jj_lastpos = jj_scanpos = token;
2181
		try {
2182 2 1. jj_2_103 : negated conditional → NO_COVERAGE
2. jj_2_103 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_103();
2183
		} catch (LookaheadSuccess ls) {
2184 1 1. jj_2_103 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2185
		} finally {
2186 3 1. jj_2_103 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_103 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_103 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(102, xla);
2187
		}
2188
	}
2189
2190
	private boolean jj_2_104(int xla) {
2191
		jj_la = xla;
2192
		jj_lastpos = jj_scanpos = token;
2193
		try {
2194 2 1. jj_2_104 : negated conditional → NO_COVERAGE
2. jj_2_104 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_104();
2195
		} catch (LookaheadSuccess ls) {
2196 1 1. jj_2_104 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2197
		} finally {
2198 3 1. jj_2_104 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_104 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_104 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(103, xla);
2199
		}
2200
	}
2201
2202
	private boolean jj_2_105(int xla) {
2203
		jj_la = xla;
2204
		jj_lastpos = jj_scanpos = token;
2205
		try {
2206 2 1. jj_2_105 : negated conditional → NO_COVERAGE
2. jj_2_105 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_105();
2207
		} catch (LookaheadSuccess ls) {
2208 1 1. jj_2_105 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2209
		} finally {
2210 3 1. jj_2_105 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_105 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_105 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(104, xla);
2211
		}
2212
	}
2213
2214
	private boolean jj_2_106(int xla) {
2215
		jj_la = xla;
2216
		jj_lastpos = jj_scanpos = token;
2217
		try {
2218 2 1. jj_2_106 : negated conditional → NO_COVERAGE
2. jj_2_106 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_106();
2219
		} catch (LookaheadSuccess ls) {
2220 1 1. jj_2_106 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2221
		} finally {
2222 3 1. jj_2_106 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_106 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_106 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(105, xla);
2223
		}
2224
	}
2225
2226
	private boolean jj_2_107(int xla) {
2227
		jj_la = xla;
2228
		jj_lastpos = jj_scanpos = token;
2229
		try {
2230 2 1. jj_2_107 : negated conditional → NO_COVERAGE
2. jj_2_107 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_107();
2231
		} catch (LookaheadSuccess ls) {
2232 1 1. jj_2_107 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2233
		} finally {
2234 3 1. jj_2_107 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_107 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_107 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(106, xla);
2235
		}
2236
	}
2237
2238
	private boolean jj_2_108(int xla) {
2239
		jj_la = xla;
2240
		jj_lastpos = jj_scanpos = token;
2241
		try {
2242 2 1. jj_2_108 : negated conditional → NO_COVERAGE
2. jj_2_108 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_108();
2243
		} catch (LookaheadSuccess ls) {
2244 1 1. jj_2_108 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2245
		} finally {
2246 3 1. jj_2_108 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_108 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_108 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(107, xla);
2247
		}
2248
	}
2249
2250
	private boolean jj_2_109(int xla) {
2251
		jj_la = xla;
2252
		jj_lastpos = jj_scanpos = token;
2253
		try {
2254 2 1. jj_2_109 : negated conditional → NO_COVERAGE
2. jj_2_109 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_109();
2255
		} catch (LookaheadSuccess ls) {
2256 1 1. jj_2_109 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2257
		} finally {
2258 3 1. jj_2_109 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_109 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_109 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(108, xla);
2259
		}
2260
	}
2261
2262
	private boolean jj_2_110(int xla) {
2263
		jj_la = xla;
2264
		jj_lastpos = jj_scanpos = token;
2265
		try {
2266 2 1. jj_2_110 : negated conditional → NO_COVERAGE
2. jj_2_110 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_110();
2267
		} catch (LookaheadSuccess ls) {
2268 1 1. jj_2_110 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2269
		} finally {
2270 3 1. jj_2_110 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_110 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_110 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(109, xla);
2271
		}
2272
	}
2273
2274
	private boolean jj_2_111(int xla) {
2275
		jj_la = xla;
2276
		jj_lastpos = jj_scanpos = token;
2277
		try {
2278 2 1. jj_2_111 : negated conditional → NO_COVERAGE
2. jj_2_111 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_111();
2279
		} catch (LookaheadSuccess ls) {
2280 1 1. jj_2_111 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2281
		} finally {
2282 3 1. jj_2_111 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_111 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_111 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(110, xla);
2283
		}
2284
	}
2285
2286
	private boolean jj_2_112(int xla) {
2287
		jj_la = xla;
2288
		jj_lastpos = jj_scanpos = token;
2289
		try {
2290 2 1. jj_2_112 : negated conditional → NO_COVERAGE
2. jj_2_112 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_112();
2291
		} catch (LookaheadSuccess ls) {
2292 1 1. jj_2_112 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2293
		} finally {
2294 3 1. jj_2_112 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_112 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_112 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(111, xla);
2295
		}
2296
	}
2297
2298
	private boolean jj_2_113(int xla) {
2299
		jj_la = xla;
2300
		jj_lastpos = jj_scanpos = token;
2301
		try {
2302 2 1. jj_2_113 : negated conditional → NO_COVERAGE
2. jj_2_113 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_113();
2303
		} catch (LookaheadSuccess ls) {
2304 1 1. jj_2_113 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2305
		} finally {
2306 3 1. jj_2_113 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_113 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_113 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(112, xla);
2307
		}
2308
	}
2309
2310
	private boolean jj_2_114(int xla) {
2311
		jj_la = xla;
2312
		jj_lastpos = jj_scanpos = token;
2313
		try {
2314 2 1. jj_2_114 : negated conditional → NO_COVERAGE
2. jj_2_114 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_114();
2315
		} catch (LookaheadSuccess ls) {
2316 1 1. jj_2_114 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2317
		} finally {
2318 3 1. jj_2_114 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_114 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_114 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(113, xla);
2319
		}
2320
	}
2321
2322
	private boolean jj_2_115(int xla) {
2323
		jj_la = xla;
2324
		jj_lastpos = jj_scanpos = token;
2325
		try {
2326 2 1. jj_2_115 : negated conditional → NO_COVERAGE
2. jj_2_115 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_115();
2327
		} catch (LookaheadSuccess ls) {
2328 1 1. jj_2_115 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2329
		} finally {
2330 3 1. jj_2_115 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_115 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_115 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(114, xla);
2331
		}
2332
	}
2333
2334
	private boolean jj_2_116(int xla) {
2335
		jj_la = xla;
2336
		jj_lastpos = jj_scanpos = token;
2337
		try {
2338 2 1. jj_2_116 : negated conditional → NO_COVERAGE
2. jj_2_116 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_116();
2339
		} catch (LookaheadSuccess ls) {
2340 1 1. jj_2_116 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2341
		} finally {
2342 3 1. jj_2_116 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_116 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_116 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(115, xla);
2343
		}
2344
	}
2345
2346
	private boolean jj_2_117(int xla) {
2347
		jj_la = xla;
2348
		jj_lastpos = jj_scanpos = token;
2349
		try {
2350 2 1. jj_2_117 : negated conditional → NO_COVERAGE
2. jj_2_117 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_117();
2351
		} catch (LookaheadSuccess ls) {
2352 1 1. jj_2_117 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2353
		} finally {
2354 3 1. jj_2_117 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_117 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_117 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(116, xla);
2355
		}
2356
	}
2357
2358
	private boolean jj_2_118(int xla) {
2359
		jj_la = xla;
2360
		jj_lastpos = jj_scanpos = token;
2361
		try {
2362 2 1. jj_2_118 : negated conditional → NO_COVERAGE
2. jj_2_118 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_118();
2363
		} catch (LookaheadSuccess ls) {
2364 1 1. jj_2_118 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2365
		} finally {
2366 3 1. jj_2_118 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_118 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_118 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(117, xla);
2367
		}
2368
	}
2369
2370
	private boolean jj_2_119(int xla) {
2371
		jj_la = xla;
2372
		jj_lastpos = jj_scanpos = token;
2373
		try {
2374 2 1. jj_2_119 : negated conditional → NO_COVERAGE
2. jj_2_119 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_119();
2375
		} catch (LookaheadSuccess ls) {
2376 1 1. jj_2_119 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2377
		} finally {
2378 3 1. jj_2_119 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_119 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_119 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(118, xla);
2379
		}
2380
	}
2381
2382
	private boolean jj_2_120(int xla) {
2383
		jj_la = xla;
2384
		jj_lastpos = jj_scanpos = token;
2385
		try {
2386 2 1. jj_2_120 : negated conditional → NO_COVERAGE
2. jj_2_120 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_120();
2387
		} catch (LookaheadSuccess ls) {
2388 1 1. jj_2_120 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2389
		} finally {
2390 3 1. jj_2_120 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_120 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_120 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(119, xla);
2391
		}
2392
	}
2393
2394
	private boolean jj_2_121(int xla) {
2395
		jj_la = xla;
2396
		jj_lastpos = jj_scanpos = token;
2397
		try {
2398 2 1. jj_2_121 : negated conditional → NO_COVERAGE
2. jj_2_121 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_121();
2399
		} catch (LookaheadSuccess ls) {
2400 1 1. jj_2_121 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2401
		} finally {
2402 3 1. jj_2_121 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_121 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_121 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(120, xla);
2403
		}
2404
	}
2405
2406
	private boolean jj_2_122(int xla) {
2407
		jj_la = xla;
2408
		jj_lastpos = jj_scanpos = token;
2409
		try {
2410 2 1. jj_2_122 : negated conditional → NO_COVERAGE
2. jj_2_122 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_122();
2411
		} catch (LookaheadSuccess ls) {
2412 1 1. jj_2_122 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2413
		} finally {
2414 3 1. jj_2_122 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_122 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_122 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(121, xla);
2415
		}
2416
	}
2417
2418
	private boolean jj_2_123(int xla) {
2419
		jj_la = xla;
2420
		jj_lastpos = jj_scanpos = token;
2421
		try {
2422 2 1. jj_2_123 : negated conditional → NO_COVERAGE
2. jj_2_123 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_123();
2423
		} catch (LookaheadSuccess ls) {
2424 1 1. jj_2_123 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2425
		} finally {
2426 3 1. jj_2_123 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_123 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_123 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(122, xla);
2427
		}
2428
	}
2429
2430
	private boolean jj_2_124(int xla) {
2431
		jj_la = xla;
2432
		jj_lastpos = jj_scanpos = token;
2433
		try {
2434 2 1. jj_2_124 : negated conditional → NO_COVERAGE
2. jj_2_124 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_124();
2435
		} catch (LookaheadSuccess ls) {
2436 1 1. jj_2_124 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2437
		} finally {
2438 3 1. jj_2_124 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_124 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_124 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(123, xla);
2439
		}
2440
	}
2441
2442
	private boolean jj_2_125(int xla) {
2443
		jj_la = xla;
2444
		jj_lastpos = jj_scanpos = token;
2445
		try {
2446 2 1. jj_2_125 : negated conditional → NO_COVERAGE
2. jj_2_125 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_125();
2447
		} catch (LookaheadSuccess ls) {
2448 1 1. jj_2_125 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2449
		} finally {
2450 3 1. jj_2_125 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_125 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_125 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(124, xla);
2451
		}
2452
	}
2453
2454
	private boolean jj_2_126(int xla) {
2455
		jj_la = xla;
2456
		jj_lastpos = jj_scanpos = token;
2457
		try {
2458 2 1. jj_2_126 : negated conditional → NO_COVERAGE
2. jj_2_126 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_126();
2459
		} catch (LookaheadSuccess ls) {
2460 1 1. jj_2_126 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2461
		} finally {
2462 3 1. jj_2_126 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_126 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_126 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(125, xla);
2463
		}
2464
	}
2465
2466
	private boolean jj_2_127(int xla) {
2467
		jj_la = xla;
2468
		jj_lastpos = jj_scanpos = token;
2469
		try {
2470 2 1. jj_2_127 : negated conditional → NO_COVERAGE
2. jj_2_127 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_127();
2471
		} catch (LookaheadSuccess ls) {
2472 1 1. jj_2_127 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2473
		} finally {
2474 3 1. jj_2_127 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_127 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_127 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(126, xla);
2475
		}
2476
	}
2477
2478
	private boolean jj_2_128(int xla) {
2479
		jj_la = xla;
2480
		jj_lastpos = jj_scanpos = token;
2481
		try {
2482 2 1. jj_2_128 : negated conditional → NO_COVERAGE
2. jj_2_128 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_128();
2483
		} catch (LookaheadSuccess ls) {
2484 1 1. jj_2_128 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2485
		} finally {
2486 3 1. jj_2_128 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_128 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_128 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(127, xla);
2487
		}
2488
	}
2489
2490
	private boolean jj_2_129(int xla) {
2491
		jj_la = xla;
2492
		jj_lastpos = jj_scanpos = token;
2493
		try {
2494 2 1. jj_2_129 : negated conditional → NO_COVERAGE
2. jj_2_129 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_129();
2495
		} catch (LookaheadSuccess ls) {
2496 1 1. jj_2_129 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2497
		} finally {
2498 3 1. jj_2_129 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_129 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_129 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(128, xla);
2499
		}
2500
	}
2501
2502
	private boolean jj_2_130(int xla) {
2503
		jj_la = xla;
2504
		jj_lastpos = jj_scanpos = token;
2505
		try {
2506 2 1. jj_2_130 : negated conditional → NO_COVERAGE
2. jj_2_130 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_130();
2507
		} catch (LookaheadSuccess ls) {
2508 1 1. jj_2_130 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2509
		} finally {
2510 3 1. jj_2_130 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_130 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_130 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(129, xla);
2511
		}
2512
	}
2513
2514
	private boolean jj_2_131(int xla) {
2515
		jj_la = xla;
2516
		jj_lastpos = jj_scanpos = token;
2517
		try {
2518 2 1. jj_2_131 : negated conditional → NO_COVERAGE
2. jj_2_131 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_131();
2519
		} catch (LookaheadSuccess ls) {
2520 1 1. jj_2_131 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2521
		} finally {
2522 3 1. jj_2_131 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_131 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_131 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(130, xla);
2523
		}
2524
	}
2525
2526
	private boolean jj_2_132(int xla) {
2527
		jj_la = xla;
2528
		jj_lastpos = jj_scanpos = token;
2529
		try {
2530 2 1. jj_2_132 : negated conditional → NO_COVERAGE
2. jj_2_132 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_132();
2531
		} catch (LookaheadSuccess ls) {
2532 1 1. jj_2_132 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2533
		} finally {
2534 3 1. jj_2_132 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_132 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_132 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(131, xla);
2535
		}
2536
	}
2537
2538
	private boolean jj_2_133(int xla) {
2539
		jj_la = xla;
2540
		jj_lastpos = jj_scanpos = token;
2541
		try {
2542 2 1. jj_2_133 : negated conditional → NO_COVERAGE
2. jj_2_133 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_133();
2543
		} catch (LookaheadSuccess ls) {
2544 1 1. jj_2_133 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2545
		} finally {
2546 3 1. jj_2_133 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_133 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_133 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(132, xla);
2547
		}
2548
	}
2549
2550
	private boolean jj_2_134(int xla) {
2551
		jj_la = xla;
2552
		jj_lastpos = jj_scanpos = token;
2553
		try {
2554 2 1. jj_2_134 : negated conditional → NO_COVERAGE
2. jj_2_134 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_134();
2555
		} catch (LookaheadSuccess ls) {
2556 1 1. jj_2_134 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2557
		} finally {
2558 3 1. jj_2_134 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_134 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_134 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(133, xla);
2559
		}
2560
	}
2561
2562
	private boolean jj_2_135(int xla) {
2563
		jj_la = xla;
2564
		jj_lastpos = jj_scanpos = token;
2565
		try {
2566 2 1. jj_2_135 : negated conditional → NO_COVERAGE
2. jj_2_135 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_135();
2567
		} catch (LookaheadSuccess ls) {
2568 1 1. jj_2_135 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2569
		} finally {
2570 3 1. jj_2_135 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_135 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_135 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(134, xla);
2571
		}
2572
	}
2573
2574
	private boolean jj_2_136(int xla) {
2575
		jj_la = xla;
2576
		jj_lastpos = jj_scanpos = token;
2577
		try {
2578 2 1. jj_2_136 : negated conditional → NO_COVERAGE
2. jj_2_136 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_136();
2579
		} catch (LookaheadSuccess ls) {
2580 1 1. jj_2_136 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2581
		} finally {
2582 3 1. jj_2_136 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_136 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_136 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(135, xla);
2583
		}
2584
	}
2585
2586
	private boolean jj_2_137(int xla) {
2587
		jj_la = xla;
2588
		jj_lastpos = jj_scanpos = token;
2589
		try {
2590 2 1. jj_2_137 : negated conditional → NO_COVERAGE
2. jj_2_137 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_137();
2591
		} catch (LookaheadSuccess ls) {
2592 1 1. jj_2_137 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2593
		} finally {
2594 3 1. jj_2_137 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_137 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_137 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(136, xla);
2595
		}
2596
	}
2597
2598
	private boolean jj_2_138(int xla) {
2599
		jj_la = xla;
2600
		jj_lastpos = jj_scanpos = token;
2601
		try {
2602 2 1. jj_2_138 : negated conditional → NO_COVERAGE
2. jj_2_138 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_138();
2603
		} catch (LookaheadSuccess ls) {
2604 1 1. jj_2_138 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2605
		} finally {
2606 3 1. jj_2_138 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_138 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_138 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(137, xla);
2607
		}
2608
	}
2609
2610
	private boolean jj_2_139(int xla) {
2611
		jj_la = xla;
2612
		jj_lastpos = jj_scanpos = token;
2613
		try {
2614 2 1. jj_2_139 : negated conditional → NO_COVERAGE
2. jj_2_139 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_139();
2615
		} catch (LookaheadSuccess ls) {
2616 1 1. jj_2_139 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2617
		} finally {
2618 3 1. jj_2_139 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_139 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_139 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(138, xla);
2619
		}
2620
	}
2621
2622
	private boolean jj_2_140(int xla) {
2623
		jj_la = xla;
2624
		jj_lastpos = jj_scanpos = token;
2625
		try {
2626 2 1. jj_2_140 : negated conditional → NO_COVERAGE
2. jj_2_140 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_140();
2627
		} catch (LookaheadSuccess ls) {
2628 1 1. jj_2_140 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2629
		} finally {
2630 3 1. jj_2_140 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_140 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_140 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(139, xla);
2631
		}
2632
	}
2633
2634
	private boolean jj_2_141(int xla) {
2635
		jj_la = xla;
2636
		jj_lastpos = jj_scanpos = token;
2637
		try {
2638 2 1. jj_2_141 : negated conditional → NO_COVERAGE
2. jj_2_141 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_141();
2639
		} catch (LookaheadSuccess ls) {
2640 1 1. jj_2_141 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2641
		} finally {
2642 3 1. jj_2_141 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_141 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_141 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(140, xla);
2643
		}
2644
	}
2645
2646
	private boolean jj_2_142(int xla) {
2647
		jj_la = xla;
2648
		jj_lastpos = jj_scanpos = token;
2649
		try {
2650 2 1. jj_2_142 : negated conditional → NO_COVERAGE
2. jj_2_142 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_142();
2651
		} catch (LookaheadSuccess ls) {
2652 1 1. jj_2_142 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2653
		} finally {
2654 3 1. jj_2_142 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_142 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_142 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(141, xla);
2655
		}
2656
	}
2657
2658
	private boolean jj_2_143(int xla) {
2659
		jj_la = xla;
2660
		jj_lastpos = jj_scanpos = token;
2661
		try {
2662 2 1. jj_2_143 : negated conditional → NO_COVERAGE
2. jj_2_143 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_143();
2663
		} catch (LookaheadSuccess ls) {
2664 1 1. jj_2_143 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2665
		} finally {
2666 3 1. jj_2_143 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_143 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_143 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(142, xla);
2667
		}
2668
	}
2669
2670
	private boolean jj_2_144(int xla) {
2671
		jj_la = xla;
2672
		jj_lastpos = jj_scanpos = token;
2673
		try {
2674 2 1. jj_2_144 : negated conditional → NO_COVERAGE
2. jj_2_144 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_144();
2675
		} catch (LookaheadSuccess ls) {
2676 1 1. jj_2_144 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2677
		} finally {
2678 3 1. jj_2_144 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_144 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_144 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(143, xla);
2679
		}
2680
	}
2681
2682
	private boolean jj_2_145(int xla) {
2683
		jj_la = xla;
2684
		jj_lastpos = jj_scanpos = token;
2685
		try {
2686 2 1. jj_2_145 : negated conditional → NO_COVERAGE
2. jj_2_145 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_145();
2687
		} catch (LookaheadSuccess ls) {
2688 1 1. jj_2_145 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2689
		} finally {
2690 3 1. jj_2_145 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_145 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_145 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(144, xla);
2691
		}
2692
	}
2693
2694
	private boolean jj_2_146(int xla) {
2695
		jj_la = xla;
2696
		jj_lastpos = jj_scanpos = token;
2697
		try {
2698 2 1. jj_2_146 : negated conditional → NO_COVERAGE
2. jj_2_146 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_146();
2699
		} catch (LookaheadSuccess ls) {
2700 1 1. jj_2_146 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2701
		} finally {
2702 3 1. jj_2_146 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_146 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_146 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(145, xla);
2703
		}
2704
	}
2705
2706
	private boolean jj_2_147(int xla) {
2707
		jj_la = xla;
2708
		jj_lastpos = jj_scanpos = token;
2709
		try {
2710 2 1. jj_2_147 : negated conditional → NO_COVERAGE
2. jj_2_147 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_147();
2711
		} catch (LookaheadSuccess ls) {
2712 1 1. jj_2_147 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2713
		} finally {
2714 3 1. jj_2_147 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_147 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_147 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(146, xla);
2715
		}
2716
	}
2717
2718
	private boolean jj_2_148(int xla) {
2719
		jj_la = xla;
2720
		jj_lastpos = jj_scanpos = token;
2721
		try {
2722 2 1. jj_2_148 : negated conditional → NO_COVERAGE
2. jj_2_148 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_148();
2723
		} catch (LookaheadSuccess ls) {
2724 1 1. jj_2_148 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2725
		} finally {
2726 3 1. jj_2_148 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_148 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_148 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(147, xla);
2727
		}
2728
	}
2729
2730
	private boolean jj_2_149(int xla) {
2731
		jj_la = xla;
2732
		jj_lastpos = jj_scanpos = token;
2733
		try {
2734 2 1. jj_2_149 : negated conditional → NO_COVERAGE
2. jj_2_149 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_149();
2735
		} catch (LookaheadSuccess ls) {
2736 1 1. jj_2_149 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2737
		} finally {
2738 3 1. jj_2_149 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_149 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_149 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(148, xla);
2739
		}
2740
	}
2741
2742
	private boolean jj_2_150(int xla) {
2743
		jj_la = xla;
2744
		jj_lastpos = jj_scanpos = token;
2745
		try {
2746 2 1. jj_2_150 : negated conditional → NO_COVERAGE
2. jj_2_150 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_150();
2747
		} catch (LookaheadSuccess ls) {
2748 1 1. jj_2_150 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2749
		} finally {
2750 3 1. jj_2_150 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_150 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_150 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(149, xla);
2751
		}
2752
	}
2753
2754
	private boolean jj_2_151(int xla) {
2755
		jj_la = xla;
2756
		jj_lastpos = jj_scanpos = token;
2757
		try {
2758 2 1. jj_2_151 : negated conditional → NO_COVERAGE
2. jj_2_151 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_151();
2759
		} catch (LookaheadSuccess ls) {
2760 1 1. jj_2_151 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2761
		} finally {
2762 3 1. jj_2_151 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_151 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_151 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(150, xla);
2763
		}
2764
	}
2765
2766
	private boolean jj_2_152(int xla) {
2767
		jj_la = xla;
2768
		jj_lastpos = jj_scanpos = token;
2769
		try {
2770 2 1. jj_2_152 : negated conditional → NO_COVERAGE
2. jj_2_152 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_152();
2771
		} catch (LookaheadSuccess ls) {
2772 1 1. jj_2_152 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2773
		} finally {
2774 3 1. jj_2_152 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_152 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_152 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(151, xla);
2775
		}
2776
	}
2777
2778
	private boolean jj_2_153(int xla) {
2779
		jj_la = xla;
2780
		jj_lastpos = jj_scanpos = token;
2781
		try {
2782 2 1. jj_2_153 : negated conditional → NO_COVERAGE
2. jj_2_153 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_153();
2783
		} catch (LookaheadSuccess ls) {
2784 1 1. jj_2_153 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2785
		} finally {
2786 3 1. jj_2_153 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_153 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_153 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(152, xla);
2787
		}
2788
	}
2789
2790
	private boolean jj_2_154(int xla) {
2791
		jj_la = xla;
2792
		jj_lastpos = jj_scanpos = token;
2793
		try {
2794 2 1. jj_2_154 : negated conditional → NO_COVERAGE
2. jj_2_154 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_154();
2795
		} catch (LookaheadSuccess ls) {
2796 1 1. jj_2_154 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2797
		} finally {
2798 3 1. jj_2_154 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_154 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_154 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(153, xla);
2799
		}
2800
	}
2801
2802
	private boolean jj_2_155(int xla) {
2803
		jj_la = xla;
2804
		jj_lastpos = jj_scanpos = token;
2805
		try {
2806 2 1. jj_2_155 : negated conditional → NO_COVERAGE
2. jj_2_155 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_155();
2807
		} catch (LookaheadSuccess ls) {
2808 1 1. jj_2_155 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2809
		} finally {
2810 3 1. jj_2_155 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_155 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_155 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(154, xla);
2811
		}
2812
	}
2813
2814
	private boolean jj_2_156(int xla) {
2815
		jj_la = xla;
2816
		jj_lastpos = jj_scanpos = token;
2817
		try {
2818 2 1. jj_2_156 : negated conditional → NO_COVERAGE
2. jj_2_156 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_156();
2819
		} catch (LookaheadSuccess ls) {
2820 1 1. jj_2_156 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2821
		} finally {
2822 3 1. jj_2_156 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_156 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_156 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(155, xla);
2823
		}
2824
	}
2825
2826
	private boolean jj_2_157(int xla) {
2827
		jj_la = xla;
2828
		jj_lastpos = jj_scanpos = token;
2829
		try {
2830 2 1. jj_2_157 : negated conditional → NO_COVERAGE
2. jj_2_157 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_157();
2831
		} catch (LookaheadSuccess ls) {
2832 1 1. jj_2_157 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2833
		} finally {
2834 3 1. jj_2_157 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_157 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_157 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(156, xla);
2835
		}
2836
	}
2837
2838
	private boolean jj_2_158(int xla) {
2839
		jj_la = xla;
2840
		jj_lastpos = jj_scanpos = token;
2841
		try {
2842 2 1. jj_2_158 : negated conditional → NO_COVERAGE
2. jj_2_158 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_158();
2843
		} catch (LookaheadSuccess ls) {
2844 1 1. jj_2_158 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2845
		} finally {
2846 3 1. jj_2_158 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_158 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_158 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(157, xla);
2847
		}
2848
	}
2849
2850
	private boolean jj_2_159(int xla) {
2851
		jj_la = xla;
2852
		jj_lastpos = jj_scanpos = token;
2853
		try {
2854 2 1. jj_2_159 : negated conditional → NO_COVERAGE
2. jj_2_159 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_159();
2855
		} catch (LookaheadSuccess ls) {
2856 1 1. jj_2_159 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2857
		} finally {
2858 3 1. jj_2_159 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_159 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_159 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(158, xla);
2859
		}
2860
	}
2861
2862
	private boolean jj_2_160(int xla) {
2863
		jj_la = xla;
2864
		jj_lastpos = jj_scanpos = token;
2865
		try {
2866 2 1. jj_2_160 : negated conditional → NO_COVERAGE
2. jj_2_160 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_160();
2867
		} catch (LookaheadSuccess ls) {
2868 1 1. jj_2_160 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2869
		} finally {
2870 3 1. jj_2_160 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_160 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_160 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(159, xla);
2871
		}
2872
	}
2873
2874
	private boolean jj_2_161(int xla) {
2875
		jj_la = xla;
2876
		jj_lastpos = jj_scanpos = token;
2877
		try {
2878 2 1. jj_2_161 : negated conditional → NO_COVERAGE
2. jj_2_161 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_161();
2879
		} catch (LookaheadSuccess ls) {
2880 1 1. jj_2_161 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2881
		} finally {
2882 3 1. jj_2_161 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_161 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_161 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(160, xla);
2883
		}
2884
	}
2885
2886
	private boolean jj_2_162(int xla) {
2887
		jj_la = xla;
2888
		jj_lastpos = jj_scanpos = token;
2889
		try {
2890 2 1. jj_2_162 : negated conditional → NO_COVERAGE
2. jj_2_162 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_162();
2891
		} catch (LookaheadSuccess ls) {
2892 1 1. jj_2_162 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2893
		} finally {
2894 3 1. jj_2_162 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_162 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_162 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(161, xla);
2895
		}
2896
	}
2897
2898
	private boolean jj_2_163(int xla) {
2899
		jj_la = xla;
2900
		jj_lastpos = jj_scanpos = token;
2901
		try {
2902 2 1. jj_2_163 : negated conditional → NO_COVERAGE
2. jj_2_163 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_163();
2903
		} catch (LookaheadSuccess ls) {
2904 1 1. jj_2_163 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2905
		} finally {
2906 3 1. jj_2_163 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_163 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_163 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(162, xla);
2907
		}
2908
	}
2909
2910
	private boolean jj_2_164(int xla) {
2911
		jj_la = xla;
2912
		jj_lastpos = jj_scanpos = token;
2913
		try {
2914 2 1. jj_2_164 : negated conditional → NO_COVERAGE
2. jj_2_164 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_164();
2915
		} catch (LookaheadSuccess ls) {
2916 1 1. jj_2_164 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2917
		} finally {
2918 3 1. jj_2_164 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_164 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_164 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(163, xla);
2919
		}
2920
	}
2921
2922
	private boolean jj_2_165(int xla) {
2923
		jj_la = xla;
2924
		jj_lastpos = jj_scanpos = token;
2925
		try {
2926 2 1. jj_2_165 : negated conditional → NO_COVERAGE
2. jj_2_165 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_165();
2927
		} catch (LookaheadSuccess ls) {
2928 1 1. jj_2_165 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2929
		} finally {
2930 3 1. jj_2_165 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_165 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_165 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(164, xla);
2931
		}
2932
	}
2933
2934
	private boolean jj_2_166(int xla) {
2935
		jj_la = xla;
2936
		jj_lastpos = jj_scanpos = token;
2937
		try {
2938 2 1. jj_2_166 : negated conditional → NO_COVERAGE
2. jj_2_166 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_166();
2939
		} catch (LookaheadSuccess ls) {
2940 1 1. jj_2_166 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2941
		} finally {
2942 3 1. jj_2_166 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_166 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_166 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(165, xla);
2943
		}
2944
	}
2945
2946
	private boolean jj_2_167(int xla) {
2947
		jj_la = xla;
2948
		jj_lastpos = jj_scanpos = token;
2949
		try {
2950 2 1. jj_2_167 : negated conditional → NO_COVERAGE
2. jj_2_167 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_167();
2951
		} catch (LookaheadSuccess ls) {
2952 1 1. jj_2_167 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2953
		} finally {
2954 3 1. jj_2_167 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_167 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_167 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(166, xla);
2955
		}
2956
	}
2957
2958
	private boolean jj_2_168(int xla) {
2959
		jj_la = xla;
2960
		jj_lastpos = jj_scanpos = token;
2961
		try {
2962 2 1. jj_2_168 : negated conditional → NO_COVERAGE
2. jj_2_168 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_168();
2963
		} catch (LookaheadSuccess ls) {
2964 1 1. jj_2_168 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2965
		} finally {
2966 3 1. jj_2_168 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_168 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_168 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(167, xla);
2967
		}
2968
	}
2969
2970
	private boolean jj_2_169(int xla) {
2971
		jj_la = xla;
2972
		jj_lastpos = jj_scanpos = token;
2973
		try {
2974 2 1. jj_2_169 : negated conditional → NO_COVERAGE
2. jj_2_169 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_169();
2975
		} catch (LookaheadSuccess ls) {
2976 1 1. jj_2_169 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2977
		} finally {
2978 3 1. jj_2_169 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_169 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_169 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(168, xla);
2979
		}
2980
	}
2981
2982
	private boolean jj_2_170(int xla) {
2983
		jj_la = xla;
2984
		jj_lastpos = jj_scanpos = token;
2985
		try {
2986 2 1. jj_2_170 : negated conditional → NO_COVERAGE
2. jj_2_170 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_170();
2987
		} catch (LookaheadSuccess ls) {
2988 1 1. jj_2_170 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
2989
		} finally {
2990 3 1. jj_2_170 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_170 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_170 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(169, xla);
2991
		}
2992
	}
2993
2994
	private boolean jj_2_171(int xla) {
2995
		jj_la = xla;
2996
		jj_lastpos = jj_scanpos = token;
2997
		try {
2998 2 1. jj_2_171 : negated conditional → NO_COVERAGE
2. jj_2_171 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_171();
2999
		} catch (LookaheadSuccess ls) {
3000 1 1. jj_2_171 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3001
		} finally {
3002 3 1. jj_2_171 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_171 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_171 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(170, xla);
3003
		}
3004
	}
3005
3006
	private boolean jj_2_172(int xla) {
3007
		jj_la = xla;
3008
		jj_lastpos = jj_scanpos = token;
3009
		try {
3010 2 1. jj_2_172 : negated conditional → NO_COVERAGE
2. jj_2_172 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_172();
3011
		} catch (LookaheadSuccess ls) {
3012 1 1. jj_2_172 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3013
		} finally {
3014 3 1. jj_2_172 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_172 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_172 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(171, xla);
3015
		}
3016
	}
3017
3018
	private boolean jj_2_173(int xla) {
3019
		jj_la = xla;
3020
		jj_lastpos = jj_scanpos = token;
3021
		try {
3022 2 1. jj_2_173 : negated conditional → NO_COVERAGE
2. jj_2_173 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_173();
3023
		} catch (LookaheadSuccess ls) {
3024 1 1. jj_2_173 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3025
		} finally {
3026 3 1. jj_2_173 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_173 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_173 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(172, xla);
3027
		}
3028
	}
3029
3030
	private boolean jj_2_174(int xla) {
3031
		jj_la = xla;
3032
		jj_lastpos = jj_scanpos = token;
3033
		try {
3034 2 1. jj_2_174 : negated conditional → NO_COVERAGE
2. jj_2_174 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_174();
3035
		} catch (LookaheadSuccess ls) {
3036 1 1. jj_2_174 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3037
		} finally {
3038 3 1. jj_2_174 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_174 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_174 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(173, xla);
3039
		}
3040
	}
3041
3042
	private boolean jj_2_175(int xla) {
3043
		jj_la = xla;
3044
		jj_lastpos = jj_scanpos = token;
3045
		try {
3046 2 1. jj_2_175 : negated conditional → NO_COVERAGE
2. jj_2_175 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_175();
3047
		} catch (LookaheadSuccess ls) {
3048 1 1. jj_2_175 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3049
		} finally {
3050 3 1. jj_2_175 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_175 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_175 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(174, xla);
3051
		}
3052
	}
3053
3054
	private boolean jj_2_176(int xla) {
3055
		jj_la = xla;
3056
		jj_lastpos = jj_scanpos = token;
3057
		try {
3058 2 1. jj_2_176 : negated conditional → NO_COVERAGE
2. jj_2_176 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_176();
3059
		} catch (LookaheadSuccess ls) {
3060 1 1. jj_2_176 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3061
		} finally {
3062 3 1. jj_2_176 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_176 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_176 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(175, xla);
3063
		}
3064
	}
3065
3066
	private boolean jj_2_177(int xla) {
3067
		jj_la = xla;
3068
		jj_lastpos = jj_scanpos = token;
3069
		try {
3070 2 1. jj_2_177 : negated conditional → NO_COVERAGE
2. jj_2_177 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_177();
3071
		} catch (LookaheadSuccess ls) {
3072 1 1. jj_2_177 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3073
		} finally {
3074 3 1. jj_2_177 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_177 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_177 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(176, xla);
3075
		}
3076
	}
3077
3078
	private boolean jj_2_178(int xla) {
3079
		jj_la = xla;
3080
		jj_lastpos = jj_scanpos = token;
3081
		try {
3082 2 1. jj_2_178 : negated conditional → NO_COVERAGE
2. jj_2_178 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_178();
3083
		} catch (LookaheadSuccess ls) {
3084 1 1. jj_2_178 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3085
		} finally {
3086 3 1. jj_2_178 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_178 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_178 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(177, xla);
3087
		}
3088
	}
3089
3090
	private boolean jj_2_179(int xla) {
3091
		jj_la = xla;
3092
		jj_lastpos = jj_scanpos = token;
3093
		try {
3094 2 1. jj_2_179 : negated conditional → NO_COVERAGE
2. jj_2_179 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_179();
3095
		} catch (LookaheadSuccess ls) {
3096 1 1. jj_2_179 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3097
		} finally {
3098 3 1. jj_2_179 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_179 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_179 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(178, xla);
3099
		}
3100
	}
3101
3102
	private boolean jj_2_180(int xla) {
3103
		jj_la = xla;
3104
		jj_lastpos = jj_scanpos = token;
3105
		try {
3106 2 1. jj_2_180 : negated conditional → NO_COVERAGE
2. jj_2_180 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_180();
3107
		} catch (LookaheadSuccess ls) {
3108 1 1. jj_2_180 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3109
		} finally {
3110 3 1. jj_2_180 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_180 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_180 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(179, xla);
3111
		}
3112
	}
3113
3114
	private boolean jj_2_181(int xla) {
3115
		jj_la = xla;
3116
		jj_lastpos = jj_scanpos = token;
3117
		try {
3118 2 1. jj_2_181 : negated conditional → NO_COVERAGE
2. jj_2_181 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_181();
3119
		} catch (LookaheadSuccess ls) {
3120 1 1. jj_2_181 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3121
		} finally {
3122 3 1. jj_2_181 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_181 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_181 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(180, xla);
3123
		}
3124
	}
3125
3126
	private boolean jj_2_182(int xla) {
3127
		jj_la = xla;
3128
		jj_lastpos = jj_scanpos = token;
3129
		try {
3130 2 1. jj_2_182 : negated conditional → NO_COVERAGE
2. jj_2_182 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return !jj_3_182();
3131
		} catch (LookaheadSuccess ls) {
3132 1 1. jj_2_182 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3133
		} finally {
3134 3 1. jj_2_182 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
2. jj_2_182 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
3. jj_2_182 : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE
			jj_save(181, xla);
3135
		}
3136
	}
3137
3138
	private boolean jj_3R_29() {
3139
		Token xsp;
3140 1 1. jj_3R_29 : negated conditional → NO_COVERAGE
		if (jj_3_106())
3141 1 1. jj_3R_29 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3142
		while (true) {
3143
			xsp = jj_scanpos;
3144 1 1. jj_3R_29 : negated conditional → NO_COVERAGE
			if (jj_3_106()) {
3145
				jj_scanpos = xsp;
3146
				break;
3147
			}
3148
		}
3149 1 1. jj_3R_29 : negated conditional → NO_COVERAGE
		if (jj_3R_27())
3150 1 1. jj_3R_29 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3151 1 1. jj_3R_29 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3152
	}
3153
3154
	private boolean jj_3_102() {
3155 1 1. jj_3_102 : negated conditional → NO_COVERAGE
		if (jj_scan_token(EOL))
3156 1 1. jj_3_102 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3157 1 1. jj_3_102 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3158
	}
3159
3160
	private boolean jj_3_103() {
3161 1 1. jj_3_103 : negated conditional → NO_COVERAGE
		if (jj_3R_29())
3162 1 1. jj_3_103 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3163 1 1. jj_3_103 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3164
	}
3165
3166
	private boolean jj_3_105() {
3167
		Token xsp;
3168
		xsp = jj_scanpos;
3169 1 1. jj_3_105 : negated conditional → NO_COVERAGE
		if (jj_3_103()) {
3170
			jj_scanpos = xsp;
3171 1 1. jj_3_105 : negated conditional → NO_COVERAGE
			if (jj_3_104())
3172 1 1. jj_3_105 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
				return true;
3173
		}
3174 1 1. jj_3_105 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3175
	}
3176
3177
	private boolean jj_3R_28() {
3178 1 1. jj_3R_28 : negated conditional → NO_COVERAGE
		if (jj_scan_token(MATRIX))
3179 1 1. jj_3R_28 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3180
		Token xsp;
3181 1 1. jj_3R_28 : negated conditional → NO_COVERAGE
		if (jj_3_102())
3182 1 1. jj_3R_28 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3183
		while (true) {
3184
			xsp = jj_scanpos;
3185 1 1. jj_3R_28 : negated conditional → NO_COVERAGE
			if (jj_3_102()) {
3186
				jj_scanpos = xsp;
3187
				break;
3188
			}
3189
		}
3190 1 1. jj_3R_28 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3191
	}
3192
3193
	private boolean jj_3_99() {
3194 1 1. jj_3_99 : negated conditional → NO_COVERAGE
		if (jj_scan_token(REAL))
3195 1 1. jj_3_99 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3196 1 1. jj_3_99 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3197
	}
3198
3199
	private boolean jj_3_101() {
3200 1 1. jj_3_101 : negated conditional → NO_COVERAGE
		if (jj_scan_token(INT))
3201 1 1. jj_3_101 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3202 1 1. jj_3_101 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3203
	}
3204
3205
	private boolean jj_3R_26() {
3206 1 1. jj_3R_26 : negated conditional → NO_COVERAGE
		if (jj_scan_token(INT))
3207 1 1. jj_3R_26 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3208 1 1. jj_3R_26 : negated conditional → NO_COVERAGE
		if (jj_scan_token(INT))
3209 1 1. jj_3R_26 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3210 1 1. jj_3R_26 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3211
	}
3212
3213
	private boolean jj_3_76() {
3214 1 1. jj_3_76 : negated conditional → NO_COVERAGE
		if (jj_scan_token(B))
3215 1 1. jj_3_76 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3216 1 1. jj_3_76 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3217
	}
3218
3219
	private boolean jj_3_98() {
3220 1 1. jj_3_98 : negated conditional → NO_COVERAGE
		if (jj_3R_24())
3221 1 1. jj_3_98 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3222 1 1. jj_3_98 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3223
	}
3224
3225
	private boolean jj_3_97() {
3226
		Token xsp;
3227
		xsp = jj_scanpos;
3228 1 1. jj_3_97 : negated conditional → NO_COVERAGE
		if (jj_3_98()) {
3229
			jj_scanpos = xsp;
3230 1 1. jj_3_97 : negated conditional → NO_COVERAGE
			if (jj_3_99())
3231 1 1. jj_3_97 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
				return true;
3232
		}
3233 1 1. jj_3_97 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3234
	}
3235
3236
	private boolean jj_3_96() {
3237 1 1. jj_3_96 : negated conditional → NO_COVERAGE
		if (jj_scan_token(K2))
3238 1 1. jj_3_96 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3239 1 1. jj_3_96 : negated conditional → NO_COVERAGE
		if (jj_3R_21())
3240 1 1. jj_3_96 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3241 1 1. jj_3_96 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3242
	}
3243
3244
	private boolean jj_3_95() {
3245 1 1. jj_3_95 : negated conditional → NO_COVERAGE
		if (jj_scan_token(K1))
3246 1 1. jj_3_95 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3247 1 1. jj_3_95 : negated conditional → NO_COVERAGE
		if (jj_3R_21())
3248 1 1. jj_3_95 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3249 1 1. jj_3_95 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3250
	}
3251
3252
	private boolean jj_3_94() {
3253 1 1. jj_3_94 : negated conditional → NO_COVERAGE
		if (jj_scan_token(A2))
3254 1 1. jj_3_94 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3255 1 1. jj_3_94 : negated conditional → NO_COVERAGE
		if (jj_3R_21())
3256 1 1. jj_3_94 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3257 1 1. jj_3_94 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3258
	}
3259
3260
	private boolean jj_3_75() {
3261 1 1. jj_3_75 : negated conditional → NO_COVERAGE
		if (jj_scan_token(A))
3262 1 1. jj_3_75 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3263 1 1. jj_3_75 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3264
	}
3265
3266
	private boolean jj_3_93() {
3267 1 1. jj_3_93 : negated conditional → NO_COVERAGE
		if (jj_scan_token(A1))
3268 1 1. jj_3_93 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3269 1 1. jj_3_93 : negated conditional → NO_COVERAGE
		if (jj_3R_21())
3270 1 1. jj_3_93 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3271 1 1. jj_3_93 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3272
	}
3273
3274
	private boolean jj_3_92() {
3275 1 1. jj_3_92 : negated conditional → NO_COVERAGE
		if (jj_scan_token(H2))
3276 1 1. jj_3_92 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3277 1 1. jj_3_92 : negated conditional → NO_COVERAGE
		if (jj_3R_21())
3278 1 1. jj_3_92 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3279 1 1. jj_3_92 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3280
	}
3281
3282
	private boolean jj_3_91() {
3283 1 1. jj_3_91 : negated conditional → NO_COVERAGE
		if (jj_scan_token(H1))
3284 1 1. jj_3_91 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3285 1 1. jj_3_91 : negated conditional → NO_COVERAGE
		if (jj_3R_21())
3286 1 1. jj_3_91 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3287 1 1. jj_3_91 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3288
	}
3289
3290
	private boolean jj_3_90() {
3291 1 1. jj_3_90 : negated conditional → NO_COVERAGE
		if (jj_scan_token(FONT))
3292 1 1. jj_3_90 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3293 1 1. jj_3_90 : negated conditional → NO_COVERAGE
		if (jj_3R_23())
3294 1 1. jj_3_90 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3295 1 1. jj_3_90 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3296
	}
3297
3298
	private boolean jj_3_89() {
3299 1 1. jj_3_89 : negated conditional → NO_COVERAGE
		if (jj_scan_token(FOS))
3300 1 1. jj_3_89 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3301 1 1. jj_3_89 : negated conditional → NO_COVERAGE
		if (jj_3R_21())
3302 1 1. jj_3_89 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3303 1 1. jj_3_89 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3304
	}
3305
3306
	private boolean jj_3_88() {
3307 1 1. jj_3_88 : negated conditional → NO_COVERAGE
		if (jj_scan_token(LA))
3308 1 1. jj_3_88 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3309 1 1. jj_3_88 : negated conditional → NO_COVERAGE
		if (jj_3R_21())
3310 1 1. jj_3_88 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3311 1 1. jj_3_88 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3312
	}
3313
3314
	private boolean jj_3_87() {
3315 1 1. jj_3_87 : negated conditional → NO_COVERAGE
		if (jj_scan_token(LC))
3316 1 1. jj_3_87 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3317 1 1. jj_3_87 : negated conditional → NO_COVERAGE
		if (jj_3R_22())
3318 1 1. jj_3_87 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3319 1 1. jj_3_87 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3320
	}
3321
3322
	private boolean jj_3_86() {
3323 1 1. jj_3_86 : negated conditional → NO_COVERAGE
		if (jj_scan_token(LPHI))
3324 1 1. jj_3_86 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3325 1 1. jj_3_86 : negated conditional → NO_COVERAGE
		if (jj_3R_21())
3326 1 1. jj_3_86 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3327 1 1. jj_3_86 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3328
	}
3329
3330
	private boolean jj_3_85() {
3331 1 1. jj_3_85 : negated conditional → NO_COVERAGE
		if (jj_scan_token(LR))
3332 1 1. jj_3_85 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3333 1 1. jj_3_85 : negated conditional → NO_COVERAGE
		if (jj_3R_21())
3334 1 1. jj_3_85 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3335 1 1. jj_3_85 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3336
	}
3337
3338
	private boolean jj_3_84() {
3339 1 1. jj_3_84 : negated conditional → NO_COVERAGE
		if (jj_scan_token(LP))
3340 1 1. jj_3_84 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3341 1 1. jj_3_84 : negated conditional → NO_COVERAGE
		if (jj_3R_21())
3342 1 1. jj_3_84 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3343 1 1. jj_3_84 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3344
	}
3345
3346
	private boolean jj_3_83() {
3347 1 1. jj_3_83 : negated conditional → NO_COVERAGE
		if (jj_scan_token(L))
3348 1 1. jj_3_83 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3349 1 1. jj_3_83 : negated conditional → NO_COVERAGE
		if (jj_3R_23())
3350 1 1. jj_3_83 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3351 1 1. jj_3_83 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3352
	}
3353
3354
	private boolean jj_3_73() {
3355 1 1. jj_3_73 : negated conditional → NO_COVERAGE
		if (jj_scan_token(REAL))
3356 1 1. jj_3_73 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3357 1 1. jj_3_73 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3358
	}
3359
3360
	private boolean jj_3_82() {
3361 1 1. jj_3_82 : negated conditional → NO_COVERAGE
		if (jj_scan_token(AP))
3362 1 1. jj_3_82 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3363 1 1. jj_3_82 : negated conditional → NO_COVERAGE
		if (jj_3R_21())
3364 1 1. jj_3_82 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3365 1 1. jj_3_82 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3366
	}
3367
3368
	private boolean jj_3_81() {
3369 1 1. jj_3_81 : negated conditional → NO_COVERAGE
		if (jj_scan_token(A))
3370 1 1. jj_3_81 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3371
		Token xsp;
3372
		xsp = jj_scanpos;
3373 1 1. jj_3_81 : negated conditional → NO_COVERAGE
		if (jj_3_75()) {
3374
			jj_scanpos = xsp;
3375 1 1. jj_3_81 : negated conditional → NO_COVERAGE
			if (jj_3_76())
3376 1 1. jj_3_81 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
				return true;
3377
		}
3378 1 1. jj_3_81 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3379
	}
3380
3381
	private boolean jj_3_80() {
3382 1 1. jj_3_80 : negated conditional → NO_COVERAGE
		if (jj_scan_token(S))
3383 1 1. jj_3_80 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3384 1 1. jj_3_80 : negated conditional → NO_COVERAGE
		if (jj_3R_21())
3385 1 1. jj_3_80 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3386 1 1. jj_3_80 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3387
	}
3388
3389
	private boolean jj_3_79() {
3390 1 1. jj_3_79 : negated conditional → NO_COVERAGE
		if (jj_scan_token(C))
3391 1 1. jj_3_79 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3392 1 1. jj_3_79 : negated conditional → NO_COVERAGE
		if (jj_3R_22())
3393 1 1. jj_3_79 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3394 1 1. jj_3_79 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3395
	}
3396
3397
	private boolean jj_3_78() {
3398 1 1. jj_3_78 : negated conditional → NO_COVERAGE
		if (jj_scan_token(W))
3399 1 1. jj_3_78 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3400 1 1. jj_3_78 : negated conditional → NO_COVERAGE
		if (jj_3R_21())
3401 1 1. jj_3_78 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3402 1 1. jj_3_78 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3403
	}
3404
3405
	private boolean jj_3_74() {
3406
		Token xsp;
3407
		xsp = jj_scanpos;
3408 1 1. jj_3_74 : negated conditional → NO_COVERAGE
		if (jj_3_77()) {
3409
			jj_scanpos = xsp;
3410 1 1. jj_3_74 : negated conditional → NO_COVERAGE
			if (jj_3_78()) {
3411
				jj_scanpos = xsp;
3412 1 1. jj_3_74 : negated conditional → NO_COVERAGE
				if (jj_3_79()) {
3413
					jj_scanpos = xsp;
3414 1 1. jj_3_74 : negated conditional → NO_COVERAGE
					if (jj_3_80()) {
3415
						jj_scanpos = xsp;
3416 1 1. jj_3_74 : negated conditional → NO_COVERAGE
						if (jj_3_81()) {
3417
							jj_scanpos = xsp;
3418 1 1. jj_3_74 : negated conditional → NO_COVERAGE
							if (jj_3_82()) {
3419
								jj_scanpos = xsp;
3420 1 1. jj_3_74 : negated conditional → NO_COVERAGE
								if (jj_3_83()) {
3421
									jj_scanpos = xsp;
3422 1 1. jj_3_74 : negated conditional → NO_COVERAGE
									if (jj_3_84()) {
3423
										jj_scanpos = xsp;
3424 1 1. jj_3_74 : negated conditional → NO_COVERAGE
										if (jj_3_85()) {
3425
											jj_scanpos = xsp;
3426 1 1. jj_3_74 : negated conditional → NO_COVERAGE
											if (jj_3_86()) {
3427
												jj_scanpos = xsp;
3428 1 1. jj_3_74 : negated conditional → NO_COVERAGE
												if (jj_3_87()) {
3429
													jj_scanpos = xsp;
3430 1 1. jj_3_74 : negated conditional → NO_COVERAGE
													if (jj_3_88()) {
3431
														jj_scanpos = xsp;
3432 1 1. jj_3_74 : negated conditional → NO_COVERAGE
														if (jj_3_89()) {
3433
															jj_scanpos = xsp;
3434 1 1. jj_3_74 : negated conditional → NO_COVERAGE
															if (jj_3_90()) {
3435
																jj_scanpos = xsp;
3436 1 1. jj_3_74 : negated conditional → NO_COVERAGE
																if (jj_3_91()) {
3437
																	jj_scanpos = xsp;
3438 1 1. jj_3_74 : negated conditional → NO_COVERAGE
																	if (jj_3_92()) {
3439
																		jj_scanpos = xsp;
3440 1 1. jj_3_74 : negated conditional → NO_COVERAGE
																		if (jj_3_93()) {
3441
																			jj_scanpos = xsp;
3442 1 1. jj_3_74 : negated conditional → NO_COVERAGE
																			if (jj_3_94()) {
3443
																				jj_scanpos = xsp;
3444 1 1. jj_3_74 : negated conditional → NO_COVERAGE
																				if (jj_3_95()) {
3445
																					jj_scanpos = xsp;
3446 1 1. jj_3_74 : negated conditional → NO_COVERAGE
																					if (jj_3_96())
3447 1 1. jj_3_74 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
																						return true;
3448
																				}
3449
																			}
3450
																		}
3451
																	}
3452
																}
3453
															}
3454
														}
3455
													}
3456
												}
3457
											}
3458
										}
3459
									}
3460
								}
3461
							}
3462
						}
3463
					}
3464
				}
3465
			}
3466
		}
3467 1 1. jj_3_74 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3468
	}
3469
3470
	private boolean jj_3_77() {
3471 1 1. jj_3_77 : negated conditional → NO_COVERAGE
		if (jj_scan_token(P))
3472 1 1. jj_3_77 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3473 1 1. jj_3_77 : negated conditional → NO_COVERAGE
		if (jj_3R_23())
3474 1 1. jj_3_77 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3475 1 1. jj_3_77 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3476
	}
3477
3478
	private boolean jj_3_72() {
3479 1 1. jj_3_72 : negated conditional → NO_COVERAGE
		if (jj_scan_token(INT))
3480 1 1. jj_3_72 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3481 1 1. jj_3_72 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3482
	}
3483
3484
	private boolean jj_3_100() {
3485
		Token xsp;
3486
		xsp = jj_scanpos;
3487 1 1. jj_3_100 : negated conditional → NO_COVERAGE
		if (jj_3_72()) {
3488
			jj_scanpos = xsp;
3489 1 1. jj_3_100 : negated conditional → NO_COVERAGE
			if (jj_3_73())
3490 1 1. jj_3_100 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
				return true;
3491
		}
3492
		while (true) {
3493
			xsp = jj_scanpos;
3494 1 1. jj_3_100 : negated conditional → NO_COVERAGE
			if (jj_3_74()) {
3495
				jj_scanpos = xsp;
3496
				break;
3497
			}
3498
		}
3499
		while (true) {
3500
			xsp = jj_scanpos;
3501 1 1. jj_3_100 : negated conditional → NO_COVERAGE
			if (jj_3_97()) {
3502
				jj_scanpos = xsp;
3503
				break;
3504
			}
3505
		}
3506 1 1. jj_3_100 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3507
	}
3508
3509
	private boolean jj_3R_25() {
3510 1 1. jj_3R_25 : negated conditional → NO_COVERAGE
		if (jj_scan_token(INT))
3511 1 1. jj_3R_25 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3512 1 1. jj_3R_25 : negated conditional → NO_COVERAGE
		if (jj_scan_token(INT))
3513 1 1. jj_3R_25 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3514 1 1. jj_3R_25 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3515
	}
3516
3517
	private boolean jj_3_51() {
3518 1 1. jj_3_51 : negated conditional → NO_COVERAGE
		if (jj_scan_token(REAL))
3519 1 1. jj_3_51 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3520 1 1. jj_3_51 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3521
	}
3522
3523
	private boolean jj_3_24() {
3524 1 1. jj_3_24 : negated conditional → NO_COVERAGE
		if (jj_scan_token(INT))
3525 1 1. jj_3_24 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3526 1 1. jj_3_24 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3527
	}
3528
3529
	private boolean jj_3_71() {
3530 1 1. jj_3_71 : negated conditional → NO_COVERAGE
		if (jj_scan_token(COMMENT))
3531 1 1. jj_3_71 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3532 1 1. jj_3_71 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3533
	}
3534
3535
	private boolean jj_3_23() {
3536 1 1. jj_3_23 : negated conditional → NO_COVERAGE
		if (jj_scan_token(REAL))
3537 1 1. jj_3_23 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3538 1 1. jj_3_23 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3539
	}
3540
3541
	private boolean jj_3_25() {
3542
		Token xsp;
3543
		xsp = jj_scanpos;
3544 1 1. jj_3_25 : negated conditional → NO_COVERAGE
		if (jj_3_23()) {
3545
			jj_scanpos = xsp;
3546 1 1. jj_3_25 : negated conditional → NO_COVERAGE
			if (jj_3_24())
3547 1 1. jj_3_25 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
				return true;
3548
		}
3549 1 1. jj_3_25 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3550
	}
3551
3552
	private boolean jj_3_70() {
3553 1 1. jj_3_70 : negated conditional → NO_COVERAGE
		if (jj_3R_28())
3554 1 1. jj_3_70 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3555 1 1. jj_3_70 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3556
	}
3557
3558
	private boolean jj_3_69() {
3559 1 1. jj_3_69 : negated conditional → NO_COVERAGE
		if (jj_scan_token(EDGESLIST))
3560 1 1. jj_3_69 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3561 1 1. jj_3_69 : negated conditional → NO_COVERAGE
		if (jj_3R_27())
3562 1 1. jj_3_69 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3563 1 1. jj_3_69 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3564
	}
3565
3566
	private boolean jj_3_68() {
3567 1 1. jj_3_68 : negated conditional → NO_COVERAGE
		if (jj_scan_token(ARCSLIST))
3568 1 1. jj_3_68 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3569 1 1. jj_3_68 : negated conditional → NO_COVERAGE
		if (jj_3R_27())
3570 1 1. jj_3_68 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3571 1 1. jj_3_68 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3572
	}
3573
3574
	private boolean jj_3_67() {
3575 1 1. jj_3_67 : negated conditional → NO_COVERAGE
		if (jj_scan_token(EDGES))
3576 1 1. jj_3_67 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3577 1 1. jj_3_67 : negated conditional → NO_COVERAGE
		if (jj_3R_27())
3578 1 1. jj_3_67 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3579 1 1. jj_3_67 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3580
	}
3581
3582
	private boolean jj_3_66() {
3583 1 1. jj_3_66 : negated conditional → NO_COVERAGE
		if (jj_scan_token(ARCS))
3584 1 1. jj_3_66 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3585 1 1. jj_3_66 : negated conditional → NO_COVERAGE
		if (jj_3R_27())
3586 1 1. jj_3_66 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3587 1 1. jj_3_66 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3588
	}
3589
3590
	private boolean jj_3R_19() {
3591
		Token xsp;
3592
		xsp = jj_scanpos;
3593 1 1. jj_3R_19 : negated conditional → NO_COVERAGE
		if (jj_3_66()) {
3594
			jj_scanpos = xsp;
3595 1 1. jj_3R_19 : negated conditional → NO_COVERAGE
			if (jj_3_67()) {
3596
				jj_scanpos = xsp;
3597 1 1. jj_3R_19 : negated conditional → NO_COVERAGE
				if (jj_3_68()) {
3598
					jj_scanpos = xsp;
3599 1 1. jj_3R_19 : negated conditional → NO_COVERAGE
					if (jj_3_69()) {
3600
						jj_scanpos = xsp;
3601 1 1. jj_3R_19 : negated conditional → NO_COVERAGE
						if (jj_3_70()) {
3602
							jj_scanpos = xsp;
3603 1 1. jj_3R_19 : negated conditional → NO_COVERAGE
							if (jj_3_71())
3604 1 1. jj_3R_19 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
								return true;
3605
						}
3606
					}
3607
				}
3608
			}
3609
		}
3610 1 1. jj_3R_19 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3611
	}
3612
3613
	private boolean jj_3_22() {
3614 1 1. jj_3_22 : negated conditional → NO_COVERAGE
		if (jj_scan_token(INT))
3615 1 1. jj_3_22 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3616 1 1. jj_3_22 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3617
	}
3618
3619
	private boolean jj_3_50() {
3620 1 1. jj_3_50 : negated conditional → NO_COVERAGE
		if (jj_3R_24())
3621 1 1. jj_3_50 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3622 1 1. jj_3_50 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3623
	}
3624
3625
	private boolean jj_3_49() {
3626
		Token xsp;
3627
		xsp = jj_scanpos;
3628 1 1. jj_3_49 : negated conditional → NO_COVERAGE
		if (jj_3_50()) {
3629
			jj_scanpos = xsp;
3630 1 1. jj_3_49 : negated conditional → NO_COVERAGE
			if (jj_3_51())
3631 1 1. jj_3_49 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
				return true;
3632
		}
3633 1 1. jj_3_49 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3634
	}
3635
3636
	private boolean jj_3_48() {
3637 1 1. jj_3_48 : negated conditional → NO_COVERAGE
		if (jj_scan_token(FONT))
3638 1 1. jj_3_48 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3639 1 1. jj_3_48 : negated conditional → NO_COVERAGE
		if (jj_3R_23())
3640 1 1. jj_3_48 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3641 1 1. jj_3_48 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3642
	}
3643
3644
	private boolean jj_3_47() {
3645 1 1. jj_3_47 : negated conditional → NO_COVERAGE
		if (jj_scan_token(FOS))
3646 1 1. jj_3_47 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3647 1 1. jj_3_47 : negated conditional → NO_COVERAGE
		if (jj_3R_21())
3648 1 1. jj_3_47 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3649 1 1. jj_3_47 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3650
	}
3651
3652
	private boolean jj_3_46() {
3653 1 1. jj_3_46 : negated conditional → NO_COVERAGE
		if (jj_scan_token(LPHI))
3654 1 1. jj_3_46 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3655 1 1. jj_3_46 : negated conditional → NO_COVERAGE
		if (jj_3R_21())
3656 1 1. jj_3_46 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3657 1 1. jj_3_46 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3658
	}
3659
3660
	private boolean jj_3_45() {
3661 1 1. jj_3_45 : negated conditional → NO_COVERAGE
		if (jj_scan_token(LR))
3662 1 1. jj_3_45 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3663 1 1. jj_3_45 : negated conditional → NO_COVERAGE
		if (jj_3R_21())
3664 1 1. jj_3_45 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3665 1 1. jj_3_45 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3666
	}
3667
3668
	private boolean jj_3_44() {
3669 1 1. jj_3_44 : negated conditional → NO_COVERAGE
		if (jj_scan_token(LA))
3670 1 1. jj_3_44 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3671 1 1. jj_3_44 : negated conditional → NO_COVERAGE
		if (jj_3R_21())
3672 1 1. jj_3_44 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3673 1 1. jj_3_44 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3674
	}
3675
3676
	private boolean jj_3_43() {
3677 1 1. jj_3_43 : negated conditional → NO_COVERAGE
		if (jj_scan_token(LC))
3678 1 1. jj_3_43 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3679 1 1. jj_3_43 : negated conditional → NO_COVERAGE
		if (jj_3R_22())
3680 1 1. jj_3_43 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3681 1 1. jj_3_43 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3682
	}
3683
3684
	private boolean jj_3_21() {
3685 1 1. jj_3_21 : negated conditional → NO_COVERAGE
		if (jj_scan_token(REAL))
3686 1 1. jj_3_21 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3687 1 1. jj_3_21 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3688
	}
3689
3690
	private boolean jj_3_42() {
3691 1 1. jj_3_42 : negated conditional → NO_COVERAGE
		if (jj_scan_token(BW))
3692 1 1. jj_3_42 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3693 1 1. jj_3_42 : negated conditional → NO_COVERAGE
		if (jj_3R_21())
3694 1 1. jj_3_42 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3695 1 1. jj_3_42 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3696
	}
3697
3698
	private boolean jj_3_41() {
3699 1 1. jj_3_41 : negated conditional → NO_COVERAGE
		if (jj_scan_token(BC))
3700 1 1. jj_3_41 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3701 1 1. jj_3_41 : negated conditional → NO_COVERAGE
		if (jj_3R_22())
3702 1 1. jj_3_41 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3703 1 1. jj_3_41 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3704
	}
3705
3706
	private boolean jj_3_40() {
3707 1 1. jj_3_40 : negated conditional → NO_COVERAGE
		if (jj_scan_token(IC))
3708 1 1. jj_3_40 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3709 1 1. jj_3_40 : negated conditional → NO_COVERAGE
		if (jj_3R_22())
3710 1 1. jj_3_40 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3711 1 1. jj_3_40 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3712
	}
3713
3714
	private boolean jj_3_39() {
3715 1 1. jj_3_39 : negated conditional → NO_COVERAGE
		if (jj_scan_token(Q))
3716 1 1. jj_3_39 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3717 1 1. jj_3_39 : negated conditional → NO_COVERAGE
		if (jj_3R_21())
3718 1 1. jj_3_39 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3719 1 1. jj_3_39 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3720
	}
3721
3722
	private boolean jj_3_38() {
3723 1 1. jj_3_38 : negated conditional → NO_COVERAGE
		if (jj_scan_token(R))
3724 1 1. jj_3_38 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3725 1 1. jj_3_38 : negated conditional → NO_COVERAGE
		if (jj_3R_21())
3726 1 1. jj_3_38 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3727 1 1. jj_3_38 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3728
	}
3729
3730
	private boolean jj_3_37() {
3731 1 1. jj_3_37 : negated conditional → NO_COVERAGE
		if (jj_scan_token(PHI))
3732 1 1. jj_3_37 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3733 1 1. jj_3_37 : negated conditional → NO_COVERAGE
		if (jj_3R_21())
3734 1 1. jj_3_37 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3735 1 1. jj_3_37 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3736
	}
3737
3738
	private boolean jj_3_36() {
3739 1 1. jj_3_36 : negated conditional → NO_COVERAGE
		if (jj_scan_token(YFACT))
3740 1 1. jj_3_36 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3741 1 1. jj_3_36 : negated conditional → NO_COVERAGE
		if (jj_3R_21())
3742 1 1. jj_3_36 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3743 1 1. jj_3_36 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3744
	}
3745
3746
	private boolean jj_3_35() {
3747 1 1. jj_3_35 : negated conditional → NO_COVERAGE
		if (jj_scan_token(XFACT))
3748 1 1. jj_3_35 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3749 1 1. jj_3_35 : negated conditional → NO_COVERAGE
		if (jj_3R_21())
3750 1 1. jj_3_35 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3751 1 1. jj_3_35 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3752
	}
3753
3754
	private boolean jj_3_33() {
3755
		Token xsp;
3756
		xsp = jj_scanpos;
3757 1 1. jj_3_33 : negated conditional → NO_COVERAGE
		if (jj_3_34()) {
3758
			jj_scanpos = xsp;
3759 1 1. jj_3_33 : negated conditional → NO_COVERAGE
			if (jj_3_35()) {
3760
				jj_scanpos = xsp;
3761 1 1. jj_3_33 : negated conditional → NO_COVERAGE
				if (jj_3_36()) {
3762
					jj_scanpos = xsp;
3763 1 1. jj_3_33 : negated conditional → NO_COVERAGE
					if (jj_3_37()) {
3764
						jj_scanpos = xsp;
3765 1 1. jj_3_33 : negated conditional → NO_COVERAGE
						if (jj_3_38()) {
3766
							jj_scanpos = xsp;
3767 1 1. jj_3_33 : negated conditional → NO_COVERAGE
							if (jj_3_39()) {
3768
								jj_scanpos = xsp;
3769 1 1. jj_3_33 : negated conditional → NO_COVERAGE
								if (jj_3_40()) {
3770
									jj_scanpos = xsp;
3771 1 1. jj_3_33 : negated conditional → NO_COVERAGE
									if (jj_3_41()) {
3772
										jj_scanpos = xsp;
3773 1 1. jj_3_33 : negated conditional → NO_COVERAGE
										if (jj_3_42()) {
3774
											jj_scanpos = xsp;
3775 1 1. jj_3_33 : negated conditional → NO_COVERAGE
											if (jj_3_43()) {
3776
												jj_scanpos = xsp;
3777 1 1. jj_3_33 : negated conditional → NO_COVERAGE
												if (jj_3_44()) {
3778
													jj_scanpos = xsp;
3779 1 1. jj_3_33 : negated conditional → NO_COVERAGE
													if (jj_3_45()) {
3780
														jj_scanpos = xsp;
3781 1 1. jj_3_33 : negated conditional → NO_COVERAGE
														if (jj_3_46()) {
3782
															jj_scanpos = xsp;
3783 1 1. jj_3_33 : negated conditional → NO_COVERAGE
															if (jj_3_47()) {
3784
																jj_scanpos = xsp;
3785 1 1. jj_3_33 : negated conditional → NO_COVERAGE
																if (jj_3_48())
3786 1 1. jj_3_33 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
																	return true;
3787
															}
3788
														}
3789
													}
3790
												}
3791
											}
3792
										}
3793
									}
3794
								}
3795
							}
3796
						}
3797
					}
3798
				}
3799
			}
3800
		}
3801 1 1. jj_3_33 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3802
	}
3803
3804
	private boolean jj_3_34() {
3805 1 1. jj_3_34 : negated conditional → NO_COVERAGE
		if (jj_scan_token(SIZE))
3806 1 1. jj_3_34 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3807 1 1. jj_3_34 : negated conditional → NO_COVERAGE
		if (jj_3R_21())
3808 1 1. jj_3_34 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3809 1 1. jj_3_34 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3810
	}
3811
3812
	private boolean jj_3_20() {
3813 1 1. jj_3_20 : negated conditional → NO_COVERAGE
		if (jj_scan_token(INT))
3814 1 1. jj_3_20 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3815 1 1. jj_3_20 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3816
	}
3817
3818
	private boolean jj_3_31() {
3819 1 1. jj_3_31 : negated conditional → NO_COVERAGE
		if (jj_scan_token(EMPTY))
3820 1 1. jj_3_31 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3821 1 1. jj_3_31 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3822
	}
3823
3824
	private boolean jj_3_30() {
3825 1 1. jj_3_30 : negated conditional → NO_COVERAGE
		if (jj_scan_token(DIAMOND))
3826 1 1. jj_3_30 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3827 1 1. jj_3_30 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3828
	}
3829
3830
	private boolean jj_3_29() {
3831 1 1. jj_3_29 : negated conditional → NO_COVERAGE
		if (jj_scan_token(CROSS))
3832 1 1. jj_3_29 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3833 1 1. jj_3_29 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3834
	}
3835
3836
	private boolean jj_3_28() {
3837 1 1. jj_3_28 : negated conditional → NO_COVERAGE
		if (jj_scan_token(TRIANGLE))
3838 1 1. jj_3_28 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3839 1 1. jj_3_28 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3840
	}
3841
3842
	private boolean jj_3_27() {
3843 1 1. jj_3_27 : negated conditional → NO_COVERAGE
		if (jj_scan_token(BOX))
3844 1 1. jj_3_27 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3845 1 1. jj_3_27 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3846
	}
3847
3848
	private boolean jj_3_26() {
3849 1 1. jj_3_26 : negated conditional → NO_COVERAGE
		if (jj_scan_token(ELLIPSE))
3850 1 1. jj_3_26 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3851 1 1. jj_3_26 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3852
	}
3853
3854
	private boolean jj_3_32() {
3855
		Token xsp;
3856
		xsp = jj_scanpos;
3857 1 1. jj_3_32 : negated conditional → NO_COVERAGE
		if (jj_3_26()) {
3858
			jj_scanpos = xsp;
3859 1 1. jj_3_32 : negated conditional → NO_COVERAGE
			if (jj_3_27()) {
3860
				jj_scanpos = xsp;
3861 1 1. jj_3_32 : negated conditional → NO_COVERAGE
				if (jj_3_28()) {
3862
					jj_scanpos = xsp;
3863 1 1. jj_3_32 : negated conditional → NO_COVERAGE
					if (jj_3_29()) {
3864
						jj_scanpos = xsp;
3865 1 1. jj_3_32 : negated conditional → NO_COVERAGE
						if (jj_3_30()) {
3866
							jj_scanpos = xsp;
3867 1 1. jj_3_32 : negated conditional → NO_COVERAGE
							if (jj_3_31())
3868 1 1. jj_3_32 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
								return true;
3869
						}
3870
					}
3871
				}
3872
			}
3873
		}
3874 1 1. jj_3_32 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3875
	}
3876
3877
	private boolean jj_3_19() {
3878 1 1. jj_3_19 : negated conditional → NO_COVERAGE
		if (jj_scan_token(REAL))
3879 1 1. jj_3_19 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3880 1 1. jj_3_19 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3881
	}
3882
3883
	private boolean jj_3_52() {
3884
		Token xsp;
3885
		xsp = jj_scanpos;
3886 1 1. jj_3_52 : negated conditional → NO_COVERAGE
		if (jj_3_19()) {
3887
			jj_scanpos = xsp;
3888 1 1. jj_3_52 : negated conditional → NO_COVERAGE
			if (jj_3_20())
3889 1 1. jj_3_52 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
				return true;
3890
		}
3891
		xsp = jj_scanpos;
3892 1 1. jj_3_52 : negated conditional → NO_COVERAGE
		if (jj_3_21()) {
3893
			jj_scanpos = xsp;
3894 1 1. jj_3_52 : negated conditional → NO_COVERAGE
			if (jj_3_22())
3895 1 1. jj_3_52 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
				return true;
3896
		}
3897 1 1. jj_3_52 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3898
	}
3899
3900
	private boolean jj_3_53() {
3901 1 1. jj_3_53 : negated conditional → NO_COVERAGE
		if (jj_3R_24())
3902 1 1. jj_3_53 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3903
		Token xsp;
3904
		xsp = jj_scanpos;
3905 1 1. jj_3_53 : negated conditional → NO_COVERAGE
		if (jj_3_52())
3906
			jj_scanpos = xsp;
3907 1 1. jj_3_53 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3908
	}
3909
3910
	private boolean jj_3R_20() {
3911 1 1. jj_3R_20 : negated conditional → NO_COVERAGE
		if (jj_scan_token(INT))
3912 1 1. jj_3R_20 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3913
		Token xsp;
3914
		xsp = jj_scanpos;
3915 1 1. jj_3R_20 : negated conditional → NO_COVERAGE
		if (jj_3_53())
3916
			jj_scanpos = xsp;
3917 1 1. jj_3R_20 : negated conditional → NO_COVERAGE
		if (jj_3R_27())
3918 1 1. jj_3R_20 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3919 1 1. jj_3R_20 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3920
	}
3921
3922
	private boolean jj_3_18() {
3923 1 1. jj_3_18 : negated conditional → NO_COVERAGE
		if (jj_scan_token(COMMENT))
3924 1 1. jj_3_18 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3925 1 1. jj_3_18 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3926
	}
3927
3928
	private boolean jj_3_17() {
3929 1 1. jj_3_17 : negated conditional → NO_COVERAGE
		if (jj_3R_20())
3930 1 1. jj_3_17 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3931 1 1. jj_3_17 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3932
	}
3933
3934
	private boolean jj_3_16() {
3935
		Token xsp;
3936
		xsp = jj_scanpos;
3937 1 1. jj_3_16 : negated conditional → NO_COVERAGE
		if (jj_3_17()) {
3938
			jj_scanpos = xsp;
3939 1 1. jj_3_16 : negated conditional → NO_COVERAGE
			if (jj_3_18())
3940 1 1. jj_3_16 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
				return true;
3941
		}
3942 1 1. jj_3_16 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3943
	}
3944
3945
	private boolean jj_3R_18() {
3946 1 1. jj_3R_18 : negated conditional → NO_COVERAGE
		if (jj_scan_token(VERTICES))
3947 1 1. jj_3R_18 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3948 1 1. jj_3R_18 : negated conditional → NO_COVERAGE
		if (jj_scan_token(INT))
3949 1 1. jj_3R_18 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3950 1 1. jj_3R_18 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3951
	}
3952
3953
	private boolean jj_3_15() {
3954 1 1. jj_3_15 : negated conditional → NO_COVERAGE
		if (jj_scan_token(KEY))
3955 1 1. jj_3_15 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3956 1 1. jj_3_15 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3957
	}
3958
3959
	private boolean jj_3_14() {
3960 1 1. jj_3_14 : negated conditional → NO_COVERAGE
		if (jj_scan_token(STRING))
3961 1 1. jj_3_14 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3962 1 1. jj_3_14 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3963
	}
3964
3965
	private boolean jj_3_13() {
3966
		Token xsp;
3967
		xsp = jj_scanpos;
3968 1 1. jj_3_13 : negated conditional → NO_COVERAGE
		if (jj_3_14()) {
3969
			jj_scanpos = xsp;
3970 1 1. jj_3_13 : negated conditional → NO_COVERAGE
			if (jj_3_15())
3971 1 1. jj_3_13 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
				return true;
3972
		}
3973 1 1. jj_3_13 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3974
	}
3975
3976
	private boolean jj_3R_17() {
3977 1 1. jj_3R_17 : negated conditional → NO_COVERAGE
		if (jj_scan_token(NETWORK))
3978 1 1. jj_3R_17 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3979
		Token xsp;
3980
		while (true) {
3981
			xsp = jj_scanpos;
3982 1 1. jj_3R_17 : negated conditional → NO_COVERAGE
			if (jj_3_13()) {
3983
				jj_scanpos = xsp;
3984
				break;
3985
			}
3986
		}
3987 1 1. jj_3R_17 : negated conditional → NO_COVERAGE
		if (jj_3R_27())
3988 1 1. jj_3R_17 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3989 1 1. jj_3R_17 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3990
	}
3991
3992
	private boolean jj_3_12() {
3993 1 1. jj_3_12 : negated conditional → NO_COVERAGE
		if (jj_scan_token(0))
3994 1 1. jj_3_12 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
3995 1 1. jj_3_12 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
3996
	}
3997
3998
	private boolean jj_3_11() {
3999 1 1. jj_3_11 : negated conditional → NO_COVERAGE
		if (jj_scan_token(EOL))
4000 1 1. jj_3_11 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4001 1 1. jj_3_11 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4002
	}
4003
4004
	private boolean jj_3_10() {
4005 1 1. jj_3_10 : negated conditional → NO_COVERAGE
		if (jj_scan_token(COMMENT))
4006 1 1. jj_3_10 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4007 1 1. jj_3_10 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4008
	}
4009
4010
	private boolean jj_3_9() {
4011 1 1. jj_3_9 : negated conditional → NO_COVERAGE
		if (jj_3R_19())
4012 1 1. jj_3_9 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4013 1 1. jj_3_9 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4014
	}
4015
4016
	private boolean jj_3_8() {
4017 1 1. jj_3_8 : negated conditional → NO_COVERAGE
		if (jj_3R_18())
4018 1 1. jj_3_8 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4019 1 1. jj_3_8 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4020
	}
4021
4022
	private boolean jj_3_7() {
4023 1 1. jj_3_7 : negated conditional → NO_COVERAGE
		if (jj_3R_17())
4024 1 1. jj_3_7 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4025 1 1. jj_3_7 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4026
	}
4027
4028
	private boolean jj_3_5() {
4029 1 1. jj_3_5 : negated conditional → NO_COVERAGE
		if (jj_scan_token(EOL))
4030 1 1. jj_3_5 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4031 1 1. jj_3_5 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4032
	}
4033
4034
	private boolean jj_3_4() {
4035 1 1. jj_3_4 : negated conditional → NO_COVERAGE
		if (jj_scan_token(COMMENT))
4036 1 1. jj_3_4 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4037 1 1. jj_3_4 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4038
	}
4039
4040
	private boolean jj_3_3() {
4041 1 1. jj_3_3 : negated conditional → NO_COVERAGE
		if (jj_3R_19())
4042 1 1. jj_3_3 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4043 1 1. jj_3_3 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4044
	}
4045
4046
	private boolean jj_3_2() {
4047 1 1. jj_3_2 : negated conditional → NO_COVERAGE
		if (jj_3R_18())
4048 1 1. jj_3_2 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4049 1 1. jj_3_2 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4050
	}
4051
4052
	private boolean jj_3_1() {
4053 1 1. jj_3_1 : negated conditional → NO_COVERAGE
		if (jj_3R_17())
4054 1 1. jj_3_1 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4055 1 1. jj_3_1 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4056
	}
4057
4058
	private boolean jj_3_6() {
4059
		Token xsp;
4060
		xsp = jj_scanpos;
4061 1 1. jj_3_6 : negated conditional → NO_COVERAGE
		if (jj_3_1()) {
4062
			jj_scanpos = xsp;
4063 1 1. jj_3_6 : negated conditional → NO_COVERAGE
			if (jj_3_2()) {
4064
				jj_scanpos = xsp;
4065 1 1. jj_3_6 : negated conditional → NO_COVERAGE
				if (jj_3_3()) {
4066
					jj_scanpos = xsp;
4067 1 1. jj_3_6 : negated conditional → NO_COVERAGE
					if (jj_3_4()) {
4068
						jj_scanpos = xsp;
4069 1 1. jj_3_6 : negated conditional → NO_COVERAGE
						if (jj_3_5())
4070 1 1. jj_3_6 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
							return true;
4071
					}
4072
				}
4073
			}
4074
		}
4075 1 1. jj_3_6 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4076
	}
4077
4078
	private boolean jj_3_182() {
4079 1 1. jj_3_182 : negated conditional → NO_COVERAGE
		if (jj_scan_token(YFACT))
4080 1 1. jj_3_182 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4081 1 1. jj_3_182 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4082
	}
4083
4084
	private boolean jj_3_181() {
4085 1 1. jj_3_181 : negated conditional → NO_COVERAGE
		if (jj_scan_token(XFACT))
4086 1 1. jj_3_181 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4087 1 1. jj_3_181 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4088
	}
4089
4090
	private boolean jj_3_180() {
4091 1 1. jj_3_180 : negated conditional → NO_COVERAGE
		if (jj_scan_token(W))
4092 1 1. jj_3_180 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4093 1 1. jj_3_180 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4094
	}
4095
4096
	private boolean jj_3_179() {
4097 1 1. jj_3_179 : negated conditional → NO_COVERAGE
		if (jj_scan_token(SIZE))
4098 1 1. jj_3_179 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4099 1 1. jj_3_179 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4100
	}
4101
4102
	private boolean jj_3_178() {
4103 1 1. jj_3_178 : negated conditional → NO_COVERAGE
		if (jj_scan_token(S))
4104 1 1. jj_3_178 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4105 1 1. jj_3_178 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4106
	}
4107
4108
	private boolean jj_3_177() {
4109 1 1. jj_3_177 : negated conditional → NO_COVERAGE
		if (jj_scan_token(R))
4110 1 1. jj_3_177 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4111 1 1. jj_3_177 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4112
	}
4113
4114
	private boolean jj_3_176() {
4115 1 1. jj_3_176 : negated conditional → NO_COVERAGE
		if (jj_scan_token(Q))
4116 1 1. jj_3_176 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4117 1 1. jj_3_176 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4118
	}
4119
4120
	private boolean jj_3_175() {
4121 1 1. jj_3_175 : negated conditional → NO_COVERAGE
		if (jj_scan_token(PHI))
4122 1 1. jj_3_175 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4123 1 1. jj_3_175 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4124
	}
4125
4126
	private boolean jj_3_174() {
4127 1 1. jj_3_174 : negated conditional → NO_COVERAGE
		if (jj_scan_token(P))
4128 1 1. jj_3_174 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4129 1 1. jj_3_174 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4130
	}
4131
4132
	private boolean jj_3_173() {
4133 1 1. jj_3_173 : negated conditional → NO_COVERAGE
		if (jj_scan_token(LR))
4134 1 1. jj_3_173 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4135 1 1. jj_3_173 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4136
	}
4137
4138
	private boolean jj_3_172() {
4139 1 1. jj_3_172 : negated conditional → NO_COVERAGE
		if (jj_scan_token(LPHI))
4140 1 1. jj_3_172 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4141 1 1. jj_3_172 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4142
	}
4143
4144
	private boolean jj_3_171() {
4145 1 1. jj_3_171 : negated conditional → NO_COVERAGE
		if (jj_scan_token(LP))
4146 1 1. jj_3_171 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4147 1 1. jj_3_171 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4148
	}
4149
4150
	private boolean jj_3_170() {
4151 1 1. jj_3_170 : negated conditional → NO_COVERAGE
		if (jj_scan_token(LC))
4152 1 1. jj_3_170 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4153 1 1. jj_3_170 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4154
	}
4155
4156
	private boolean jj_3_169() {
4157 1 1. jj_3_169 : negated conditional → NO_COVERAGE
		if (jj_scan_token(LA))
4158 1 1. jj_3_169 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4159 1 1. jj_3_169 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4160
	}
4161
4162
	private boolean jj_3_168() {
4163 1 1. jj_3_168 : negated conditional → NO_COVERAGE
		if (jj_scan_token(L))
4164 1 1. jj_3_168 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4165 1 1. jj_3_168 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4166
	}
4167
4168
	private boolean jj_3_167() {
4169 1 1. jj_3_167 : negated conditional → NO_COVERAGE
		if (jj_scan_token(K2))
4170 1 1. jj_3_167 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4171 1 1. jj_3_167 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4172
	}
4173
4174
	private boolean jj_3_166() {
4175 1 1. jj_3_166 : negated conditional → NO_COVERAGE
		if (jj_scan_token(K1))
4176 1 1. jj_3_166 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4177 1 1. jj_3_166 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4178
	}
4179
4180
	private boolean jj_3_165() {
4181 1 1. jj_3_165 : negated conditional → NO_COVERAGE
		if (jj_scan_token(IC))
4182 1 1. jj_3_165 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4183 1 1. jj_3_165 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4184
	}
4185
4186
	private boolean jj_3_164() {
4187 1 1. jj_3_164 : negated conditional → NO_COVERAGE
		if (jj_scan_token(H2))
4188 1 1. jj_3_164 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4189 1 1. jj_3_164 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4190
	}
4191
4192
	private boolean jj_3_163() {
4193 1 1. jj_3_163 : negated conditional → NO_COVERAGE
		if (jj_scan_token(H1))
4194 1 1. jj_3_163 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4195 1 1. jj_3_163 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4196
	}
4197
4198
	private boolean jj_3_162() {
4199 1 1. jj_3_162 : negated conditional → NO_COVERAGE
		if (jj_scan_token(FOS))
4200 1 1. jj_3_162 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4201 1 1. jj_3_162 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4202
	}
4203
4204
	private boolean jj_3_161() {
4205 1 1. jj_3_161 : negated conditional → NO_COVERAGE
		if (jj_scan_token(FONT))
4206 1 1. jj_3_161 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4207 1 1. jj_3_161 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4208
	}
4209
4210
	private boolean jj_3_160() {
4211 1 1. jj_3_160 : negated conditional → NO_COVERAGE
		if (jj_scan_token(C))
4212 1 1. jj_3_160 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4213 1 1. jj_3_160 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4214
	}
4215
4216
	private boolean jj_3_159() {
4217 1 1. jj_3_159 : negated conditional → NO_COVERAGE
		if (jj_scan_token(BW))
4218 1 1. jj_3_159 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4219 1 1. jj_3_159 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4220
	}
4221
4222
	private boolean jj_3_158() {
4223 1 1. jj_3_158 : negated conditional → NO_COVERAGE
		if (jj_scan_token(BC))
4224 1 1. jj_3_158 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4225 1 1. jj_3_158 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4226
	}
4227
4228
	private boolean jj_3_157() {
4229 1 1. jj_3_157 : negated conditional → NO_COVERAGE
		if (jj_scan_token(B))
4230 1 1. jj_3_157 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4231 1 1. jj_3_157 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4232
	}
4233
4234
	private boolean jj_3_156() {
4235 1 1. jj_3_156 : negated conditional → NO_COVERAGE
		if (jj_scan_token(AP))
4236 1 1. jj_3_156 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4237 1 1. jj_3_156 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4238
	}
4239
4240
	private boolean jj_3_155() {
4241 1 1. jj_3_155 : negated conditional → NO_COVERAGE
		if (jj_scan_token(A2))
4242 1 1. jj_3_155 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4243 1 1. jj_3_155 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4244
	}
4245
4246
	private boolean jj_3_154() {
4247 1 1. jj_3_154 : negated conditional → NO_COVERAGE
		if (jj_scan_token(A1))
4248 1 1. jj_3_154 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4249 1 1. jj_3_154 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4250
	}
4251
4252
	private boolean jj_3_153() {
4253 1 1. jj_3_153 : negated conditional → NO_COVERAGE
		if (jj_scan_token(A))
4254 1 1. jj_3_153 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4255 1 1. jj_3_153 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4256
	}
4257
4258
	private boolean jj_3_152() {
4259 1 1. jj_3_152 : negated conditional → NO_COVERAGE
		if (jj_scan_token(INT))
4260 1 1. jj_3_152 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4261 1 1. jj_3_152 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4262
	}
4263
4264
	private boolean jj_3_151() {
4265 1 1. jj_3_151 : negated conditional → NO_COVERAGE
		if (jj_scan_token(STRING))
4266 1 1. jj_3_151 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4267 1 1. jj_3_151 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4268
	}
4269
4270
	private boolean jj_3_150() {
4271 1 1. jj_3_150 : negated conditional → NO_COVERAGE
		if (jj_scan_token(KEY))
4272 1 1. jj_3_150 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4273 1 1. jj_3_150 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4274
	}
4275
4276
	private boolean jj_3R_24() {
4277
		Token xsp;
4278
		xsp = jj_scanpos;
4279 1 1. jj_3R_24 : negated conditional → NO_COVERAGE
		if (jj_3_150()) {
4280
			jj_scanpos = xsp;
4281 1 1. jj_3R_24 : negated conditional → NO_COVERAGE
			if (jj_3_151()) {
4282
				jj_scanpos = xsp;
4283 1 1. jj_3R_24 : negated conditional → NO_COVERAGE
				if (jj_3_152()) {
4284
					jj_scanpos = xsp;
4285 1 1. jj_3R_24 : negated conditional → NO_COVERAGE
					if (jj_3_153()) {
4286
						jj_scanpos = xsp;
4287 1 1. jj_3R_24 : negated conditional → NO_COVERAGE
						if (jj_3_154()) {
4288
							jj_scanpos = xsp;
4289 1 1. jj_3R_24 : negated conditional → NO_COVERAGE
							if (jj_3_155()) {
4290
								jj_scanpos = xsp;
4291 1 1. jj_3R_24 : negated conditional → NO_COVERAGE
								if (jj_3_156()) {
4292
									jj_scanpos = xsp;
4293 1 1. jj_3R_24 : negated conditional → NO_COVERAGE
									if (jj_3_157()) {
4294
										jj_scanpos = xsp;
4295 1 1. jj_3R_24 : negated conditional → NO_COVERAGE
										if (jj_3_158()) {
4296
											jj_scanpos = xsp;
4297 1 1. jj_3R_24 : negated conditional → NO_COVERAGE
											if (jj_3_159()) {
4298
												jj_scanpos = xsp;
4299 1 1. jj_3R_24 : negated conditional → NO_COVERAGE
												if (jj_3_160()) {
4300
													jj_scanpos = xsp;
4301 1 1. jj_3R_24 : negated conditional → NO_COVERAGE
													if (jj_3_161()) {
4302
														jj_scanpos = xsp;
4303 1 1. jj_3R_24 : negated conditional → NO_COVERAGE
														if (jj_3_162()) {
4304
															jj_scanpos = xsp;
4305 1 1. jj_3R_24 : negated conditional → NO_COVERAGE
															if (jj_3_163()) {
4306
																jj_scanpos = xsp;
4307 1 1. jj_3R_24 : negated conditional → NO_COVERAGE
																if (jj_3_164()) {
4308
																	jj_scanpos = xsp;
4309 1 1. jj_3R_24 : negated conditional → NO_COVERAGE
																	if (jj_3_165()) {
4310
																		jj_scanpos = xsp;
4311 1 1. jj_3R_24 : negated conditional → NO_COVERAGE
																		if (jj_3_166()) {
4312
																			jj_scanpos = xsp;
4313 1 1. jj_3R_24 : negated conditional → NO_COVERAGE
																			if (jj_3_167()) {
4314
																				jj_scanpos = xsp;
4315 1 1. jj_3R_24 : negated conditional → NO_COVERAGE
																				if (jj_3_168()) {
4316
																					jj_scanpos = xsp;
4317 1 1. jj_3R_24 : negated conditional → NO_COVERAGE
																					if (jj_3_169()) {
4318
																						jj_scanpos = xsp;
4319 1 1. jj_3R_24 : negated conditional → NO_COVERAGE
																						if (jj_3_170()) {
4320
																							jj_scanpos = xsp;
4321 1 1. jj_3R_24 : negated conditional → NO_COVERAGE
																							if (jj_3_171()) {
4322
																								jj_scanpos = xsp;
4323 1 1. jj_3R_24 : negated conditional → NO_COVERAGE
																								if (jj_3_172()) {
4324
																									jj_scanpos = xsp;
4325 1 1. jj_3R_24 : negated conditional → NO_COVERAGE
																									if (jj_3_173()) {
4326
																										jj_scanpos = xsp;
4327 1 1. jj_3R_24 : negated conditional → NO_COVERAGE
																										if (jj_3_174()) {
4328
																											jj_scanpos = xsp;
4329 1 1. jj_3R_24 : negated conditional → NO_COVERAGE
																											if (jj_3_175()) {
4330
																												jj_scanpos = xsp;
4331 1 1. jj_3R_24 : negated conditional → NO_COVERAGE
																												if (jj_3_176()) {
4332
																													jj_scanpos = xsp;
4333 1 1. jj_3R_24 : negated conditional → NO_COVERAGE
																													if (jj_3_177()) {
4334
																														jj_scanpos = xsp;
4335 1 1. jj_3R_24 : negated conditional → NO_COVERAGE
																														if (jj_3_178()) {
4336
																															jj_scanpos = xsp;
4337 1 1. jj_3R_24 : negated conditional → NO_COVERAGE
																															if (jj_3_179()) {
4338
																																jj_scanpos = xsp;
4339 1 1. jj_3R_24 : negated conditional → NO_COVERAGE
																																if (jj_3_180()) {
4340
																																	jj_scanpos = xsp;
4341 1 1. jj_3R_24 : negated conditional → NO_COVERAGE
																																	if (jj_3_181()) {
4342
																																		jj_scanpos = xsp;
4343 1 1. jj_3R_24 : negated conditional → NO_COVERAGE
																																		if (jj_3_182())
4344 1 1. jj_3R_24 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
																																			return true;
4345
																																	}
4346
																																}
4347
																															}
4348
																														}
4349
																													}
4350
																												}
4351
																											}
4352
																										}
4353
																									}
4354
																								}
4355
																							}
4356
																						}
4357
																					}
4358
																				}
4359
																			}
4360
																		}
4361
																	}
4362
																}
4363
															}
4364
														}
4365
													}
4366
												}
4367
											}
4368
										}
4369
									}
4370
								}
4371
							}
4372
						}
4373
					}
4374
				}
4375
			}
4376
		}
4377 1 1. jj_3R_24 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4378
	}
4379
4380
	private boolean jj_3_149() {
4381 1 1. jj_3_149 : negated conditional → NO_COVERAGE
		if (jj_scan_token(A2))
4382 1 1. jj_3_149 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4383 1 1. jj_3_149 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4384
	}
4385
4386
	private boolean jj_3_148() {
4387 1 1. jj_3_148 : negated conditional → NO_COVERAGE
		if (jj_scan_token(A1))
4388 1 1. jj_3_148 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4389 1 1. jj_3_148 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4390
	}
4391
4392
	private boolean jj_3_147() {
4393 1 1. jj_3_147 : negated conditional → NO_COVERAGE
		if (jj_scan_token(K2))
4394 1 1. jj_3_147 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4395 1 1. jj_3_147 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4396
	}
4397
4398
	private boolean jj_3_146() {
4399 1 1. jj_3_146 : negated conditional → NO_COVERAGE
		if (jj_scan_token(K1))
4400 1 1. jj_3_146 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4401 1 1. jj_3_146 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4402
	}
4403
4404
	private boolean jj_3_145() {
4405 1 1. jj_3_145 : negated conditional → NO_COVERAGE
		if (jj_scan_token(H2))
4406 1 1. jj_3_145 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4407 1 1. jj_3_145 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4408
	}
4409
4410
	private boolean jj_3_144() {
4411 1 1. jj_3_144 : negated conditional → NO_COVERAGE
		if (jj_scan_token(H1))
4412 1 1. jj_3_144 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4413 1 1. jj_3_144 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4414
	}
4415
4416
	private boolean jj_3_143() {
4417 1 1. jj_3_143 : negated conditional → NO_COVERAGE
		if (jj_scan_token(LP))
4418 1 1. jj_3_143 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4419 1 1. jj_3_143 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4420
	}
4421
4422
	private boolean jj_3_142() {
4423 1 1. jj_3_142 : negated conditional → NO_COVERAGE
		if (jj_scan_token(L))
4424 1 1. jj_3_142 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4425 1 1. jj_3_142 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4426
	}
4427
4428
	private boolean jj_3_141() {
4429 1 1. jj_3_141 : negated conditional → NO_COVERAGE
		if (jj_scan_token(AP))
4430 1 1. jj_3_141 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4431 1 1. jj_3_141 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4432
	}
4433
4434
	private boolean jj_3_140() {
4435 1 1. jj_3_140 : negated conditional → NO_COVERAGE
		if (jj_scan_token(B))
4436 1 1. jj_3_140 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4437 1 1. jj_3_140 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4438
	}
4439
4440
	private boolean jj_3_139() {
4441 1 1. jj_3_139 : negated conditional → NO_COVERAGE
		if (jj_scan_token(A))
4442 1 1. jj_3_139 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4443 1 1. jj_3_139 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4444
	}
4445
4446
	private boolean jj_3_138() {
4447 1 1. jj_3_138 : negated conditional → NO_COVERAGE
		if (jj_scan_token(W))
4448 1 1. jj_3_138 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4449 1 1. jj_3_138 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4450
	}
4451
4452
	private boolean jj_3_137() {
4453 1 1. jj_3_137 : negated conditional → NO_COVERAGE
		if (jj_scan_token(P))
4454 1 1. jj_3_137 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4455 1 1. jj_3_137 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4456
	}
4457
4458
	private boolean jj_3_136() {
4459 1 1. jj_3_136 : negated conditional → NO_COVERAGE
		if (jj_scan_token(C))
4460 1 1. jj_3_136 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4461 1 1. jj_3_136 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4462
	}
4463
4464
	private boolean jj_3_135() {
4465 1 1. jj_3_135 : negated conditional → NO_COVERAGE
		if (jj_scan_token(FONT))
4466 1 1. jj_3_135 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4467 1 1. jj_3_135 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4468
	}
4469
4470
	private boolean jj_3_134() {
4471 1 1. jj_3_134 : negated conditional → NO_COVERAGE
		if (jj_scan_token(FOS))
4472 1 1. jj_3_134 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4473 1 1. jj_3_134 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4474
	}
4475
4476
	private boolean jj_3_133() {
4477 1 1. jj_3_133 : negated conditional → NO_COVERAGE
		if (jj_scan_token(LPHI))
4478 1 1. jj_3_133 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4479 1 1. jj_3_133 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4480
	}
4481
4482
	private boolean jj_3_132() {
4483 1 1. jj_3_132 : negated conditional → NO_COVERAGE
		if (jj_scan_token(LR))
4484 1 1. jj_3_132 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4485 1 1. jj_3_132 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4486
	}
4487
4488
	private boolean jj_3_131() {
4489 1 1. jj_3_131 : negated conditional → NO_COVERAGE
		if (jj_scan_token(LA))
4490 1 1. jj_3_131 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4491 1 1. jj_3_131 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4492
	}
4493
4494
	private boolean jj_3_130() {
4495 1 1. jj_3_130 : negated conditional → NO_COVERAGE
		if (jj_scan_token(LC))
4496 1 1. jj_3_130 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4497 1 1. jj_3_130 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4498
	}
4499
4500
	private boolean jj_3_129() {
4501 1 1. jj_3_129 : negated conditional → NO_COVERAGE
		if (jj_scan_token(BW))
4502 1 1. jj_3_129 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4503 1 1. jj_3_129 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4504
	}
4505
4506
	private boolean jj_3_128() {
4507 1 1. jj_3_128 : negated conditional → NO_COVERAGE
		if (jj_scan_token(BC))
4508 1 1. jj_3_128 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4509 1 1. jj_3_128 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4510
	}
4511
4512
	private boolean jj_3_127() {
4513 1 1. jj_3_127 : negated conditional → NO_COVERAGE
		if (jj_scan_token(IC))
4514 1 1. jj_3_127 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4515 1 1. jj_3_127 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4516
	}
4517
4518
	private boolean jj_3_126() {
4519 1 1. jj_3_126 : negated conditional → NO_COVERAGE
		if (jj_scan_token(Q))
4520 1 1. jj_3_126 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4521 1 1. jj_3_126 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4522
	}
4523
4524
	private boolean jj_3_125() {
4525 1 1. jj_3_125 : negated conditional → NO_COVERAGE
		if (jj_scan_token(R))
4526 1 1. jj_3_125 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4527 1 1. jj_3_125 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4528
	}
4529
4530
	private boolean jj_3_124() {
4531 1 1. jj_3_124 : negated conditional → NO_COVERAGE
		if (jj_scan_token(PHI))
4532 1 1. jj_3_124 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4533 1 1. jj_3_124 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4534
	}
4535
4536
	private boolean jj_3_123() {
4537 1 1. jj_3_123 : negated conditional → NO_COVERAGE
		if (jj_scan_token(YFACT))
4538 1 1. jj_3_123 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4539 1 1. jj_3_123 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4540
	}
4541
4542
	private boolean jj_3_122() {
4543 1 1. jj_3_122 : negated conditional → NO_COVERAGE
		if (jj_scan_token(XFACT))
4544 1 1. jj_3_122 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4545 1 1. jj_3_122 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4546
	}
4547
4548
	private boolean jj_3_121() {
4549 1 1. jj_3_121 : negated conditional → NO_COVERAGE
		if (jj_scan_token(SIZE))
4550 1 1. jj_3_121 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4551 1 1. jj_3_121 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4552
	}
4553
4554
	private boolean jj_3_120() {
4555 1 1. jj_3_120 : negated conditional → NO_COVERAGE
		if (jj_scan_token(STRING))
4556 1 1. jj_3_120 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4557 1 1. jj_3_120 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4558
	}
4559
4560
	private boolean jj_3_119() {
4561 1 1. jj_3_119 : negated conditional → NO_COVERAGE
		if (jj_scan_token(KEY))
4562 1 1. jj_3_119 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4563 1 1. jj_3_119 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4564
	}
4565
4566
	private boolean jj_3_118() {
4567 1 1. jj_3_118 : negated conditional → NO_COVERAGE
		if (jj_scan_token(REAL))
4568 1 1. jj_3_118 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4569 1 1. jj_3_118 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4570
	}
4571
4572
	private boolean jj_3_117() {
4573 1 1. jj_3_117 : negated conditional → NO_COVERAGE
		if (jj_scan_token(INT))
4574 1 1. jj_3_117 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4575 1 1. jj_3_117 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4576
	}
4577
4578
	private boolean jj_3_114() {
4579 1 1. jj_3_114 : negated conditional → NO_COVERAGE
		if (jj_scan_token(EOL))
4580 1 1. jj_3_114 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4581 1 1. jj_3_114 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4582
	}
4583
4584
	private boolean jj_3_116() {
4585 1 1. jj_3_116 : negated conditional → NO_COVERAGE
		if (jj_scan_token(0))
4586 1 1. jj_3_116 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4587 1 1. jj_3_116 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4588
	}
4589
4590
	private boolean jj_3_115() {
4591
		Token xsp;
4592 1 1. jj_3_115 : negated conditional → NO_COVERAGE
		if (jj_3_114())
4593 1 1. jj_3_115 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4594
		while (true) {
4595
			xsp = jj_scanpos;
4596 1 1. jj_3_115 : negated conditional → NO_COVERAGE
			if (jj_3_114()) {
4597
				jj_scanpos = xsp;
4598
				break;
4599
			}
4600
		}
4601 1 1. jj_3_115 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4602
	}
4603
4604
	private boolean jj_3R_27() {
4605
		Token xsp;
4606
		xsp = jj_scanpos;
4607 1 1. jj_3R_27 : negated conditional → NO_COVERAGE
		if (jj_3_115()) {
4608
			jj_scanpos = xsp;
4609 1 1. jj_3R_27 : negated conditional → NO_COVERAGE
			if (jj_3_116())
4610 1 1. jj_3R_27 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
				return true;
4611
		}
4612 1 1. jj_3R_27 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4613
	}
4614
4615
	private boolean jj_3_104() {
4616 1 1. jj_3_104 : negated conditional → NO_COVERAGE
		if (jj_scan_token(COMMENT))
4617 1 1. jj_3_104 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4618 1 1. jj_3_104 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4619
	}
4620
4621
	private boolean jj_3_113() {
4622 1 1. jj_3_113 : negated conditional → NO_COVERAGE
		if (jj_scan_token(INT))
4623 1 1. jj_3_113 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4624 1 1. jj_3_113 : negated conditional → NO_COVERAGE
		if (jj_scan_token(INT))
4625 1 1. jj_3_113 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4626 1 1. jj_3_113 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4627
	}
4628
4629
	private boolean jj_3_110() {
4630 1 1. jj_3_110 : negated conditional → NO_COVERAGE
		if (jj_scan_token(REAL))
4631 1 1. jj_3_110 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4632 1 1. jj_3_110 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4633
	}
4634
4635
	private boolean jj_3_112() {
4636 1 1. jj_3_112 : negated conditional → NO_COVERAGE
		if (jj_scan_token(REAL))
4637 1 1. jj_3_112 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4638 1 1. jj_3_112 : negated conditional → NO_COVERAGE
		if (jj_scan_token(REAL))
4639 1 1. jj_3_112 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4640 1 1. jj_3_112 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4641
	}
4642
4643
	private boolean jj_3_111() {
4644 1 1. jj_3_111 : negated conditional → NO_COVERAGE
		if (jj_3R_23())
4645 1 1. jj_3_111 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4646 1 1. jj_3_111 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4647
	}
4648
4649
	private boolean jj_3R_22() {
4650
		Token xsp;
4651
		xsp = jj_scanpos;
4652 1 1. jj_3R_22 : negated conditional → NO_COVERAGE
		if (jj_3_111()) {
4653
			jj_scanpos = xsp;
4654 1 1. jj_3R_22 : negated conditional → NO_COVERAGE
			if (jj_3_112()) {
4655
				jj_scanpos = xsp;
4656 1 1. jj_3R_22 : negated conditional → NO_COVERAGE
				if (jj_3_113())
4657 1 1. jj_3R_22 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
					return true;
4658
			}
4659
		}
4660 1 1. jj_3R_22 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4661
	}
4662
4663
	private boolean jj_3_109() {
4664 1 1. jj_3_109 : negated conditional → NO_COVERAGE
		if (jj_scan_token(INT))
4665 1 1. jj_3_109 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4666 1 1. jj_3_109 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4667
	}
4668
4669
	private boolean jj_3R_21() {
4670
		Token xsp;
4671
		xsp = jj_scanpos;
4672 1 1. jj_3R_21 : negated conditional → NO_COVERAGE
		if (jj_3_109()) {
4673
			jj_scanpos = xsp;
4674 1 1. jj_3R_21 : negated conditional → NO_COVERAGE
			if (jj_3_110())
4675 1 1. jj_3R_21 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
				return true;
4676
		}
4677 1 1. jj_3R_21 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4678
	}
4679
4680
	private boolean jj_3_65() {
4681 1 1. jj_3_65 : negated conditional → NO_COVERAGE
		if (jj_scan_token(COMMENT))
4682 1 1. jj_3_65 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4683 1 1. jj_3_65 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4684
	}
4685
4686
	private boolean jj_3_62() {
4687 1 1. jj_3_62 : negated conditional → NO_COVERAGE
		if (jj_scan_token(COMMENT))
4688 1 1. jj_3_62 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4689 1 1. jj_3_62 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4690
	}
4691
4692
	private boolean jj_3_59() {
4693 1 1. jj_3_59 : negated conditional → NO_COVERAGE
		if (jj_scan_token(COMMENT))
4694 1 1. jj_3_59 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4695 1 1. jj_3_59 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4696
	}
4697
4698
	private boolean jj_3_56() {
4699 1 1. jj_3_56 : negated conditional → NO_COVERAGE
		if (jj_scan_token(COMMENT))
4700 1 1. jj_3_56 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4701 1 1. jj_3_56 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4702
	}
4703
4704
	private boolean jj_3_108() {
4705 1 1. jj_3_108 : negated conditional → NO_COVERAGE
		if (jj_scan_token(STRING))
4706 1 1. jj_3_108 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4707 1 1. jj_3_108 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4708
	}
4709
4710
	private boolean jj_3_107() {
4711 1 1. jj_3_107 : negated conditional → NO_COVERAGE
		if (jj_scan_token(KEY))
4712 1 1. jj_3_107 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4713 1 1. jj_3_107 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4714
	}
4715
4716
	private boolean jj_3R_23() {
4717
		Token xsp;
4718
		xsp = jj_scanpos;
4719 1 1. jj_3R_23 : negated conditional → NO_COVERAGE
		if (jj_3_107()) {
4720
			jj_scanpos = xsp;
4721 1 1. jj_3R_23 : negated conditional → NO_COVERAGE
			if (jj_3_108())
4722 1 1. jj_3R_23 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
				return true;
4723
		}
4724 1 1. jj_3R_23 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4725
	}
4726
4727
	private boolean jj_3_64() {
4728 1 1. jj_3_64 : negated conditional → NO_COVERAGE
		if (jj_3R_26())
4729 1 1. jj_3_64 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4730 1 1. jj_3_64 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4731
	}
4732
4733
	private boolean jj_3_63() {
4734
		Token xsp;
4735
		xsp = jj_scanpos;
4736 1 1. jj_3_63 : negated conditional → NO_COVERAGE
		if (jj_3_64()) {
4737
			jj_scanpos = xsp;
4738 1 1. jj_3_63 : negated conditional → NO_COVERAGE
			if (jj_3_65())
4739 1 1. jj_3_63 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
				return true;
4740
		}
4741 1 1. jj_3_63 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4742
	}
4743
4744
	private boolean jj_3_61() {
4745 1 1. jj_3_61 : negated conditional → NO_COVERAGE
		if (jj_3R_26())
4746 1 1. jj_3_61 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4747 1 1. jj_3_61 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4748
	}
4749
4750
	private boolean jj_3_60() {
4751
		Token xsp;
4752
		xsp = jj_scanpos;
4753 1 1. jj_3_60 : negated conditional → NO_COVERAGE
		if (jj_3_61()) {
4754
			jj_scanpos = xsp;
4755 1 1. jj_3_60 : negated conditional → NO_COVERAGE
			if (jj_3_62())
4756 1 1. jj_3_60 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
				return true;
4757
		}
4758 1 1. jj_3_60 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4759
	}
4760
4761
	private boolean jj_3_58() {
4762 1 1. jj_3_58 : negated conditional → NO_COVERAGE
		if (jj_3R_25())
4763 1 1. jj_3_58 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4764 1 1. jj_3_58 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4765
	}
4766
4767
	private boolean jj_3_57() {
4768
		Token xsp;
4769
		xsp = jj_scanpos;
4770 1 1. jj_3_57 : negated conditional → NO_COVERAGE
		if (jj_3_58()) {
4771
			jj_scanpos = xsp;
4772 1 1. jj_3_57 : negated conditional → NO_COVERAGE
			if (jj_3_59())
4773 1 1. jj_3_57 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
				return true;
4774
		}
4775 1 1. jj_3_57 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4776
	}
4777
4778
	private boolean jj_3_55() {
4779 1 1. jj_3_55 : negated conditional → NO_COVERAGE
		if (jj_3R_25())
4780 1 1. jj_3_55 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4781 1 1. jj_3_55 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4782
	}
4783
4784
	private boolean jj_3_54() {
4785
		Token xsp;
4786
		xsp = jj_scanpos;
4787 1 1. jj_3_54 : negated conditional → NO_COVERAGE
		if (jj_3_55()) {
4788
			jj_scanpos = xsp;
4789 1 1. jj_3_54 : negated conditional → NO_COVERAGE
			if (jj_3_56())
4790 1 1. jj_3_54 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
				return true;
4791
		}
4792 1 1. jj_3_54 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4793
	}
4794
4795
	private boolean jj_3_106() {
4796 1 1. jj_3_106 : negated conditional → NO_COVERAGE
		if (jj_scan_token(INT))
4797 1 1. jj_3_106 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4798 1 1. jj_3_106 : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4799
	}
4800
4801
	/** Generated Token Manager. */
4802
	public PajekParserTokenManager token_source;
4803
	SimpleCharStream jj_input_stream;
4804
	/** Current token. */
4805
	public Token token;
4806
	/** Next token. */
4807
	public Token jj_nt;
4808
	private int jj_ntk;
4809
	private Token jj_scanpos, jj_lastpos;
4810
	private int jj_la;
4811
	private int jj_gen;
4812
	final private int[] jj_la1 = new int[0];
4813
	static private int[] jj_la1_0;
4814
	static private int[] jj_la1_1;
4815
	static {
4816
		jj_la1_init_0();
4817
		jj_la1_init_1();
4818
	}
4819
4820
	private static void jj_la1_init_0() {
4821
		jj_la1_0 = new int[] {};
4822
	}
4823
4824
	private static void jj_la1_init_1() {
4825
		jj_la1_1 = new int[] {};
4826
	}
4827
4828
	final private JJCalls[] jj_2_rtns = new JJCalls[182];
4829
	private boolean jj_rescan = false;
4830
	private int jj_gc = 0;
4831
4832
	/** Constructor with InputStream. */
4833
	public PajekParser(java.io.InputStream stream) {
4834
		this(stream, null);
4835
	}
4836
4837
	/** Constructor with InputStream and supplied encoding */
4838
	public PajekParser(java.io.InputStream stream, String encoding) {
4839
		try {
4840
			jj_input_stream = new SimpleCharStream(stream, encoding, 1, 1);
4841
		} catch (java.io.UnsupportedEncodingException e) {
4842
			throw new RuntimeException(e);
4843
		}
4844
		token_source = new PajekParserTokenManager(jj_input_stream);
4845
		token = new Token();
4846
		jj_ntk = -1;
4847
		jj_gen = 0;
4848 3 1. : changed conditional boundary → NO_COVERAGE
2. : Changed increment from 1 to -1 → NO_COVERAGE
3. : negated conditional → NO_COVERAGE
		for (int i = 0; i < 0; i++)
4849
			jj_la1[i] = -1;
4850 3 1. : changed conditional boundary → NO_COVERAGE
2. : Changed increment from 1 to -1 → NO_COVERAGE
3. : negated conditional → NO_COVERAGE
		for (int i = 0; i < jj_2_rtns.length; i++)
4851
			jj_2_rtns[i] = new JJCalls();
4852
	}
4853
4854
	/** Reinitialise. */
4855
	public void ReInit(java.io.InputStream stream) {
4856 1 1. ReInit : removed call to org/graphstream/stream/file/pajek/PajekParser::ReInit → NO_COVERAGE
		ReInit(stream, null);
4857
	}
4858
4859
	/** Reinitialise. */
4860
	public void ReInit(java.io.InputStream stream, String encoding) {
4861
		try {
4862 1 1. ReInit : removed call to org/graphstream/util/parser/SimpleCharStream::ReInit → NO_COVERAGE
			jj_input_stream.ReInit(stream, encoding, 1, 1);
4863
		} catch (java.io.UnsupportedEncodingException e) {
4864
			throw new RuntimeException(e);
4865
		}
4866 1 1. ReInit : removed call to org/graphstream/stream/file/pajek/PajekParserTokenManager::ReInit → NO_COVERAGE
		token_source.ReInit(jj_input_stream);
4867
		token = new Token();
4868
		jj_ntk = -1;
4869
		jj_gen = 0;
4870 3 1. ReInit : changed conditional boundary → NO_COVERAGE
2. ReInit : Changed increment from 1 to -1 → NO_COVERAGE
3. ReInit : negated conditional → NO_COVERAGE
		for (int i = 0; i < 0; i++)
4871
			jj_la1[i] = -1;
4872 3 1. ReInit : changed conditional boundary → NO_COVERAGE
2. ReInit : Changed increment from 1 to -1 → NO_COVERAGE
3. ReInit : negated conditional → NO_COVERAGE
		for (int i = 0; i < jj_2_rtns.length; i++)
4873
			jj_2_rtns[i] = new JJCalls();
4874
	}
4875
4876
	/** Constructor. */
4877
	public PajekParser(java.io.Reader stream) {
4878
		jj_input_stream = new SimpleCharStream(stream, 1, 1);
4879
		token_source = new PajekParserTokenManager(jj_input_stream);
4880
		token = new Token();
4881
		jj_ntk = -1;
4882
		jj_gen = 0;
4883 3 1. : changed conditional boundary → NO_COVERAGE
2. : Changed increment from 1 to -1 → NO_COVERAGE
3. : negated conditional → NO_COVERAGE
		for (int i = 0; i < 0; i++)
4884
			jj_la1[i] = -1;
4885 3 1. : changed conditional boundary → NO_COVERAGE
2. : Changed increment from 1 to -1 → NO_COVERAGE
3. : negated conditional → NO_COVERAGE
		for (int i = 0; i < jj_2_rtns.length; i++)
4886
			jj_2_rtns[i] = new JJCalls();
4887
	}
4888
4889
	/** Reinitialise. */
4890
	public void ReInit(java.io.Reader stream) {
4891 1 1. ReInit : removed call to org/graphstream/util/parser/SimpleCharStream::ReInit → NO_COVERAGE
		jj_input_stream.ReInit(stream, 1, 1);
4892 1 1. ReInit : removed call to org/graphstream/stream/file/pajek/PajekParserTokenManager::ReInit → NO_COVERAGE
		token_source.ReInit(jj_input_stream);
4893
		token = new Token();
4894
		jj_ntk = -1;
4895
		jj_gen = 0;
4896 3 1. ReInit : changed conditional boundary → NO_COVERAGE
2. ReInit : Changed increment from 1 to -1 → NO_COVERAGE
3. ReInit : negated conditional → NO_COVERAGE
		for (int i = 0; i < 0; i++)
4897
			jj_la1[i] = -1;
4898 3 1. ReInit : changed conditional boundary → NO_COVERAGE
2. ReInit : Changed increment from 1 to -1 → NO_COVERAGE
3. ReInit : negated conditional → NO_COVERAGE
		for (int i = 0; i < jj_2_rtns.length; i++)
4899
			jj_2_rtns[i] = new JJCalls();
4900
	}
4901
4902
	/** Constructor with generated Token Manager. */
4903
	public PajekParser(PajekParserTokenManager tm) {
4904
		token_source = tm;
4905
		token = new Token();
4906
		jj_ntk = -1;
4907
		jj_gen = 0;
4908 3 1. : changed conditional boundary → NO_COVERAGE
2. : Changed increment from 1 to -1 → NO_COVERAGE
3. : negated conditional → NO_COVERAGE
		for (int i = 0; i < 0; i++)
4909
			jj_la1[i] = -1;
4910 3 1. : changed conditional boundary → NO_COVERAGE
2. : Changed increment from 1 to -1 → NO_COVERAGE
3. : negated conditional → NO_COVERAGE
		for (int i = 0; i < jj_2_rtns.length; i++)
4911
			jj_2_rtns[i] = new JJCalls();
4912
	}
4913
4914
	/** Reinitialise. */
4915
	public void ReInit(PajekParserTokenManager tm) {
4916
		token_source = tm;
4917
		token = new Token();
4918
		jj_ntk = -1;
4919
		jj_gen = 0;
4920 3 1. ReInit : changed conditional boundary → NO_COVERAGE
2. ReInit : Changed increment from 1 to -1 → NO_COVERAGE
3. ReInit : negated conditional → NO_COVERAGE
		for (int i = 0; i < 0; i++)
4921
			jj_la1[i] = -1;
4922 3 1. ReInit : changed conditional boundary → NO_COVERAGE
2. ReInit : Changed increment from 1 to -1 → NO_COVERAGE
3. ReInit : negated conditional → NO_COVERAGE
		for (int i = 0; i < jj_2_rtns.length; i++)
4923
			jj_2_rtns[i] = new JJCalls();
4924
	}
4925
4926
	private Token jj_consume_token(int kind) throws ParseException {
4927
		Token oldToken;
4928 1 1. jj_consume_token : negated conditional → NO_COVERAGE
		if ((oldToken = token).next != null)
4929
			token = token.next;
4930
		else
4931
			token = token.next = token_source.getNextToken();
4932
		jj_ntk = -1;
4933 1 1. jj_consume_token : negated conditional → NO_COVERAGE
		if (token.kind == kind) {
4934 1 1. jj_consume_token : Replaced integer addition with subtraction → NO_COVERAGE
			jj_gen++;
4935 3 1. jj_consume_token : changed conditional boundary → NO_COVERAGE
2. jj_consume_token : Replaced integer addition with subtraction → NO_COVERAGE
3. jj_consume_token : negated conditional → NO_COVERAGE
			if (++jj_gc > 100) {
4936
				jj_gc = 0;
4937 3 1. jj_consume_token : changed conditional boundary → NO_COVERAGE
2. jj_consume_token : Changed increment from 1 to -1 → NO_COVERAGE
3. jj_consume_token : negated conditional → NO_COVERAGE
				for (int i = 0; i < jj_2_rtns.length; i++) {
4938
					JJCalls c = jj_2_rtns[i];
4939 1 1. jj_consume_token : negated conditional → NO_COVERAGE
					while (c != null) {
4940 2 1. jj_consume_token : changed conditional boundary → NO_COVERAGE
2. jj_consume_token : negated conditional → NO_COVERAGE
						if (c.gen < jj_gen)
4941
							c.first = null;
4942
						c = c.next;
4943
					}
4944
				}
4945
			}
4946 1 1. jj_consume_token : mutated return of Object value for org/graphstream/stream/file/pajek/PajekParser::jj_consume_token to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
			return token;
4947
		}
4948
		token = oldToken;
4949
		jj_kind = kind;
4950
		throw generateParseException();
4951
	}
4952
4953
	static private final class LookaheadSuccess extends java.lang.Error {
4954
		private static final long serialVersionUID = 8265735293607656893L;
4955
	}
4956
4957
	final private LookaheadSuccess jj_ls = new LookaheadSuccess();
4958
4959
	private boolean jj_scan_token(int kind) {
4960 1 1. jj_scan_token : negated conditional → NO_COVERAGE
		if (jj_scanpos == jj_lastpos) {
4961 1 1. jj_scan_token : Replaced integer subtraction with addition → NO_COVERAGE
			jj_la--;
4962 1 1. jj_scan_token : negated conditional → NO_COVERAGE
			if (jj_scanpos.next == null) {
4963
				jj_lastpos = jj_scanpos = jj_scanpos.next = token_source
4964
						.getNextToken();
4965
			} else {
4966
				jj_lastpos = jj_scanpos = jj_scanpos.next;
4967
			}
4968
		} else {
4969
			jj_scanpos = jj_scanpos.next;
4970
		}
4971 1 1. jj_scan_token : negated conditional → NO_COVERAGE
		if (jj_rescan) {
4972
			int i = 0;
4973
			Token tok = token;
4974 2 1. jj_scan_token : negated conditional → NO_COVERAGE
2. jj_scan_token : negated conditional → NO_COVERAGE
			while (tok != null && tok != jj_scanpos) {
4975 1 1. jj_scan_token : Changed increment from 1 to -1 → NO_COVERAGE
				i++;
4976
				tok = tok.next;
4977
			}
4978 1 1. jj_scan_token : negated conditional → NO_COVERAGE
			if (tok != null)
4979 1 1. jj_scan_token : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_add_error_token → NO_COVERAGE
				jj_add_error_token(kind, i);
4980
		}
4981 1 1. jj_scan_token : negated conditional → NO_COVERAGE
		if (jj_scanpos.kind != kind)
4982 1 1. jj_scan_token : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return true;
4983 2 1. jj_scan_token : negated conditional → NO_COVERAGE
2. jj_scan_token : negated conditional → NO_COVERAGE
		if (jj_la == 0 && jj_scanpos == jj_lastpos)
4984
			throw jj_ls;
4985 1 1. jj_scan_token : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
		return false;
4986
	}
4987
4988
	/** Get the next Token. */
4989
	final public Token getNextToken() {
4990 1 1. getNextToken : negated conditional → NO_COVERAGE
		if (token.next != null)
4991
			token = token.next;
4992
		else
4993
			token = token.next = token_source.getNextToken();
4994
		jj_ntk = -1;
4995 1 1. getNextToken : Replaced integer addition with subtraction → NO_COVERAGE
		jj_gen++;
4996 1 1. getNextToken : mutated return of Object value for org/graphstream/stream/file/pajek/PajekParser::getNextToken to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
		return token;
4997
	}
4998
4999
	/** Get the specific Token. */
5000
	final public Token getToken(int index) {
5001
		Token t = token;
5002 3 1. getToken : changed conditional boundary → NO_COVERAGE
2. getToken : Changed increment from 1 to -1 → NO_COVERAGE
3. getToken : negated conditional → NO_COVERAGE
		for (int i = 0; i < index; i++) {
5003 1 1. getToken : negated conditional → NO_COVERAGE
			if (t.next != null)
5004
				t = t.next;
5005
			else
5006
				t = t.next = token_source.getNextToken();
5007
		}
5008 1 1. getToken : mutated return of Object value for org/graphstream/stream/file/pajek/PajekParser::getToken to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
		return t;
5009
	}
5010
5011
	private int jj_ntk() {
5012 1 1. jj_ntk : negated conditional → NO_COVERAGE
		if ((jj_nt = token.next) == null)
5013 1 1. jj_ntk : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return (jj_ntk = (token.next = token_source.getNextToken()).kind);
5014
		else
5015 1 1. jj_ntk : replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE
			return (jj_ntk = jj_nt.kind);
5016
	}
5017
5018
	private java.util.List<int[]> jj_expentries = new java.util.ArrayList<int[]>();
5019
	private int[] jj_expentry;
5020
	private int jj_kind = -1;
5021
	private int[] jj_lasttokens = new int[100];
5022
	private int jj_endpos;
5023
5024
	private void jj_add_error_token(int kind, int pos) {
5025 2 1. jj_add_error_token : changed conditional boundary → NO_COVERAGE
2. jj_add_error_token : negated conditional → NO_COVERAGE
		if (pos >= 100)
5026
			return;
5027 2 1. jj_add_error_token : Replaced integer addition with subtraction → NO_COVERAGE
2. jj_add_error_token : negated conditional → NO_COVERAGE
		if (pos == jj_endpos + 1) {
5028 1 1. jj_add_error_token : Replaced integer addition with subtraction → NO_COVERAGE
			jj_lasttokens[jj_endpos++] = kind;
5029 1 1. jj_add_error_token : negated conditional → NO_COVERAGE
		} else if (jj_endpos != 0) {
5030
			jj_expentry = new int[jj_endpos];
5031 3 1. jj_add_error_token : changed conditional boundary → NO_COVERAGE
2. jj_add_error_token : Changed increment from 1 to -1 → NO_COVERAGE
3. jj_add_error_token : negated conditional → NO_COVERAGE
			for (int i = 0; i < jj_endpos; i++) {
5032
				jj_expentry[i] = jj_lasttokens[i];
5033
			}
5034
			jj_entries_loop: for (java.util.Iterator<?> it = jj_expentries
5035 1 1. jj_add_error_token : negated conditional → NO_COVERAGE
					.iterator(); it.hasNext();) {
5036
				int[] oldentry = (int[]) (it.next());
5037 1 1. jj_add_error_token : negated conditional → NO_COVERAGE
				if (oldentry.length == jj_expentry.length) {
5038 3 1. jj_add_error_token : changed conditional boundary → NO_COVERAGE
2. jj_add_error_token : Changed increment from 1 to -1 → NO_COVERAGE
3. jj_add_error_token : negated conditional → NO_COVERAGE
					for (int i = 0; i < jj_expentry.length; i++) {
5039 1 1. jj_add_error_token : negated conditional → NO_COVERAGE
						if (oldentry[i] != jj_expentry[i]) {
5040
							continue jj_entries_loop;
5041
						}
5042
					}
5043
					jj_expentries.add(jj_expentry);
5044
					break jj_entries_loop;
5045
				}
5046
			}
5047 1 1. jj_add_error_token : negated conditional → NO_COVERAGE
			if (pos != 0)
5048 1 1. jj_add_error_token : Replaced integer subtraction with addition → NO_COVERAGE
				jj_lasttokens[(jj_endpos = pos) - 1] = kind;
5049
		}
5050
	}
5051
5052
	/** Generate ParseException. */
5053
	public ParseException generateParseException() {
5054 1 1. generateParseException : removed call to java/util/List::clear → NO_COVERAGE
		jj_expentries.clear();
5055
		boolean[] la1tokens = new boolean[54];
5056 2 1. generateParseException : changed conditional boundary → NO_COVERAGE
2. generateParseException : negated conditional → NO_COVERAGE
		if (jj_kind >= 0) {
5057
			la1tokens[jj_kind] = true;
5058
			jj_kind = -1;
5059
		}
5060 3 1. generateParseException : changed conditional boundary → NO_COVERAGE
2. generateParseException : Changed increment from 1 to -1 → NO_COVERAGE
3. generateParseException : negated conditional → NO_COVERAGE
		for (int i = 0; i < 0; i++) {
5061 1 1. generateParseException : negated conditional → NO_COVERAGE
			if (jj_la1[i] == jj_gen) {
5062 3 1. generateParseException : changed conditional boundary → NO_COVERAGE
2. generateParseException : Changed increment from 1 to -1 → NO_COVERAGE
3. generateParseException : negated conditional → NO_COVERAGE
				for (int j = 0; j < 32; j++) {
5063 3 1. generateParseException : Replaced Shift Left with Shift Right → NO_COVERAGE
2. generateParseException : Replaced bitwise AND with OR → NO_COVERAGE
3. generateParseException : negated conditional → NO_COVERAGE
					if ((jj_la1_0[i] & (1 << j)) != 0) {
5064
						la1tokens[j] = true;
5065
					}
5066 3 1. generateParseException : Replaced Shift Left with Shift Right → NO_COVERAGE
2. generateParseException : Replaced bitwise AND with OR → NO_COVERAGE
3. generateParseException : negated conditional → NO_COVERAGE
					if ((jj_la1_1[i] & (1 << j)) != 0) {
5067 1 1. generateParseException : Replaced integer addition with subtraction → NO_COVERAGE
						la1tokens[32 + j] = true;
5068
					}
5069
				}
5070
			}
5071
		}
5072 3 1. generateParseException : changed conditional boundary → NO_COVERAGE
2. generateParseException : Changed increment from 1 to -1 → NO_COVERAGE
3. generateParseException : negated conditional → NO_COVERAGE
		for (int i = 0; i < 54; i++) {
5073 1 1. generateParseException : negated conditional → NO_COVERAGE
			if (la1tokens[i]) {
5074
				jj_expentry = new int[1];
5075
				jj_expentry[0] = i;
5076
				jj_expentries.add(jj_expentry);
5077
			}
5078
		}
5079
		jj_endpos = 0;
5080 1 1. generateParseException : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_rescan_token → NO_COVERAGE
		jj_rescan_token();
5081 1 1. generateParseException : removed call to org/graphstream/stream/file/pajek/PajekParser::jj_add_error_token → NO_COVERAGE
		jj_add_error_token(0, 0);
5082
		int[][] exptokseq = new int[jj_expentries.size()][];
5083 3 1. generateParseException : changed conditional boundary → NO_COVERAGE
2. generateParseException : Changed increment from 1 to -1 → NO_COVERAGE
3. generateParseException : negated conditional → NO_COVERAGE
		for (int i = 0; i < jj_expentries.size(); i++) {
5084
			exptokseq[i] = jj_expentries.get(i);
5085
		}
5086 1 1. generateParseException : mutated return of Object value for org/graphstream/stream/file/pajek/PajekParser::generateParseException to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE
		return new ParseException(token, exptokseq, tokenImage);
5087
	}
5088
5089
	/** Enable tracing. */
5090
	final public void enable_tracing() {
5091
	}
5092
5093
	/** Disable tracing. */
5094
	final public void disable_tracing() {
5095
	}
5096
5097
	private void jj_rescan_token() {
5098
		jj_rescan = true;
5099 3 1. jj_rescan_token : changed conditional boundary → NO_COVERAGE
2. jj_rescan_token : Changed increment from 1 to -1 → NO_COVERAGE
3. jj_rescan_token : negated conditional → NO_COVERAGE
		for (int i = 0; i < 182; i++) {
5100
			try {
5101
				JJCalls p = jj_2_rtns[i];
5102
				do {
5103 2 1. jj_rescan_token : changed conditional boundary → NO_COVERAGE
2. jj_rescan_token : negated conditional → NO_COVERAGE
					if (p.gen > jj_gen) {
5104
						jj_la = p.arg;
5105
						jj_lastpos = jj_scanpos = p.first;
5106
						switch (i) {
5107
						case 0:
5108
							jj_3_1();
5109
							break;
5110
						case 1:
5111
							jj_3_2();
5112
							break;
5113
						case 2:
5114
							jj_3_3();
5115
							break;
5116
						case 3:
5117
							jj_3_4();
5118
							break;
5119
						case 4:
5120
							jj_3_5();
5121
							break;
5122
						case 5:
5123
							jj_3_6();
5124
							break;
5125
						case 6:
5126
							jj_3_7();
5127
							break;
5128
						case 7:
5129
							jj_3_8();
5130
							break;
5131
						case 8:
5132
							jj_3_9();
5133
							break;
5134
						case 9:
5135
							jj_3_10();
5136
							break;
5137
						case 10:
5138
							jj_3_11();
5139
							break;
5140
						case 11:
5141
							jj_3_12();
5142
							break;
5143
						case 12:
5144
							jj_3_13();
5145
							break;
5146
						case 13:
5147
							jj_3_14();
5148
							break;
5149
						case 14:
5150
							jj_3_15();
5151
							break;
5152
						case 15:
5153
							jj_3_16();
5154
							break;
5155
						case 16:
5156
							jj_3_17();
5157
							break;
5158
						case 17:
5159
							jj_3_18();
5160
							break;
5161
						case 18:
5162
							jj_3_19();
5163
							break;
5164
						case 19:
5165
							jj_3_20();
5166
							break;
5167
						case 20:
5168
							jj_3_21();
5169
							break;
5170
						case 21:
5171
							jj_3_22();
5172
							break;
5173
						case 22:
5174
							jj_3_23();
5175
							break;
5176
						case 23:
5177
							jj_3_24();
5178
							break;
5179
						case 24:
5180
							jj_3_25();
5181
							break;
5182
						case 25:
5183
							jj_3_26();
5184
							break;
5185
						case 26:
5186
							jj_3_27();
5187
							break;
5188
						case 27:
5189
							jj_3_28();
5190
							break;
5191
						case 28:
5192
							jj_3_29();
5193
							break;
5194
						case 29:
5195
							jj_3_30();
5196
							break;
5197
						case 30:
5198
							jj_3_31();
5199
							break;
5200
						case 31:
5201
							jj_3_32();
5202
							break;
5203
						case 32:
5204
							jj_3_33();
5205
							break;
5206
						case 33:
5207
							jj_3_34();
5208
							break;
5209
						case 34:
5210
							jj_3_35();
5211
							break;
5212
						case 35:
5213
							jj_3_36();
5214
							break;
5215
						case 36:
5216
							jj_3_37();
5217
							break;
5218
						case 37:
5219
							jj_3_38();
5220
							break;
5221
						case 38:
5222
							jj_3_39();
5223
							break;
5224
						case 39:
5225
							jj_3_40();
5226
							break;
5227
						case 40:
5228
							jj_3_41();
5229
							break;
5230
						case 41:
5231
							jj_3_42();
5232
							break;
5233
						case 42:
5234
							jj_3_43();
5235
							break;
5236
						case 43:
5237
							jj_3_44();
5238
							break;
5239
						case 44:
5240
							jj_3_45();
5241
							break;
5242
						case 45:
5243
							jj_3_46();
5244
							break;
5245
						case 46:
5246
							jj_3_47();
5247
							break;
5248
						case 47:
5249
							jj_3_48();
5250
							break;
5251
						case 48:
5252
							jj_3_49();
5253
							break;
5254
						case 49:
5255
							jj_3_50();
5256
							break;
5257
						case 50:
5258
							jj_3_51();
5259
							break;
5260
						case 51:
5261
							jj_3_52();
5262
							break;
5263
						case 52:
5264
							jj_3_53();
5265
							break;
5266
						case 53:
5267
							jj_3_54();
5268
							break;
5269
						case 54:
5270
							jj_3_55();
5271
							break;
5272
						case 55:
5273
							jj_3_56();
5274
							break;
5275
						case 56:
5276
							jj_3_57();
5277
							break;
5278
						case 57:
5279
							jj_3_58();
5280
							break;
5281
						case 58:
5282
							jj_3_59();
5283
							break;
5284
						case 59:
5285
							jj_3_60();
5286
							break;
5287
						case 60:
5288
							jj_3_61();
5289
							break;
5290
						case 61:
5291
							jj_3_62();
5292
							break;
5293
						case 62:
5294
							jj_3_63();
5295
							break;
5296
						case 63:
5297
							jj_3_64();
5298
							break;
5299
						case 64:
5300
							jj_3_65();
5301
							break;
5302
						case 65:
5303
							jj_3_66();
5304
							break;
5305
						case 66:
5306
							jj_3_67();
5307
							break;
5308
						case 67:
5309
							jj_3_68();
5310
							break;
5311
						case 68:
5312
							jj_3_69();
5313
							break;
5314
						case 69:
5315
							jj_3_70();
5316
							break;
5317
						case 70:
5318
							jj_3_71();
5319
							break;
5320
						case 71:
5321
							jj_3_72();
5322
							break;
5323
						case 72:
5324
							jj_3_73();
5325
							break;
5326
						case 73:
5327
							jj_3_74();
5328
							break;
5329
						case 74:
5330
							jj_3_75();
5331
							break;
5332
						case 75:
5333
							jj_3_76();
5334
							break;
5335
						case 76:
5336
							jj_3_77();
5337
							break;
5338
						case 77:
5339
							jj_3_78();
5340
							break;
5341
						case 78:
5342
							jj_3_79();
5343
							break;
5344
						case 79:
5345
							jj_3_80();
5346
							break;
5347
						case 80:
5348
							jj_3_81();
5349
							break;
5350
						case 81:
5351
							jj_3_82();
5352
							break;
5353
						case 82:
5354
							jj_3_83();
5355
							break;
5356
						case 83:
5357
							jj_3_84();
5358
							break;
5359
						case 84:
5360
							jj_3_85();
5361
							break;
5362
						case 85:
5363
							jj_3_86();
5364
							break;
5365
						case 86:
5366
							jj_3_87();
5367
							break;
5368
						case 87:
5369
							jj_3_88();
5370
							break;
5371
						case 88:
5372
							jj_3_89();
5373
							break;
5374
						case 89:
5375
							jj_3_90();
5376
							break;
5377
						case 90:
5378
							jj_3_91();
5379
							break;
5380
						case 91:
5381
							jj_3_92();
5382
							break;
5383
						case 92:
5384
							jj_3_93();
5385
							break;
5386
						case 93:
5387
							jj_3_94();
5388
							break;
5389
						case 94:
5390
							jj_3_95();
5391
							break;
5392
						case 95:
5393
							jj_3_96();
5394
							break;
5395
						case 96:
5396
							jj_3_97();
5397
							break;
5398
						case 97:
5399
							jj_3_98();
5400
							break;
5401
						case 98:
5402
							jj_3_99();
5403
							break;
5404
						case 99:
5405
							jj_3_100();
5406
							break;
5407
						case 100:
5408
							jj_3_101();
5409
							break;
5410
						case 101:
5411
							jj_3_102();
5412
							break;
5413
						case 102:
5414
							jj_3_103();
5415
							break;
5416
						case 103:
5417
							jj_3_104();
5418
							break;
5419
						case 104:
5420
							jj_3_105();
5421
							break;
5422
						case 105:
5423
							jj_3_106();
5424
							break;
5425
						case 106:
5426
							jj_3_107();
5427
							break;
5428
						case 107:
5429
							jj_3_108();
5430
							break;
5431
						case 108:
5432
							jj_3_109();
5433
							break;
5434
						case 109:
5435
							jj_3_110();
5436
							break;
5437
						case 110:
5438
							jj_3_111();
5439
							break;
5440
						case 111:
5441
							jj_3_112();
5442
							break;
5443
						case 112:
5444
							jj_3_113();
5445
							break;
5446
						case 113:
5447
							jj_3_114();
5448
							break;
5449
						case 114:
5450
							jj_3_115();
5451
							break;
5452
						case 115:
5453
							jj_3_116();
5454
							break;
5455
						case 116:
5456
							jj_3_117();
5457
							break;
5458
						case 117:
5459
							jj_3_118();
5460
							break;
5461
						case 118:
5462
							jj_3_119();
5463
							break;
5464
						case 119:
5465
							jj_3_120();
5466
							break;
5467
						case 120:
5468
							jj_3_121();
5469
							break;
5470
						case 121:
5471
							jj_3_122();
5472
							break;
5473
						case 122:
5474
							jj_3_123();
5475
							break;
5476
						case 123:
5477
							jj_3_124();
5478
							break;
5479
						case 124:
5480
							jj_3_125();
5481
							break;
5482
						case 125:
5483
							jj_3_126();
5484
							break;
5485
						case 126:
5486
							jj_3_127();
5487
							break;
5488
						case 127:
5489
							jj_3_128();
5490
							break;
5491
						case 128:
5492
							jj_3_129();
5493
							break;
5494
						case 129:
5495
							jj_3_130();
5496
							break;
5497
						case 130:
5498
							jj_3_131();
5499
							break;
5500
						case 131:
5501
							jj_3_132();
5502
							break;
5503
						case 132:
5504
							jj_3_133();
5505
							break;
5506
						case 133:
5507
							jj_3_134();
5508
							break;
5509
						case 134:
5510
							jj_3_135();
5511
							break;
5512
						case 135:
5513
							jj_3_136();
5514
							break;
5515
						case 136:
5516
							jj_3_137();
5517
							break;
5518
						case 137:
5519
							jj_3_138();
5520
							break;
5521
						case 138:
5522
							jj_3_139();
5523
							break;
5524
						case 139:
5525
							jj_3_140();
5526
							break;
5527
						case 140:
5528
							jj_3_141();
5529
							break;
5530
						case 141:
5531
							jj_3_142();
5532
							break;
5533
						case 142:
5534
							jj_3_143();
5535
							break;
5536
						case 143:
5537
							jj_3_144();
5538
							break;
5539
						case 144:
5540
							jj_3_145();
5541
							break;
5542
						case 145:
5543
							jj_3_146();
5544
							break;
5545
						case 146:
5546
							jj_3_147();
5547
							break;
5548
						case 147:
5549
							jj_3_148();
5550
							break;
5551
						case 148:
5552
							jj_3_149();
5553
							break;
5554
						case 149:
5555
							jj_3_150();
5556
							break;
5557
						case 150:
5558
							jj_3_151();
5559
							break;
5560
						case 151:
5561
							jj_3_152();
5562
							break;
5563
						case 152:
5564
							jj_3_153();
5565
							break;
5566
						case 153:
5567
							jj_3_154();
5568
							break;
5569
						case 154:
5570
							jj_3_155();
5571
							break;
5572
						case 155:
5573
							jj_3_156();
5574
							break;
5575
						case 156:
5576
							jj_3_157();
5577
							break;
5578
						case 157:
5579
							jj_3_158();
5580
							break;
5581
						case 158:
5582
							jj_3_159();
5583
							break;
5584
						case 159:
5585
							jj_3_160();
5586
							break;
5587
						case 160:
5588
							jj_3_161();
5589
							break;
5590
						case 161:
5591
							jj_3_162();
5592
							break;
5593
						case 162:
5594
							jj_3_163();
5595
							break;
5596
						case 163:
5597
							jj_3_164();
5598
							break;
5599
						case 164:
5600
							jj_3_165();
5601
							break;
5602
						case 165:
5603
							jj_3_166();
5604
							break;
5605
						case 166:
5606
							jj_3_167();
5607
							break;
5608
						case 167:
5609
							jj_3_168();
5610
							break;
5611
						case 168:
5612
							jj_3_169();
5613
							break;
5614
						case 169:
5615
							jj_3_170();
5616
							break;
5617
						case 170:
5618
							jj_3_171();
5619
							break;
5620
						case 171:
5621
							jj_3_172();
5622
							break;
5623
						case 172:
5624
							jj_3_173();
5625
							break;
5626
						case 173:
5627
							jj_3_174();
5628
							break;
5629
						case 174:
5630
							jj_3_175();
5631
							break;
5632
						case 175:
5633
							jj_3_176();
5634
							break;
5635
						case 176:
5636
							jj_3_177();
5637
							break;
5638
						case 177:
5639
							jj_3_178();
5640
							break;
5641
						case 178:
5642
							jj_3_179();
5643
							break;
5644
						case 179:
5645
							jj_3_180();
5646
							break;
5647
						case 180:
5648
							jj_3_181();
5649
							break;
5650
						case 181:
5651
							jj_3_182();
5652
							break;
5653
						}
5654
					}
5655
					p = p.next;
5656 1 1. jj_rescan_token : negated conditional → NO_COVERAGE
				} while (p != null);
5657
			} catch (LookaheadSuccess ls) {
5658
			}
5659
		}
5660
		jj_rescan = false;
5661
	}
5662
5663
	private void jj_save(int index, int xla) {
5664
		JJCalls p = jj_2_rtns[index];
5665 2 1. jj_save : changed conditional boundary → NO_COVERAGE
2. jj_save : negated conditional → NO_COVERAGE
		while (p.gen > jj_gen) {
5666 1 1. jj_save : negated conditional → NO_COVERAGE
			if (p.next == null) {
5667
				p = p.next = new JJCalls();
5668
				break;
5669
			}
5670
			p = p.next;
5671
		}
5672 2 1. jj_save : Replaced integer addition with subtraction → NO_COVERAGE
2. jj_save : Replaced integer subtraction with addition → NO_COVERAGE
		p.gen = jj_gen + xla - jj_la;
5673
		p.first = token;
5674
		p.arg = xla;
5675
	}
5676
5677
	static final class JJCalls {
5678
		int gen;
5679
		Token first;
5680
		int arg;
5681
		JJCalls next;
5682
	}
5683
5684
}

Mutations

76

1.1
Location : close
Killed by : none
removed call to org/graphstream/util/parser/SimpleCharStream::close → NO_COVERAGE

86

1.1
Location : all
Killed by : none
negated conditional → NO_COVERAGE

87

1.1
Location : all
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::network → NO_COVERAGE

88

1.1
Location : all
Killed by : none
negated conditional → NO_COVERAGE

89

1.1
Location : all
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::vertices → NO_COVERAGE

90

1.1
Location : all
Killed by : none
negated conditional → NO_COVERAGE

91

1.1
Location : all
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::edges → NO_COVERAGE

92

1.1
Location : all
Killed by : none
negated conditional → NO_COVERAGE

94

1.1
Location : all
Killed by : none
negated conditional → NO_COVERAGE

100

1.1
Location : all
Killed by : none
negated conditional → NO_COVERAGE

112

1.1
Location : next
Killed by : none
negated conditional → NO_COVERAGE

113

1.1
Location : next
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::network → NO_COVERAGE

114

1.1
Location : next
Killed by : none
negated conditional → NO_COVERAGE

115

1.1
Location : next
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::vertices → NO_COVERAGE

116

1.1
Location : next
Killed by : none
negated conditional → NO_COVERAGE

117

1.1
Location : next
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::edges → NO_COVERAGE

118

1.1
Location : next
Killed by : none
negated conditional → NO_COVERAGE

121

1.1
Location : next
Killed by : none
negated conditional → NO_COVERAGE

123

1.1
Location : next
Killed by : none
negated conditional → NO_COVERAGE

131

1.1
Location : next
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

140

1.1
Location : network
Killed by : none
negated conditional → NO_COVERAGE

145

1.1
Location : network
Killed by : none
negated conditional → NO_COVERAGE

147

1.1
Location : network
Killed by : none
negated conditional → NO_COVERAGE

149

1.1
Location : network
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

151

1.1
Location : network
Killed by : none
negated conditional → NO_COVERAGE

153

1.1
Location : network
Killed by : none
negated conditional → NO_COVERAGE

162

1.1
Location : network
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekContext::addGraphAttribute → NO_COVERAGE

163

1.1
Location : network
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::EO → NO_COVERAGE

171

1.1
Location : vertices
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::EO → NO_COVERAGE

174

1.1
Location : vertices
Killed by : none
negated conditional → NO_COVERAGE

179

1.1
Location : vertices
Killed by : none
negated conditional → NO_COVERAGE

180

1.1
Location : vertices
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::vertex → NO_COVERAGE

181

1.1
Location : vertices
Killed by : none
negated conditional → NO_COVERAGE

195

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

198

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

199

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

201

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

207

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

209

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

215

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

216

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

218

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

227

1.1
Location : vertex
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekContext::addNodePosition → NO_COVERAGE

228

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

229

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

231

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

233

1.1
Location : vertex
Killed by : none
removed call to org/graphstream/stream/file/pajek/NodeGraphics::addKey → NO_COVERAGE

234

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

236

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

238

1.1
Location : vertex
Killed by : none
removed call to org/graphstream/stream/file/pajek/NodeGraphics::addKey → NO_COVERAGE

239

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

241

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

243

1.1
Location : vertex
Killed by : none
removed call to org/graphstream/stream/file/pajek/NodeGraphics::addKey → NO_COVERAGE

244

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

246

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

248

1.1
Location : vertex
Killed by : none
removed call to org/graphstream/stream/file/pajek/NodeGraphics::addKey → NO_COVERAGE

249

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

251

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

253

1.1
Location : vertex
Killed by : none
removed call to org/graphstream/stream/file/pajek/NodeGraphics::addKey → NO_COVERAGE

254

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

256

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

258

1.1
Location : vertex
Killed by : none
removed call to org/graphstream/stream/file/pajek/NodeGraphics::addKey → NO_COVERAGE

267

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

272

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

275

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

277

1.1
Location : vertex
Killed by : none
removed call to org/graphstream/stream/file/pajek/NodeGraphics::addKey → NO_COVERAGE

278

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

282

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

286

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

290

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

294

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

298

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

301

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

303

1.1
Location : vertex
Killed by : none
removed call to org/graphstream/stream/file/pajek/NodeGraphics::addKey → NO_COVERAGE

304

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

307

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

309

1.1
Location : vertex
Killed by : none
removed call to org/graphstream/stream/file/pajek/NodeGraphics::addKey → NO_COVERAGE

310

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

313

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

315

1.1
Location : vertex
Killed by : none
removed call to org/graphstream/stream/file/pajek/NodeGraphics::addKey → NO_COVERAGE

316

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

319

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

321

1.1
Location : vertex
Killed by : none
removed call to org/graphstream/stream/file/pajek/NodeGraphics::addKey → NO_COVERAGE

322

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

326

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

330

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

334

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

337

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

339

1.1
Location : vertex
Killed by : none
removed call to org/graphstream/stream/file/pajek/NodeGraphics::addKey → NO_COVERAGE

340

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

343

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

345

1.1
Location : vertex
Killed by : none
removed call to org/graphstream/stream/file/pajek/NodeGraphics::addKey → NO_COVERAGE

352

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

357

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

359

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

374

1.1
Location : vertex
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::EO → NO_COVERAGE

375

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

376

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

377

1.1
Location : vertex
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

378

1.1
Location : vertex
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekContext::addNodeLabel → NO_COVERAGE

380

1.1
Location : vertex
Killed by : none
negated conditional → NO_COVERAGE

381

1.1
Location : vertex
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekContext::addNodeGraphics → NO_COVERAGE

386

1.1
Location : edges
Killed by : none
negated conditional → NO_COVERAGE

388

1.1
Location : edges
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::EO → NO_COVERAGE

391

1.1
Location : edges
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekContext::setDirected → NO_COVERAGE

393

1.1
Location : edges
Killed by : none
negated conditional → NO_COVERAGE

398

1.1
Location : edges
Killed by : none
negated conditional → NO_COVERAGE

399

1.1
Location : edges
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::edge → NO_COVERAGE

400

1.1
Location : edges
Killed by : none
negated conditional → NO_COVERAGE

407

1.1
Location : edges
Killed by : none
negated conditional → NO_COVERAGE

409

1.1
Location : edges
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::EO → NO_COVERAGE

412

1.1
Location : edges
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekContext::setDirected → NO_COVERAGE

414

1.1
Location : edges
Killed by : none
negated conditional → NO_COVERAGE

419

1.1
Location : edges
Killed by : none
negated conditional → NO_COVERAGE

420

1.1
Location : edges
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::edge → NO_COVERAGE

421

1.1
Location : edges
Killed by : none
negated conditional → NO_COVERAGE

428

1.1
Location : edges
Killed by : none
negated conditional → NO_COVERAGE

430

1.1
Location : edges
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::EO → NO_COVERAGE

433

1.1
Location : edges
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekContext::setDirected → NO_COVERAGE

435

1.1
Location : edges
Killed by : none
negated conditional → NO_COVERAGE

440

1.1
Location : edges
Killed by : none
negated conditional → NO_COVERAGE

441

1.1
Location : edges
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::edgeList → NO_COVERAGE

442

1.1
Location : edges
Killed by : none
negated conditional → NO_COVERAGE

449

1.1
Location : edges
Killed by : none
negated conditional → NO_COVERAGE

451

1.1
Location : edges
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::EO → NO_COVERAGE

454

1.1
Location : edges
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekContext::setDirected → NO_COVERAGE

456

1.1
Location : edges
Killed by : none
negated conditional → NO_COVERAGE

461

1.1
Location : edges
Killed by : none
negated conditional → NO_COVERAGE

462

1.1
Location : edges
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::edgeList → NO_COVERAGE

463

1.1
Location : edges
Killed by : none
negated conditional → NO_COVERAGE

470

1.1
Location : edges
Killed by : none
negated conditional → NO_COVERAGE

471

1.1
Location : edges
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::matrix → NO_COVERAGE

472

1.1
Location : edges
Killed by : none
negated conditional → NO_COVERAGE

487

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

488

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

490

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

496

1.1
Location : edge
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekContext::addEdgeWeight → NO_COVERAGE

498

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

503

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

506

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

508

1.1
Location : edge
Killed by : none
removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE

509

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

512

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

514

1.1
Location : edge
Killed by : none
removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE

515

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

518

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

520

1.1
Location : edge
Killed by : none
removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE

521

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

524

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

526

1.1
Location : edge
Killed by : none
removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE

527

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

529

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

531

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

537

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

539

1.1
Location : edge
Killed by : none
removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE

540

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

543

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

545

1.1
Location : edge
Killed by : none
removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE

546

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

549

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

551

1.1
Location : edge
Killed by : none
removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE

552

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

555

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

557

1.1
Location : edge
Killed by : none
removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE

558

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

561

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

563

1.1
Location : edge
Killed by : none
removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE

564

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

567

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

569

1.1
Location : edge
Killed by : none
removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE

570

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

573

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

575

1.1
Location : edge
Killed by : none
removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE

576

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

579

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

581

1.1
Location : edge
Killed by : none
removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE

582

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

585

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

587

1.1
Location : edge
Killed by : none
removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE

588

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

591

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

593

1.1
Location : edge
Killed by : none
removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE

594

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

597

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

599

1.1
Location : edge
Killed by : none
removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE

600

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

603

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

605

1.1
Location : edge
Killed by : none
removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE

606

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

609

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

611

1.1
Location : edge
Killed by : none
removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE

612

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

615

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

617

1.1
Location : edge
Killed by : none
removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE

618

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

621

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

623

1.1
Location : edge
Killed by : none
removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE

624

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

627

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

629

1.1
Location : edge
Killed by : none
removed call to org/graphstream/stream/file/pajek/EdgeGraphics::addKey → NO_COVERAGE

636

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

641

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

643

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

655

1.1
Location : edge
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::EO → NO_COVERAGE

656

1.1
Location : edge
Killed by : none
negated conditional → NO_COVERAGE

657

1.1
Location : edge
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekContext::addEdgeGraphics → NO_COVERAGE

667

1.1
Location : edgeList
Killed by : none
negated conditional → NO_COVERAGE

673

1.1
Location : edgeList
Killed by : none
negated conditional → NO_COVERAGE

676

1.1
Location : edgeList
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::EO → NO_COVERAGE

686

1.1
Location : matrix
Killed by : none
negated conditional → NO_COVERAGE

693

1.1
Location : matrix
Killed by : none
negated conditional → NO_COVERAGE

695

1.1
Location : matrix
Killed by : none
removed call to org/graphstream/stream/file/pajek/EdgeMatrix::addLine → NO_COVERAGE

696

1.1
Location : matrix
Killed by : none
negated conditional → NO_COVERAGE

702

1.1
Location : matrix
Killed by : none
negated conditional → NO_COVERAGE

708

1.1
Location : matrix
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekContext::addEdges → NO_COVERAGE

718

1.1
Location : matrixline
Killed by : none
negated conditional → NO_COVERAGE

724

1.1
Location : matrixline
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::EO → NO_COVERAGE

726

1.1
Location : matrixline
Killed by : none
mutated return of Object value for org/graphstream/stream/file/pajek/PajekParser::matrixline to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

733

1.1
Location : keyOrString
Killed by : none
negated conditional → NO_COVERAGE

736

1.1
Location : keyOrString
Killed by : none
negated conditional → NO_COVERAGE

738

1.1
Location : keyOrString
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

744

1.1
Location : keyOrString
Killed by : none
mutated return of Object value for org/graphstream/stream/file/pajek/PajekParser::keyOrString to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

749

1.1
Location : number
Killed by : none
negated conditional → NO_COVERAGE

751

1.1
Location : number
Killed by : none
negated conditional → NO_COVERAGE

758

1.1
Location : number
Killed by : none
mutated return of Object value for org/graphstream/stream/file/pajek/PajekParser::number to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

764

1.1
Location : color
Killed by : none
negated conditional → NO_COVERAGE

766

1.1
Location : color
Killed by : none
negated conditional → NO_COVERAGE

771

1.1
Location : color
Killed by : none
negated conditional → NO_COVERAGE

781

1.1
Location : color
Killed by : none
mutated return of Object value for org/graphstream/stream/file/pajek/PajekParser::color to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

785

1.1
Location : EO
Killed by : none
negated conditional → NO_COVERAGE

788

1.1
Location : EO
Killed by : none
negated conditional → NO_COVERAGE

794

1.1
Location : EO
Killed by : none
negated conditional → NO_COVERAGE

804

1.1
Location : anyGraphicAttribute
Killed by : none
negated conditional → NO_COVERAGE

806

1.1
Location : anyGraphicAttribute
Killed by : none
negated conditional → NO_COVERAGE

808

1.1
Location : anyGraphicAttribute
Killed by : none
negated conditional → NO_COVERAGE

810

1.1
Location : anyGraphicAttribute
Killed by : none
negated conditional → NO_COVERAGE

812

1.1
Location : anyGraphicAttribute
Killed by : none
negated conditional → NO_COVERAGE

814

1.1
Location : anyGraphicAttribute
Killed by : none
negated conditional → NO_COVERAGE

816

1.1
Location : anyGraphicAttribute
Killed by : none
negated conditional → NO_COVERAGE

818

1.1
Location : anyGraphicAttribute
Killed by : none
negated conditional → NO_COVERAGE

820

1.1
Location : anyGraphicAttribute
Killed by : none
negated conditional → NO_COVERAGE

822

1.1
Location : anyGraphicAttribute
Killed by : none
negated conditional → NO_COVERAGE

824

1.1
Location : anyGraphicAttribute
Killed by : none
negated conditional → NO_COVERAGE

826

1.1
Location : anyGraphicAttribute
Killed by : none
negated conditional → NO_COVERAGE

828

1.1
Location : anyGraphicAttribute
Killed by : none
negated conditional → NO_COVERAGE

830

1.1
Location : anyGraphicAttribute
Killed by : none
negated conditional → NO_COVERAGE

832

1.1
Location : anyGraphicAttribute
Killed by : none
negated conditional → NO_COVERAGE

834

1.1
Location : anyGraphicAttribute
Killed by : none
negated conditional → NO_COVERAGE

836

1.1
Location : anyGraphicAttribute
Killed by : none
negated conditional → NO_COVERAGE

838

1.1
Location : anyGraphicAttribute
Killed by : none
negated conditional → NO_COVERAGE

840

1.1
Location : anyGraphicAttribute
Killed by : none
negated conditional → NO_COVERAGE

842

1.1
Location : anyGraphicAttribute
Killed by : none
negated conditional → NO_COVERAGE

844

1.1
Location : anyGraphicAttribute
Killed by : none
negated conditional → NO_COVERAGE

846

1.1
Location : anyGraphicAttribute
Killed by : none
negated conditional → NO_COVERAGE

848

1.1
Location : anyGraphicAttribute
Killed by : none
negated conditional → NO_COVERAGE

850

1.1
Location : anyGraphicAttribute
Killed by : none
negated conditional → NO_COVERAGE

852

1.1
Location : anyGraphicAttribute
Killed by : none
negated conditional → NO_COVERAGE

854

1.1
Location : anyGraphicAttribute
Killed by : none
negated conditional → NO_COVERAGE

856

1.1
Location : anyGraphicAttribute
Killed by : none
negated conditional → NO_COVERAGE

858

1.1
Location : anyGraphicAttribute
Killed by : none
negated conditional → NO_COVERAGE

860

1.1
Location : anyGraphicAttribute
Killed by : none
negated conditional → NO_COVERAGE

862

1.1
Location : anyGraphicAttribute
Killed by : none
negated conditional → NO_COVERAGE

864

1.1
Location : anyGraphicAttribute
Killed by : none
negated conditional → NO_COVERAGE

866

1.1
Location : anyGraphicAttribute
Killed by : none
negated conditional → NO_COVERAGE

868

1.1
Location : anyGraphicAttribute
Killed by : none
negated conditional → NO_COVERAGE

875

1.1
Location : anyGraphicAttribute
Killed by : none
mutated return of Object value for org/graphstream/stream/file/pajek/PajekParser::anyGraphicAttribute to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

880

1.1
Location : validIdentifier
Killed by : none
negated conditional → NO_COVERAGE

882

1.1
Location : validIdentifier
Killed by : none
negated conditional → NO_COVERAGE

884

1.1
Location : validIdentifier
Killed by : none
negated conditional → NO_COVERAGE

886

1.1
Location : validIdentifier
Killed by : none
negated conditional → NO_COVERAGE

888

1.1
Location : validIdentifier
Killed by : none
negated conditional → NO_COVERAGE

890

1.1
Location : validIdentifier
Killed by : none
negated conditional → NO_COVERAGE

892

1.1
Location : validIdentifier
Killed by : none
negated conditional → NO_COVERAGE

894

1.1
Location : validIdentifier
Killed by : none
negated conditional → NO_COVERAGE

896

1.1
Location : validIdentifier
Killed by : none
negated conditional → NO_COVERAGE

898

1.1
Location : validIdentifier
Killed by : none
negated conditional → NO_COVERAGE

900

1.1
Location : validIdentifier
Killed by : none
negated conditional → NO_COVERAGE

902

1.1
Location : validIdentifier
Killed by : none
negated conditional → NO_COVERAGE

904

1.1
Location : validIdentifier
Killed by : none
negated conditional → NO_COVERAGE

906

1.1
Location : validIdentifier
Killed by : none
negated conditional → NO_COVERAGE

908

1.1
Location : validIdentifier
Killed by : none
negated conditional → NO_COVERAGE

910

1.1
Location : validIdentifier
Killed by : none
negated conditional → NO_COVERAGE

912

1.1
Location : validIdentifier
Killed by : none
negated conditional → NO_COVERAGE

914

1.1
Location : validIdentifier
Killed by : none
negated conditional → NO_COVERAGE

916

1.1
Location : validIdentifier
Killed by : none
negated conditional → NO_COVERAGE

918

1.1
Location : validIdentifier
Killed by : none
negated conditional → NO_COVERAGE

920

1.1
Location : validIdentifier
Killed by : none
negated conditional → NO_COVERAGE

922

1.1
Location : validIdentifier
Killed by : none
negated conditional → NO_COVERAGE

924

1.1
Location : validIdentifier
Killed by : none
negated conditional → NO_COVERAGE

926

1.1
Location : validIdentifier
Killed by : none
negated conditional → NO_COVERAGE

928

1.1
Location : validIdentifier
Killed by : none
negated conditional → NO_COVERAGE

930

1.1
Location : validIdentifier
Killed by : none
negated conditional → NO_COVERAGE

932

1.1
Location : validIdentifier
Killed by : none
negated conditional → NO_COVERAGE

934

1.1
Location : validIdentifier
Killed by : none
negated conditional → NO_COVERAGE

936

1.1
Location : validIdentifier
Killed by : none
negated conditional → NO_COVERAGE

938

1.1
Location : validIdentifier
Killed by : none
negated conditional → NO_COVERAGE

940

1.1
Location : validIdentifier
Killed by : none
negated conditional → NO_COVERAGE

942

1.1
Location : validIdentifier
Killed by : none
negated conditional → NO_COVERAGE

944

1.1
Location : validIdentifier
Killed by : none
negated conditional → NO_COVERAGE

951

1.1
Location : validIdentifier
Killed by : none
mutated return of Object value for org/graphstream/stream/file/pajek/PajekParser::validIdentifier to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

958

1.1
Location : jj_2_1
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_1
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

960

1.1
Location : jj_2_1
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

962

1.1
Location : jj_2_1
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_1
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_1
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

970

1.1
Location : jj_2_2
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_2
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

972

1.1
Location : jj_2_2
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

974

1.1
Location : jj_2_2
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_2
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_2
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

982

1.1
Location : jj_2_3
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_3
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

984

1.1
Location : jj_2_3
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

986

1.1
Location : jj_2_3
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_3
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_3
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

994

1.1
Location : jj_2_4
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_4
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

996

1.1
Location : jj_2_4
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

998

1.1
Location : jj_2_4
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_4
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_4
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1006

1.1
Location : jj_2_5
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_5
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1008

1.1
Location : jj_2_5
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1010

1.1
Location : jj_2_5
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_5
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_5
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1018

1.1
Location : jj_2_6
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_6
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1020

1.1
Location : jj_2_6
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1022

1.1
Location : jj_2_6
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_6
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_6
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1030

1.1
Location : jj_2_7
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_7
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1032

1.1
Location : jj_2_7
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1034

1.1
Location : jj_2_7
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_7
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_7
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1042

1.1
Location : jj_2_8
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_8
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1044

1.1
Location : jj_2_8
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1046

1.1
Location : jj_2_8
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_8
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_8
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1054

1.1
Location : jj_2_9
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_9
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1056

1.1
Location : jj_2_9
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1058

1.1
Location : jj_2_9
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_9
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_9
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1066

1.1
Location : jj_2_10
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_10
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1068

1.1
Location : jj_2_10
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1070

1.1
Location : jj_2_10
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_10
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_10
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1078

1.1
Location : jj_2_11
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_11
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1080

1.1
Location : jj_2_11
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1082

1.1
Location : jj_2_11
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_11
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_11
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1090

1.1
Location : jj_2_12
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_12
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1092

1.1
Location : jj_2_12
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1094

1.1
Location : jj_2_12
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_12
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_12
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1102

1.1
Location : jj_2_13
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_13
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1104

1.1
Location : jj_2_13
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1106

1.1
Location : jj_2_13
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_13
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_13
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1114

1.1
Location : jj_2_14
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_14
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1116

1.1
Location : jj_2_14
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1118

1.1
Location : jj_2_14
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_14
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_14
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1126

1.1
Location : jj_2_15
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_15
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1128

1.1
Location : jj_2_15
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1130

1.1
Location : jj_2_15
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_15
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_15
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1138

1.1
Location : jj_2_16
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_16
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1140

1.1
Location : jj_2_16
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1142

1.1
Location : jj_2_16
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_16
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_16
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1150

1.1
Location : jj_2_17
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_17
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1152

1.1
Location : jj_2_17
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1154

1.1
Location : jj_2_17
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_17
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_17
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1162

1.1
Location : jj_2_18
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_18
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1164

1.1
Location : jj_2_18
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1166

1.1
Location : jj_2_18
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_18
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_18
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1174

1.1
Location : jj_2_19
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_19
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1176

1.1
Location : jj_2_19
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1178

1.1
Location : jj_2_19
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_19
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_19
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1186

1.1
Location : jj_2_20
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_20
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1188

1.1
Location : jj_2_20
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1190

1.1
Location : jj_2_20
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_20
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_20
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1198

1.1
Location : jj_2_21
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_21
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1200

1.1
Location : jj_2_21
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1202

1.1
Location : jj_2_21
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_21
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_21
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1210

1.1
Location : jj_2_22
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_22
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1212

1.1
Location : jj_2_22
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1214

1.1
Location : jj_2_22
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_22
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_22
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1222

1.1
Location : jj_2_23
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_23
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1224

1.1
Location : jj_2_23
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1226

1.1
Location : jj_2_23
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_23
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_23
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1234

1.1
Location : jj_2_24
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_24
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1236

1.1
Location : jj_2_24
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1238

1.1
Location : jj_2_24
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_24
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_24
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1246

1.1
Location : jj_2_25
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_25
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1248

1.1
Location : jj_2_25
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1250

1.1
Location : jj_2_25
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_25
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_25
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1258

1.1
Location : jj_2_26
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_26
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1260

1.1
Location : jj_2_26
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1262

1.1
Location : jj_2_26
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_26
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_26
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1270

1.1
Location : jj_2_27
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_27
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1272

1.1
Location : jj_2_27
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1274

1.1
Location : jj_2_27
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_27
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_27
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1282

1.1
Location : jj_2_28
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_28
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1284

1.1
Location : jj_2_28
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1286

1.1
Location : jj_2_28
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_28
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_28
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1294

1.1
Location : jj_2_29
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_29
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1296

1.1
Location : jj_2_29
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1298

1.1
Location : jj_2_29
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_29
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_29
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1306

1.1
Location : jj_2_30
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_30
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1308

1.1
Location : jj_2_30
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1310

1.1
Location : jj_2_30
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_30
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_30
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1318

1.1
Location : jj_2_31
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_31
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1320

1.1
Location : jj_2_31
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1322

1.1
Location : jj_2_31
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_31
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_31
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1330

1.1
Location : jj_2_32
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_32
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1332

1.1
Location : jj_2_32
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1334

1.1
Location : jj_2_32
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_32
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_32
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1342

1.1
Location : jj_2_33
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_33
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1344

1.1
Location : jj_2_33
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1346

1.1
Location : jj_2_33
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_33
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_33
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1354

1.1
Location : jj_2_34
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_34
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1356

1.1
Location : jj_2_34
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1358

1.1
Location : jj_2_34
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_34
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_34
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1366

1.1
Location : jj_2_35
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_35
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1368

1.1
Location : jj_2_35
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1370

1.1
Location : jj_2_35
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_35
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_35
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1378

1.1
Location : jj_2_36
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_36
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1380

1.1
Location : jj_2_36
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1382

1.1
Location : jj_2_36
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_36
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_36
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1390

1.1
Location : jj_2_37
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_37
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1392

1.1
Location : jj_2_37
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1394

1.1
Location : jj_2_37
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_37
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_37
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1402

1.1
Location : jj_2_38
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_38
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1404

1.1
Location : jj_2_38
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1406

1.1
Location : jj_2_38
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_38
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_38
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1414

1.1
Location : jj_2_39
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_39
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1416

1.1
Location : jj_2_39
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1418

1.1
Location : jj_2_39
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_39
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_39
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1426

1.1
Location : jj_2_40
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_40
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1428

1.1
Location : jj_2_40
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1430

1.1
Location : jj_2_40
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_40
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_40
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1438

1.1
Location : jj_2_41
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_41
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1440

1.1
Location : jj_2_41
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1442

1.1
Location : jj_2_41
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_41
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_41
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1450

1.1
Location : jj_2_42
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_42
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1452

1.1
Location : jj_2_42
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1454

1.1
Location : jj_2_42
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_42
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_42
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1462

1.1
Location : jj_2_43
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_43
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1464

1.1
Location : jj_2_43
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1466

1.1
Location : jj_2_43
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_43
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_43
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1474

1.1
Location : jj_2_44
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_44
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1476

1.1
Location : jj_2_44
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1478

1.1
Location : jj_2_44
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_44
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_44
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1486

1.1
Location : jj_2_45
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_45
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1488

1.1
Location : jj_2_45
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1490

1.1
Location : jj_2_45
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_45
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_45
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1498

1.1
Location : jj_2_46
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_46
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1500

1.1
Location : jj_2_46
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1502

1.1
Location : jj_2_46
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_46
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_46
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1510

1.1
Location : jj_2_47
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_47
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1512

1.1
Location : jj_2_47
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1514

1.1
Location : jj_2_47
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_47
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_47
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1522

1.1
Location : jj_2_48
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_48
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1524

1.1
Location : jj_2_48
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1526

1.1
Location : jj_2_48
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_48
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_48
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1534

1.1
Location : jj_2_49
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_49
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1536

1.1
Location : jj_2_49
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1538

1.1
Location : jj_2_49
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_49
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_49
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1546

1.1
Location : jj_2_50
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_50
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1548

1.1
Location : jj_2_50
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1550

1.1
Location : jj_2_50
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_50
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_50
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1558

1.1
Location : jj_2_51
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_51
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1560

1.1
Location : jj_2_51
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1562

1.1
Location : jj_2_51
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_51
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_51
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1570

1.1
Location : jj_2_52
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_52
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1572

1.1
Location : jj_2_52
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1574

1.1
Location : jj_2_52
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_52
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_52
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1582

1.1
Location : jj_2_53
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_53
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1584

1.1
Location : jj_2_53
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1586

1.1
Location : jj_2_53
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_53
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_53
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1594

1.1
Location : jj_2_54
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_54
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1596

1.1
Location : jj_2_54
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1598

1.1
Location : jj_2_54
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_54
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_54
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1606

1.1
Location : jj_2_55
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_55
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1608

1.1
Location : jj_2_55
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1610

1.1
Location : jj_2_55
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_55
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_55
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1618

1.1
Location : jj_2_56
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_56
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1620

1.1
Location : jj_2_56
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1622

1.1
Location : jj_2_56
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_56
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_56
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1630

1.1
Location : jj_2_57
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_57
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1632

1.1
Location : jj_2_57
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1634

1.1
Location : jj_2_57
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_57
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_57
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1642

1.1
Location : jj_2_58
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_58
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1644

1.1
Location : jj_2_58
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1646

1.1
Location : jj_2_58
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_58
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_58
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1654

1.1
Location : jj_2_59
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_59
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1656

1.1
Location : jj_2_59
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1658

1.1
Location : jj_2_59
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_59
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_59
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1666

1.1
Location : jj_2_60
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_60
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1668

1.1
Location : jj_2_60
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1670

1.1
Location : jj_2_60
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_60
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_60
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1678

1.1
Location : jj_2_61
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_61
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1680

1.1
Location : jj_2_61
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1682

1.1
Location : jj_2_61
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_61
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_61
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1690

1.1
Location : jj_2_62
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_62
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1692

1.1
Location : jj_2_62
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1694

1.1
Location : jj_2_62
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_62
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_62
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1702

1.1
Location : jj_2_63
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_63
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1704

1.1
Location : jj_2_63
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1706

1.1
Location : jj_2_63
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_63
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_63
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1714

1.1
Location : jj_2_64
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_64
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1716

1.1
Location : jj_2_64
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1718

1.1
Location : jj_2_64
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_64
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_64
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1726

1.1
Location : jj_2_65
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_65
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1728

1.1
Location : jj_2_65
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1730

1.1
Location : jj_2_65
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_65
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_65
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1738

1.1
Location : jj_2_66
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_66
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1740

1.1
Location : jj_2_66
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1742

1.1
Location : jj_2_66
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_66
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_66
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1750

1.1
Location : jj_2_67
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_67
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1752

1.1
Location : jj_2_67
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1754

1.1
Location : jj_2_67
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_67
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_67
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1762

1.1
Location : jj_2_68
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_68
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1764

1.1
Location : jj_2_68
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1766

1.1
Location : jj_2_68
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_68
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_68
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1774

1.1
Location : jj_2_69
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_69
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1776

1.1
Location : jj_2_69
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1778

1.1
Location : jj_2_69
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_69
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_69
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1786

1.1
Location : jj_2_70
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_70
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1788

1.1
Location : jj_2_70
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1790

1.1
Location : jj_2_70
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_70
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_70
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1798

1.1
Location : jj_2_71
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_71
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1800

1.1
Location : jj_2_71
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1802

1.1
Location : jj_2_71
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_71
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_71
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1810

1.1
Location : jj_2_72
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_72
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1812

1.1
Location : jj_2_72
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1814

1.1
Location : jj_2_72
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_72
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_72
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1822

1.1
Location : jj_2_73
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_73
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1824

1.1
Location : jj_2_73
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1826

1.1
Location : jj_2_73
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_73
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_73
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1834

1.1
Location : jj_2_74
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_74
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1836

1.1
Location : jj_2_74
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1838

1.1
Location : jj_2_74
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_74
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_74
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1846

1.1
Location : jj_2_75
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_75
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1848

1.1
Location : jj_2_75
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1850

1.1
Location : jj_2_75
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_75
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_75
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1858

1.1
Location : jj_2_76
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_76
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1860

1.1
Location : jj_2_76
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1862

1.1
Location : jj_2_76
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_76
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_76
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1870

1.1
Location : jj_2_77
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_77
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1872

1.1
Location : jj_2_77
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1874

1.1
Location : jj_2_77
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_77
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_77
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1882

1.1
Location : jj_2_78
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_78
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1884

1.1
Location : jj_2_78
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1886

1.1
Location : jj_2_78
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_78
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_78
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1894

1.1
Location : jj_2_79
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_79
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1896

1.1
Location : jj_2_79
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1898

1.1
Location : jj_2_79
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_79
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_79
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1906

1.1
Location : jj_2_80
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_80
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1908

1.1
Location : jj_2_80
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1910

1.1
Location : jj_2_80
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_80
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_80
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1918

1.1
Location : jj_2_81
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_81
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1920

1.1
Location : jj_2_81
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1922

1.1
Location : jj_2_81
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_81
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_81
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1930

1.1
Location : jj_2_82
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_82
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1932

1.1
Location : jj_2_82
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1934

1.1
Location : jj_2_82
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_82
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_82
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1942

1.1
Location : jj_2_83
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_83
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1944

1.1
Location : jj_2_83
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1946

1.1
Location : jj_2_83
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_83
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_83
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1954

1.1
Location : jj_2_84
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_84
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1956

1.1
Location : jj_2_84
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1958

1.1
Location : jj_2_84
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_84
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_84
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1966

1.1
Location : jj_2_85
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_85
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1968

1.1
Location : jj_2_85
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1970

1.1
Location : jj_2_85
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_85
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_85
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1978

1.1
Location : jj_2_86
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_86
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1980

1.1
Location : jj_2_86
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1982

1.1
Location : jj_2_86
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_86
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_86
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

1990

1.1
Location : jj_2_87
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_87
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1992

1.1
Location : jj_2_87
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

1994

1.1
Location : jj_2_87
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_87
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_87
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2002

1.1
Location : jj_2_88
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_88
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2004

1.1
Location : jj_2_88
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2006

1.1
Location : jj_2_88
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_88
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_88
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2014

1.1
Location : jj_2_89
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_89
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2016

1.1
Location : jj_2_89
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2018

1.1
Location : jj_2_89
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_89
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_89
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2026

1.1
Location : jj_2_90
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_90
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2028

1.1
Location : jj_2_90
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2030

1.1
Location : jj_2_90
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_90
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_90
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2038

1.1
Location : jj_2_91
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_91
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2040

1.1
Location : jj_2_91
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2042

1.1
Location : jj_2_91
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_91
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_91
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2050

1.1
Location : jj_2_92
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_92
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2052

1.1
Location : jj_2_92
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2054

1.1
Location : jj_2_92
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_92
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_92
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2062

1.1
Location : jj_2_93
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_93
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2064

1.1
Location : jj_2_93
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2066

1.1
Location : jj_2_93
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_93
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_93
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2074

1.1
Location : jj_2_94
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_94
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2076

1.1
Location : jj_2_94
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2078

1.1
Location : jj_2_94
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_94
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_94
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2086

1.1
Location : jj_2_95
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_95
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2088

1.1
Location : jj_2_95
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2090

1.1
Location : jj_2_95
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_95
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_95
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2098

1.1
Location : jj_2_96
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_96
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2100

1.1
Location : jj_2_96
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2102

1.1
Location : jj_2_96
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_96
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_96
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2110

1.1
Location : jj_2_97
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_97
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2112

1.1
Location : jj_2_97
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2114

1.1
Location : jj_2_97
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_97
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_97
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2122

1.1
Location : jj_2_98
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_98
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2124

1.1
Location : jj_2_98
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2126

1.1
Location : jj_2_98
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_98
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_98
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2134

1.1
Location : jj_2_99
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_99
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2136

1.1
Location : jj_2_99
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2138

1.1
Location : jj_2_99
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_99
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_99
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2146

1.1
Location : jj_2_100
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_100
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2148

1.1
Location : jj_2_100
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2150

1.1
Location : jj_2_100
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_100
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_100
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2158

1.1
Location : jj_2_101
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_101
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2160

1.1
Location : jj_2_101
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2162

1.1
Location : jj_2_101
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_101
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_101
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2170

1.1
Location : jj_2_102
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_102
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2172

1.1
Location : jj_2_102
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2174

1.1
Location : jj_2_102
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_102
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_102
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2182

1.1
Location : jj_2_103
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_103
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2184

1.1
Location : jj_2_103
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2186

1.1
Location : jj_2_103
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_103
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_103
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2194

1.1
Location : jj_2_104
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_104
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2196

1.1
Location : jj_2_104
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2198

1.1
Location : jj_2_104
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_104
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_104
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2206

1.1
Location : jj_2_105
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_105
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2208

1.1
Location : jj_2_105
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2210

1.1
Location : jj_2_105
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_105
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_105
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2218

1.1
Location : jj_2_106
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_106
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2220

1.1
Location : jj_2_106
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2222

1.1
Location : jj_2_106
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_106
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_106
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2230

1.1
Location : jj_2_107
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_107
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2232

1.1
Location : jj_2_107
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2234

1.1
Location : jj_2_107
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_107
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_107
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2242

1.1
Location : jj_2_108
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_108
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2244

1.1
Location : jj_2_108
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2246

1.1
Location : jj_2_108
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_108
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_108
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2254

1.1
Location : jj_2_109
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_109
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2256

1.1
Location : jj_2_109
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2258

1.1
Location : jj_2_109
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_109
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_109
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2266

1.1
Location : jj_2_110
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_110
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2268

1.1
Location : jj_2_110
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2270

1.1
Location : jj_2_110
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_110
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_110
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2278

1.1
Location : jj_2_111
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_111
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2280

1.1
Location : jj_2_111
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2282

1.1
Location : jj_2_111
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_111
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_111
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2290

1.1
Location : jj_2_112
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_112
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2292

1.1
Location : jj_2_112
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2294

1.1
Location : jj_2_112
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_112
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_112
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2302

1.1
Location : jj_2_113
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_113
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2304

1.1
Location : jj_2_113
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2306

1.1
Location : jj_2_113
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_113
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_113
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2314

1.1
Location : jj_2_114
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_114
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2316

1.1
Location : jj_2_114
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2318

1.1
Location : jj_2_114
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_114
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_114
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2326

1.1
Location : jj_2_115
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_115
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2328

1.1
Location : jj_2_115
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2330

1.1
Location : jj_2_115
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_115
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_115
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2338

1.1
Location : jj_2_116
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_116
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2340

1.1
Location : jj_2_116
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2342

1.1
Location : jj_2_116
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_116
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_116
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2350

1.1
Location : jj_2_117
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_117
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2352

1.1
Location : jj_2_117
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2354

1.1
Location : jj_2_117
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_117
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_117
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2362

1.1
Location : jj_2_118
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_118
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2364

1.1
Location : jj_2_118
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2366

1.1
Location : jj_2_118
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_118
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_118
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2374

1.1
Location : jj_2_119
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_119
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2376

1.1
Location : jj_2_119
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2378

1.1
Location : jj_2_119
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_119
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_119
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2386

1.1
Location : jj_2_120
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_120
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2388

1.1
Location : jj_2_120
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2390

1.1
Location : jj_2_120
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_120
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_120
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2398

1.1
Location : jj_2_121
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_121
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2400

1.1
Location : jj_2_121
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2402

1.1
Location : jj_2_121
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_121
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_121
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2410

1.1
Location : jj_2_122
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_122
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2412

1.1
Location : jj_2_122
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2414

1.1
Location : jj_2_122
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_122
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_122
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2422

1.1
Location : jj_2_123
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_123
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2424

1.1
Location : jj_2_123
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2426

1.1
Location : jj_2_123
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_123
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_123
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2434

1.1
Location : jj_2_124
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_124
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2436

1.1
Location : jj_2_124
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2438

1.1
Location : jj_2_124
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_124
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_124
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2446

1.1
Location : jj_2_125
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_125
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2448

1.1
Location : jj_2_125
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2450

1.1
Location : jj_2_125
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_125
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_125
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2458

1.1
Location : jj_2_126
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_126
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2460

1.1
Location : jj_2_126
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2462

1.1
Location : jj_2_126
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_126
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_126
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2470

1.1
Location : jj_2_127
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_127
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2472

1.1
Location : jj_2_127
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2474

1.1
Location : jj_2_127
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_127
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_127
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2482

1.1
Location : jj_2_128
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_128
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2484

1.1
Location : jj_2_128
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2486

1.1
Location : jj_2_128
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_128
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_128
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2494

1.1
Location : jj_2_129
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_129
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2496

1.1
Location : jj_2_129
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2498

1.1
Location : jj_2_129
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_129
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_129
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2506

1.1
Location : jj_2_130
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_130
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2508

1.1
Location : jj_2_130
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2510

1.1
Location : jj_2_130
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_130
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_130
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2518

1.1
Location : jj_2_131
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_131
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2520

1.1
Location : jj_2_131
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2522

1.1
Location : jj_2_131
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_131
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_131
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2530

1.1
Location : jj_2_132
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_132
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2532

1.1
Location : jj_2_132
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2534

1.1
Location : jj_2_132
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_132
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_132
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2542

1.1
Location : jj_2_133
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_133
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2544

1.1
Location : jj_2_133
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2546

1.1
Location : jj_2_133
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_133
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_133
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2554

1.1
Location : jj_2_134
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_134
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2556

1.1
Location : jj_2_134
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2558

1.1
Location : jj_2_134
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_134
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_134
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2566

1.1
Location : jj_2_135
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_135
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2568

1.1
Location : jj_2_135
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2570

1.1
Location : jj_2_135
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_135
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_135
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2578

1.1
Location : jj_2_136
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_136
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2580

1.1
Location : jj_2_136
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2582

1.1
Location : jj_2_136
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_136
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_136
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2590

1.1
Location : jj_2_137
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_137
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2592

1.1
Location : jj_2_137
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2594

1.1
Location : jj_2_137
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_137
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_137
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2602

1.1
Location : jj_2_138
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_138
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2604

1.1
Location : jj_2_138
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2606

1.1
Location : jj_2_138
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_138
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_138
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2614

1.1
Location : jj_2_139
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_139
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2616

1.1
Location : jj_2_139
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2618

1.1
Location : jj_2_139
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_139
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_139
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2626

1.1
Location : jj_2_140
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_140
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2628

1.1
Location : jj_2_140
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2630

1.1
Location : jj_2_140
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_140
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_140
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2638

1.1
Location : jj_2_141
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_141
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2640

1.1
Location : jj_2_141
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2642

1.1
Location : jj_2_141
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_141
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_141
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2650

1.1
Location : jj_2_142
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_142
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2652

1.1
Location : jj_2_142
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2654

1.1
Location : jj_2_142
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_142
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_142
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2662

1.1
Location : jj_2_143
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_143
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2664

1.1
Location : jj_2_143
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2666

1.1
Location : jj_2_143
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_143
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_143
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2674

1.1
Location : jj_2_144
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_144
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2676

1.1
Location : jj_2_144
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2678

1.1
Location : jj_2_144
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_144
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_144
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2686

1.1
Location : jj_2_145
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_145
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2688

1.1
Location : jj_2_145
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2690

1.1
Location : jj_2_145
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_145
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_145
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2698

1.1
Location : jj_2_146
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_146
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2700

1.1
Location : jj_2_146
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2702

1.1
Location : jj_2_146
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_146
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_146
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2710

1.1
Location : jj_2_147
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_147
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2712

1.1
Location : jj_2_147
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2714

1.1
Location : jj_2_147
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_147
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_147
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2722

1.1
Location : jj_2_148
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_148
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2724

1.1
Location : jj_2_148
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2726

1.1
Location : jj_2_148
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_148
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_148
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2734

1.1
Location : jj_2_149
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_149
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2736

1.1
Location : jj_2_149
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2738

1.1
Location : jj_2_149
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_149
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_149
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2746

1.1
Location : jj_2_150
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_150
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2748

1.1
Location : jj_2_150
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2750

1.1
Location : jj_2_150
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_150
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_150
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2758

1.1
Location : jj_2_151
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_151
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2760

1.1
Location : jj_2_151
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2762

1.1
Location : jj_2_151
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_151
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_151
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2770

1.1
Location : jj_2_152
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_152
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2772

1.1
Location : jj_2_152
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2774

1.1
Location : jj_2_152
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_152
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_152
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2782

1.1
Location : jj_2_153
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_153
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2784

1.1
Location : jj_2_153
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2786

1.1
Location : jj_2_153
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_153
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_153
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2794

1.1
Location : jj_2_154
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_154
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2796

1.1
Location : jj_2_154
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2798

1.1
Location : jj_2_154
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_154
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_154
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2806

1.1
Location : jj_2_155
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_155
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2808

1.1
Location : jj_2_155
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2810

1.1
Location : jj_2_155
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_155
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_155
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2818

1.1
Location : jj_2_156
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_156
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2820

1.1
Location : jj_2_156
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2822

1.1
Location : jj_2_156
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_156
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_156
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2830

1.1
Location : jj_2_157
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_157
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2832

1.1
Location : jj_2_157
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2834

1.1
Location : jj_2_157
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_157
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_157
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2842

1.1
Location : jj_2_158
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_158
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2844

1.1
Location : jj_2_158
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2846

1.1
Location : jj_2_158
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_158
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_158
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2854

1.1
Location : jj_2_159
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_159
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2856

1.1
Location : jj_2_159
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2858

1.1
Location : jj_2_159
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_159
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_159
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2866

1.1
Location : jj_2_160
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_160
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2868

1.1
Location : jj_2_160
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2870

1.1
Location : jj_2_160
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_160
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_160
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2878

1.1
Location : jj_2_161
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_161
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2880

1.1
Location : jj_2_161
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2882

1.1
Location : jj_2_161
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_161
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_161
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2890

1.1
Location : jj_2_162
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_162
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2892

1.1
Location : jj_2_162
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2894

1.1
Location : jj_2_162
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_162
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_162
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2902

1.1
Location : jj_2_163
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_163
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2904

1.1
Location : jj_2_163
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2906

1.1
Location : jj_2_163
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_163
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_163
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2914

1.1
Location : jj_2_164
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_164
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2916

1.1
Location : jj_2_164
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2918

1.1
Location : jj_2_164
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_164
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_164
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2926

1.1
Location : jj_2_165
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_165
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2928

1.1
Location : jj_2_165
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2930

1.1
Location : jj_2_165
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_165
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_165
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2938

1.1
Location : jj_2_166
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_166
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2940

1.1
Location : jj_2_166
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2942

1.1
Location : jj_2_166
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_166
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_166
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2950

1.1
Location : jj_2_167
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_167
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2952

1.1
Location : jj_2_167
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2954

1.1
Location : jj_2_167
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_167
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_167
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2962

1.1
Location : jj_2_168
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_168
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2964

1.1
Location : jj_2_168
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2966

1.1
Location : jj_2_168
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_168
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_168
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2974

1.1
Location : jj_2_169
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_169
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2976

1.1
Location : jj_2_169
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2978

1.1
Location : jj_2_169
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_169
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_169
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2986

1.1
Location : jj_2_170
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_170
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2988

1.1
Location : jj_2_170
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

2990

1.1
Location : jj_2_170
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_170
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_170
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2998

1.1
Location : jj_2_171
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_171
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3000

1.1
Location : jj_2_171
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3002

1.1
Location : jj_2_171
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_171
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_171
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3010

1.1
Location : jj_2_172
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_172
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3012

1.1
Location : jj_2_172
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3014

1.1
Location : jj_2_172
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_172
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_172
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3022

1.1
Location : jj_2_173
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_173
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3024

1.1
Location : jj_2_173
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3026

1.1
Location : jj_2_173
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_173
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_173
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3034

1.1
Location : jj_2_174
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_174
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3036

1.1
Location : jj_2_174
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3038

1.1
Location : jj_2_174
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_174
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_174
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3046

1.1
Location : jj_2_175
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_175
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3048

1.1
Location : jj_2_175
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3050

1.1
Location : jj_2_175
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_175
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_175
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3058

1.1
Location : jj_2_176
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_176
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3060

1.1
Location : jj_2_176
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3062

1.1
Location : jj_2_176
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_176
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_176
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3070

1.1
Location : jj_2_177
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_177
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3072

1.1
Location : jj_2_177
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3074

1.1
Location : jj_2_177
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_177
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_177
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3082

1.1
Location : jj_2_178
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_178
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3084

1.1
Location : jj_2_178
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3086

1.1
Location : jj_2_178
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_178
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_178
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3094

1.1
Location : jj_2_179
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_179
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3096

1.1
Location : jj_2_179
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3098

1.1
Location : jj_2_179
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_179
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_179
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3106

1.1
Location : jj_2_180
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_180
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3108

1.1
Location : jj_2_180
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3110

1.1
Location : jj_2_180
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_180
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_180
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3118

1.1
Location : jj_2_181
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_181
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3120

1.1
Location : jj_2_181
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3122

1.1
Location : jj_2_181
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_181
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_181
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3130

1.1
Location : jj_2_182
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_2_182
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3132

1.1
Location : jj_2_182
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3134

1.1
Location : jj_2_182
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

2.2
Location : jj_2_182
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3.3
Location : jj_2_182
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_save → NO_COVERAGE

3140

1.1
Location : jj_3R_29
Killed by : none
negated conditional → NO_COVERAGE

3141

1.1
Location : jj_3R_29
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3144

1.1
Location : jj_3R_29
Killed by : none
negated conditional → NO_COVERAGE

3149

1.1
Location : jj_3R_29
Killed by : none
negated conditional → NO_COVERAGE

3150

1.1
Location : jj_3R_29
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3151

1.1
Location : jj_3R_29
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3155

1.1
Location : jj_3_102
Killed by : none
negated conditional → NO_COVERAGE

3156

1.1
Location : jj_3_102
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3157

1.1
Location : jj_3_102
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3161

1.1
Location : jj_3_103
Killed by : none
negated conditional → NO_COVERAGE

3162

1.1
Location : jj_3_103
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3163

1.1
Location : jj_3_103
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3169

1.1
Location : jj_3_105
Killed by : none
negated conditional → NO_COVERAGE

3171

1.1
Location : jj_3_105
Killed by : none
negated conditional → NO_COVERAGE

3172

1.1
Location : jj_3_105
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3174

1.1
Location : jj_3_105
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3178

1.1
Location : jj_3R_28
Killed by : none
negated conditional → NO_COVERAGE

3179

1.1
Location : jj_3R_28
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3181

1.1
Location : jj_3R_28
Killed by : none
negated conditional → NO_COVERAGE

3182

1.1
Location : jj_3R_28
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3185

1.1
Location : jj_3R_28
Killed by : none
negated conditional → NO_COVERAGE

3190

1.1
Location : jj_3R_28
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3194

1.1
Location : jj_3_99
Killed by : none
negated conditional → NO_COVERAGE

3195

1.1
Location : jj_3_99
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3196

1.1
Location : jj_3_99
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3200

1.1
Location : jj_3_101
Killed by : none
negated conditional → NO_COVERAGE

3201

1.1
Location : jj_3_101
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3202

1.1
Location : jj_3_101
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3206

1.1
Location : jj_3R_26
Killed by : none
negated conditional → NO_COVERAGE

3207

1.1
Location : jj_3R_26
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3208

1.1
Location : jj_3R_26
Killed by : none
negated conditional → NO_COVERAGE

3209

1.1
Location : jj_3R_26
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3210

1.1
Location : jj_3R_26
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3214

1.1
Location : jj_3_76
Killed by : none
negated conditional → NO_COVERAGE

3215

1.1
Location : jj_3_76
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3216

1.1
Location : jj_3_76
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3220

1.1
Location : jj_3_98
Killed by : none
negated conditional → NO_COVERAGE

3221

1.1
Location : jj_3_98
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3222

1.1
Location : jj_3_98
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3228

1.1
Location : jj_3_97
Killed by : none
negated conditional → NO_COVERAGE

3230

1.1
Location : jj_3_97
Killed by : none
negated conditional → NO_COVERAGE

3231

1.1
Location : jj_3_97
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3233

1.1
Location : jj_3_97
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3237

1.1
Location : jj_3_96
Killed by : none
negated conditional → NO_COVERAGE

3238

1.1
Location : jj_3_96
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3239

1.1
Location : jj_3_96
Killed by : none
negated conditional → NO_COVERAGE

3240

1.1
Location : jj_3_96
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3241

1.1
Location : jj_3_96
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3245

1.1
Location : jj_3_95
Killed by : none
negated conditional → NO_COVERAGE

3246

1.1
Location : jj_3_95
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3247

1.1
Location : jj_3_95
Killed by : none
negated conditional → NO_COVERAGE

3248

1.1
Location : jj_3_95
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3249

1.1
Location : jj_3_95
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3253

1.1
Location : jj_3_94
Killed by : none
negated conditional → NO_COVERAGE

3254

1.1
Location : jj_3_94
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3255

1.1
Location : jj_3_94
Killed by : none
negated conditional → NO_COVERAGE

3256

1.1
Location : jj_3_94
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3257

1.1
Location : jj_3_94
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3261

1.1
Location : jj_3_75
Killed by : none
negated conditional → NO_COVERAGE

3262

1.1
Location : jj_3_75
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3263

1.1
Location : jj_3_75
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3267

1.1
Location : jj_3_93
Killed by : none
negated conditional → NO_COVERAGE

3268

1.1
Location : jj_3_93
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3269

1.1
Location : jj_3_93
Killed by : none
negated conditional → NO_COVERAGE

3270

1.1
Location : jj_3_93
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3271

1.1
Location : jj_3_93
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3275

1.1
Location : jj_3_92
Killed by : none
negated conditional → NO_COVERAGE

3276

1.1
Location : jj_3_92
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3277

1.1
Location : jj_3_92
Killed by : none
negated conditional → NO_COVERAGE

3278

1.1
Location : jj_3_92
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3279

1.1
Location : jj_3_92
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3283

1.1
Location : jj_3_91
Killed by : none
negated conditional → NO_COVERAGE

3284

1.1
Location : jj_3_91
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3285

1.1
Location : jj_3_91
Killed by : none
negated conditional → NO_COVERAGE

3286

1.1
Location : jj_3_91
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3287

1.1
Location : jj_3_91
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3291

1.1
Location : jj_3_90
Killed by : none
negated conditional → NO_COVERAGE

3292

1.1
Location : jj_3_90
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3293

1.1
Location : jj_3_90
Killed by : none
negated conditional → NO_COVERAGE

3294

1.1
Location : jj_3_90
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3295

1.1
Location : jj_3_90
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3299

1.1
Location : jj_3_89
Killed by : none
negated conditional → NO_COVERAGE

3300

1.1
Location : jj_3_89
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3301

1.1
Location : jj_3_89
Killed by : none
negated conditional → NO_COVERAGE

3302

1.1
Location : jj_3_89
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3303

1.1
Location : jj_3_89
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3307

1.1
Location : jj_3_88
Killed by : none
negated conditional → NO_COVERAGE

3308

1.1
Location : jj_3_88
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3309

1.1
Location : jj_3_88
Killed by : none
negated conditional → NO_COVERAGE

3310

1.1
Location : jj_3_88
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3311

1.1
Location : jj_3_88
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3315

1.1
Location : jj_3_87
Killed by : none
negated conditional → NO_COVERAGE

3316

1.1
Location : jj_3_87
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3317

1.1
Location : jj_3_87
Killed by : none
negated conditional → NO_COVERAGE

3318

1.1
Location : jj_3_87
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3319

1.1
Location : jj_3_87
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3323

1.1
Location : jj_3_86
Killed by : none
negated conditional → NO_COVERAGE

3324

1.1
Location : jj_3_86
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3325

1.1
Location : jj_3_86
Killed by : none
negated conditional → NO_COVERAGE

3326

1.1
Location : jj_3_86
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3327

1.1
Location : jj_3_86
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3331

1.1
Location : jj_3_85
Killed by : none
negated conditional → NO_COVERAGE

3332

1.1
Location : jj_3_85
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3333

1.1
Location : jj_3_85
Killed by : none
negated conditional → NO_COVERAGE

3334

1.1
Location : jj_3_85
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3335

1.1
Location : jj_3_85
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3339

1.1
Location : jj_3_84
Killed by : none
negated conditional → NO_COVERAGE

3340

1.1
Location : jj_3_84
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3341

1.1
Location : jj_3_84
Killed by : none
negated conditional → NO_COVERAGE

3342

1.1
Location : jj_3_84
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3343

1.1
Location : jj_3_84
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3347

1.1
Location : jj_3_83
Killed by : none
negated conditional → NO_COVERAGE

3348

1.1
Location : jj_3_83
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3349

1.1
Location : jj_3_83
Killed by : none
negated conditional → NO_COVERAGE

3350

1.1
Location : jj_3_83
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3351

1.1
Location : jj_3_83
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3355

1.1
Location : jj_3_73
Killed by : none
negated conditional → NO_COVERAGE

3356

1.1
Location : jj_3_73
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3357

1.1
Location : jj_3_73
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3361

1.1
Location : jj_3_82
Killed by : none
negated conditional → NO_COVERAGE

3362

1.1
Location : jj_3_82
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3363

1.1
Location : jj_3_82
Killed by : none
negated conditional → NO_COVERAGE

3364

1.1
Location : jj_3_82
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3365

1.1
Location : jj_3_82
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3369

1.1
Location : jj_3_81
Killed by : none
negated conditional → NO_COVERAGE

3370

1.1
Location : jj_3_81
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3373

1.1
Location : jj_3_81
Killed by : none
negated conditional → NO_COVERAGE

3375

1.1
Location : jj_3_81
Killed by : none
negated conditional → NO_COVERAGE

3376

1.1
Location : jj_3_81
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3378

1.1
Location : jj_3_81
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3382

1.1
Location : jj_3_80
Killed by : none
negated conditional → NO_COVERAGE

3383

1.1
Location : jj_3_80
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3384

1.1
Location : jj_3_80
Killed by : none
negated conditional → NO_COVERAGE

3385

1.1
Location : jj_3_80
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3386

1.1
Location : jj_3_80
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3390

1.1
Location : jj_3_79
Killed by : none
negated conditional → NO_COVERAGE

3391

1.1
Location : jj_3_79
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3392

1.1
Location : jj_3_79
Killed by : none
negated conditional → NO_COVERAGE

3393

1.1
Location : jj_3_79
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3394

1.1
Location : jj_3_79
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3398

1.1
Location : jj_3_78
Killed by : none
negated conditional → NO_COVERAGE

3399

1.1
Location : jj_3_78
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3400

1.1
Location : jj_3_78
Killed by : none
negated conditional → NO_COVERAGE

3401

1.1
Location : jj_3_78
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3402

1.1
Location : jj_3_78
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3408

1.1
Location : jj_3_74
Killed by : none
negated conditional → NO_COVERAGE

3410

1.1
Location : jj_3_74
Killed by : none
negated conditional → NO_COVERAGE

3412

1.1
Location : jj_3_74
Killed by : none
negated conditional → NO_COVERAGE

3414

1.1
Location : jj_3_74
Killed by : none
negated conditional → NO_COVERAGE

3416

1.1
Location : jj_3_74
Killed by : none
negated conditional → NO_COVERAGE

3418

1.1
Location : jj_3_74
Killed by : none
negated conditional → NO_COVERAGE

3420

1.1
Location : jj_3_74
Killed by : none
negated conditional → NO_COVERAGE

3422

1.1
Location : jj_3_74
Killed by : none
negated conditional → NO_COVERAGE

3424

1.1
Location : jj_3_74
Killed by : none
negated conditional → NO_COVERAGE

3426

1.1
Location : jj_3_74
Killed by : none
negated conditional → NO_COVERAGE

3428

1.1
Location : jj_3_74
Killed by : none
negated conditional → NO_COVERAGE

3430

1.1
Location : jj_3_74
Killed by : none
negated conditional → NO_COVERAGE

3432

1.1
Location : jj_3_74
Killed by : none
negated conditional → NO_COVERAGE

3434

1.1
Location : jj_3_74
Killed by : none
negated conditional → NO_COVERAGE

3436

1.1
Location : jj_3_74
Killed by : none
negated conditional → NO_COVERAGE

3438

1.1
Location : jj_3_74
Killed by : none
negated conditional → NO_COVERAGE

3440

1.1
Location : jj_3_74
Killed by : none
negated conditional → NO_COVERAGE

3442

1.1
Location : jj_3_74
Killed by : none
negated conditional → NO_COVERAGE

3444

1.1
Location : jj_3_74
Killed by : none
negated conditional → NO_COVERAGE

3446

1.1
Location : jj_3_74
Killed by : none
negated conditional → NO_COVERAGE

3447

1.1
Location : jj_3_74
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3467

1.1
Location : jj_3_74
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3471

1.1
Location : jj_3_77
Killed by : none
negated conditional → NO_COVERAGE

3472

1.1
Location : jj_3_77
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3473

1.1
Location : jj_3_77
Killed by : none
negated conditional → NO_COVERAGE

3474

1.1
Location : jj_3_77
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3475

1.1
Location : jj_3_77
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3479

1.1
Location : jj_3_72
Killed by : none
negated conditional → NO_COVERAGE

3480

1.1
Location : jj_3_72
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3481

1.1
Location : jj_3_72
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3487

1.1
Location : jj_3_100
Killed by : none
negated conditional → NO_COVERAGE

3489

1.1
Location : jj_3_100
Killed by : none
negated conditional → NO_COVERAGE

3490

1.1
Location : jj_3_100
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3494

1.1
Location : jj_3_100
Killed by : none
negated conditional → NO_COVERAGE

3501

1.1
Location : jj_3_100
Killed by : none
negated conditional → NO_COVERAGE

3506

1.1
Location : jj_3_100
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3510

1.1
Location : jj_3R_25
Killed by : none
negated conditional → NO_COVERAGE

3511

1.1
Location : jj_3R_25
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3512

1.1
Location : jj_3R_25
Killed by : none
negated conditional → NO_COVERAGE

3513

1.1
Location : jj_3R_25
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3514

1.1
Location : jj_3R_25
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3518

1.1
Location : jj_3_51
Killed by : none
negated conditional → NO_COVERAGE

3519

1.1
Location : jj_3_51
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3520

1.1
Location : jj_3_51
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3524

1.1
Location : jj_3_24
Killed by : none
negated conditional → NO_COVERAGE

3525

1.1
Location : jj_3_24
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3526

1.1
Location : jj_3_24
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3530

1.1
Location : jj_3_71
Killed by : none
negated conditional → NO_COVERAGE

3531

1.1
Location : jj_3_71
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3532

1.1
Location : jj_3_71
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3536

1.1
Location : jj_3_23
Killed by : none
negated conditional → NO_COVERAGE

3537

1.1
Location : jj_3_23
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3538

1.1
Location : jj_3_23
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3544

1.1
Location : jj_3_25
Killed by : none
negated conditional → NO_COVERAGE

3546

1.1
Location : jj_3_25
Killed by : none
negated conditional → NO_COVERAGE

3547

1.1
Location : jj_3_25
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3549

1.1
Location : jj_3_25
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3553

1.1
Location : jj_3_70
Killed by : none
negated conditional → NO_COVERAGE

3554

1.1
Location : jj_3_70
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3555

1.1
Location : jj_3_70
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3559

1.1
Location : jj_3_69
Killed by : none
negated conditional → NO_COVERAGE

3560

1.1
Location : jj_3_69
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3561

1.1
Location : jj_3_69
Killed by : none
negated conditional → NO_COVERAGE

3562

1.1
Location : jj_3_69
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3563

1.1
Location : jj_3_69
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3567

1.1
Location : jj_3_68
Killed by : none
negated conditional → NO_COVERAGE

3568

1.1
Location : jj_3_68
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3569

1.1
Location : jj_3_68
Killed by : none
negated conditional → NO_COVERAGE

3570

1.1
Location : jj_3_68
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3571

1.1
Location : jj_3_68
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3575

1.1
Location : jj_3_67
Killed by : none
negated conditional → NO_COVERAGE

3576

1.1
Location : jj_3_67
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3577

1.1
Location : jj_3_67
Killed by : none
negated conditional → NO_COVERAGE

3578

1.1
Location : jj_3_67
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3579

1.1
Location : jj_3_67
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3583

1.1
Location : jj_3_66
Killed by : none
negated conditional → NO_COVERAGE

3584

1.1
Location : jj_3_66
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3585

1.1
Location : jj_3_66
Killed by : none
negated conditional → NO_COVERAGE

3586

1.1
Location : jj_3_66
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3587

1.1
Location : jj_3_66
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3593

1.1
Location : jj_3R_19
Killed by : none
negated conditional → NO_COVERAGE

3595

1.1
Location : jj_3R_19
Killed by : none
negated conditional → NO_COVERAGE

3597

1.1
Location : jj_3R_19
Killed by : none
negated conditional → NO_COVERAGE

3599

1.1
Location : jj_3R_19
Killed by : none
negated conditional → NO_COVERAGE

3601

1.1
Location : jj_3R_19
Killed by : none
negated conditional → NO_COVERAGE

3603

1.1
Location : jj_3R_19
Killed by : none
negated conditional → NO_COVERAGE

3604

1.1
Location : jj_3R_19
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3610

1.1
Location : jj_3R_19
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3614

1.1
Location : jj_3_22
Killed by : none
negated conditional → NO_COVERAGE

3615

1.1
Location : jj_3_22
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3616

1.1
Location : jj_3_22
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3620

1.1
Location : jj_3_50
Killed by : none
negated conditional → NO_COVERAGE

3621

1.1
Location : jj_3_50
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3622

1.1
Location : jj_3_50
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3628

1.1
Location : jj_3_49
Killed by : none
negated conditional → NO_COVERAGE

3630

1.1
Location : jj_3_49
Killed by : none
negated conditional → NO_COVERAGE

3631

1.1
Location : jj_3_49
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3633

1.1
Location : jj_3_49
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3637

1.1
Location : jj_3_48
Killed by : none
negated conditional → NO_COVERAGE

3638

1.1
Location : jj_3_48
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3639

1.1
Location : jj_3_48
Killed by : none
negated conditional → NO_COVERAGE

3640

1.1
Location : jj_3_48
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3641

1.1
Location : jj_3_48
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3645

1.1
Location : jj_3_47
Killed by : none
negated conditional → NO_COVERAGE

3646

1.1
Location : jj_3_47
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3647

1.1
Location : jj_3_47
Killed by : none
negated conditional → NO_COVERAGE

3648

1.1
Location : jj_3_47
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3649

1.1
Location : jj_3_47
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3653

1.1
Location : jj_3_46
Killed by : none
negated conditional → NO_COVERAGE

3654

1.1
Location : jj_3_46
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3655

1.1
Location : jj_3_46
Killed by : none
negated conditional → NO_COVERAGE

3656

1.1
Location : jj_3_46
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3657

1.1
Location : jj_3_46
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3661

1.1
Location : jj_3_45
Killed by : none
negated conditional → NO_COVERAGE

3662

1.1
Location : jj_3_45
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3663

1.1
Location : jj_3_45
Killed by : none
negated conditional → NO_COVERAGE

3664

1.1
Location : jj_3_45
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3665

1.1
Location : jj_3_45
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3669

1.1
Location : jj_3_44
Killed by : none
negated conditional → NO_COVERAGE

3670

1.1
Location : jj_3_44
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3671

1.1
Location : jj_3_44
Killed by : none
negated conditional → NO_COVERAGE

3672

1.1
Location : jj_3_44
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3673

1.1
Location : jj_3_44
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3677

1.1
Location : jj_3_43
Killed by : none
negated conditional → NO_COVERAGE

3678

1.1
Location : jj_3_43
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3679

1.1
Location : jj_3_43
Killed by : none
negated conditional → NO_COVERAGE

3680

1.1
Location : jj_3_43
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3681

1.1
Location : jj_3_43
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3685

1.1
Location : jj_3_21
Killed by : none
negated conditional → NO_COVERAGE

3686

1.1
Location : jj_3_21
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3687

1.1
Location : jj_3_21
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3691

1.1
Location : jj_3_42
Killed by : none
negated conditional → NO_COVERAGE

3692

1.1
Location : jj_3_42
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3693

1.1
Location : jj_3_42
Killed by : none
negated conditional → NO_COVERAGE

3694

1.1
Location : jj_3_42
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3695

1.1
Location : jj_3_42
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3699

1.1
Location : jj_3_41
Killed by : none
negated conditional → NO_COVERAGE

3700

1.1
Location : jj_3_41
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3701

1.1
Location : jj_3_41
Killed by : none
negated conditional → NO_COVERAGE

3702

1.1
Location : jj_3_41
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3703

1.1
Location : jj_3_41
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3707

1.1
Location : jj_3_40
Killed by : none
negated conditional → NO_COVERAGE

3708

1.1
Location : jj_3_40
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3709

1.1
Location : jj_3_40
Killed by : none
negated conditional → NO_COVERAGE

3710

1.1
Location : jj_3_40
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3711

1.1
Location : jj_3_40
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3715

1.1
Location : jj_3_39
Killed by : none
negated conditional → NO_COVERAGE

3716

1.1
Location : jj_3_39
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3717

1.1
Location : jj_3_39
Killed by : none
negated conditional → NO_COVERAGE

3718

1.1
Location : jj_3_39
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3719

1.1
Location : jj_3_39
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3723

1.1
Location : jj_3_38
Killed by : none
negated conditional → NO_COVERAGE

3724

1.1
Location : jj_3_38
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3725

1.1
Location : jj_3_38
Killed by : none
negated conditional → NO_COVERAGE

3726

1.1
Location : jj_3_38
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3727

1.1
Location : jj_3_38
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3731

1.1
Location : jj_3_37
Killed by : none
negated conditional → NO_COVERAGE

3732

1.1
Location : jj_3_37
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3733

1.1
Location : jj_3_37
Killed by : none
negated conditional → NO_COVERAGE

3734

1.1
Location : jj_3_37
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3735

1.1
Location : jj_3_37
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3739

1.1
Location : jj_3_36
Killed by : none
negated conditional → NO_COVERAGE

3740

1.1
Location : jj_3_36
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3741

1.1
Location : jj_3_36
Killed by : none
negated conditional → NO_COVERAGE

3742

1.1
Location : jj_3_36
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3743

1.1
Location : jj_3_36
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3747

1.1
Location : jj_3_35
Killed by : none
negated conditional → NO_COVERAGE

3748

1.1
Location : jj_3_35
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3749

1.1
Location : jj_3_35
Killed by : none
negated conditional → NO_COVERAGE

3750

1.1
Location : jj_3_35
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3751

1.1
Location : jj_3_35
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3757

1.1
Location : jj_3_33
Killed by : none
negated conditional → NO_COVERAGE

3759

1.1
Location : jj_3_33
Killed by : none
negated conditional → NO_COVERAGE

3761

1.1
Location : jj_3_33
Killed by : none
negated conditional → NO_COVERAGE

3763

1.1
Location : jj_3_33
Killed by : none
negated conditional → NO_COVERAGE

3765

1.1
Location : jj_3_33
Killed by : none
negated conditional → NO_COVERAGE

3767

1.1
Location : jj_3_33
Killed by : none
negated conditional → NO_COVERAGE

3769

1.1
Location : jj_3_33
Killed by : none
negated conditional → NO_COVERAGE

3771

1.1
Location : jj_3_33
Killed by : none
negated conditional → NO_COVERAGE

3773

1.1
Location : jj_3_33
Killed by : none
negated conditional → NO_COVERAGE

3775

1.1
Location : jj_3_33
Killed by : none
negated conditional → NO_COVERAGE

3777

1.1
Location : jj_3_33
Killed by : none
negated conditional → NO_COVERAGE

3779

1.1
Location : jj_3_33
Killed by : none
negated conditional → NO_COVERAGE

3781

1.1
Location : jj_3_33
Killed by : none
negated conditional → NO_COVERAGE

3783

1.1
Location : jj_3_33
Killed by : none
negated conditional → NO_COVERAGE

3785

1.1
Location : jj_3_33
Killed by : none
negated conditional → NO_COVERAGE

3786

1.1
Location : jj_3_33
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3801

1.1
Location : jj_3_33
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3805

1.1
Location : jj_3_34
Killed by : none
negated conditional → NO_COVERAGE

3806

1.1
Location : jj_3_34
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3807

1.1
Location : jj_3_34
Killed by : none
negated conditional → NO_COVERAGE

3808

1.1
Location : jj_3_34
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3809

1.1
Location : jj_3_34
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3813

1.1
Location : jj_3_20
Killed by : none
negated conditional → NO_COVERAGE

3814

1.1
Location : jj_3_20
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3815

1.1
Location : jj_3_20
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3819

1.1
Location : jj_3_31
Killed by : none
negated conditional → NO_COVERAGE

3820

1.1
Location : jj_3_31
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3821

1.1
Location : jj_3_31
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3825

1.1
Location : jj_3_30
Killed by : none
negated conditional → NO_COVERAGE

3826

1.1
Location : jj_3_30
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3827

1.1
Location : jj_3_30
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3831

1.1
Location : jj_3_29
Killed by : none
negated conditional → NO_COVERAGE

3832

1.1
Location : jj_3_29
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3833

1.1
Location : jj_3_29
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3837

1.1
Location : jj_3_28
Killed by : none
negated conditional → NO_COVERAGE

3838

1.1
Location : jj_3_28
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3839

1.1
Location : jj_3_28
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3843

1.1
Location : jj_3_27
Killed by : none
negated conditional → NO_COVERAGE

3844

1.1
Location : jj_3_27
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3845

1.1
Location : jj_3_27
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3849

1.1
Location : jj_3_26
Killed by : none
negated conditional → NO_COVERAGE

3850

1.1
Location : jj_3_26
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3851

1.1
Location : jj_3_26
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3857

1.1
Location : jj_3_32
Killed by : none
negated conditional → NO_COVERAGE

3859

1.1
Location : jj_3_32
Killed by : none
negated conditional → NO_COVERAGE

3861

1.1
Location : jj_3_32
Killed by : none
negated conditional → NO_COVERAGE

3863

1.1
Location : jj_3_32
Killed by : none
negated conditional → NO_COVERAGE

3865

1.1
Location : jj_3_32
Killed by : none
negated conditional → NO_COVERAGE

3867

1.1
Location : jj_3_32
Killed by : none
negated conditional → NO_COVERAGE

3868

1.1
Location : jj_3_32
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3874

1.1
Location : jj_3_32
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3878

1.1
Location : jj_3_19
Killed by : none
negated conditional → NO_COVERAGE

3879

1.1
Location : jj_3_19
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3880

1.1
Location : jj_3_19
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3886

1.1
Location : jj_3_52
Killed by : none
negated conditional → NO_COVERAGE

3888

1.1
Location : jj_3_52
Killed by : none
negated conditional → NO_COVERAGE

3889

1.1
Location : jj_3_52
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3892

1.1
Location : jj_3_52
Killed by : none
negated conditional → NO_COVERAGE

3894

1.1
Location : jj_3_52
Killed by : none
negated conditional → NO_COVERAGE

3895

1.1
Location : jj_3_52
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3897

1.1
Location : jj_3_52
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3901

1.1
Location : jj_3_53
Killed by : none
negated conditional → NO_COVERAGE

3902

1.1
Location : jj_3_53
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3905

1.1
Location : jj_3_53
Killed by : none
negated conditional → NO_COVERAGE

3907

1.1
Location : jj_3_53
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3911

1.1
Location : jj_3R_20
Killed by : none
negated conditional → NO_COVERAGE

3912

1.1
Location : jj_3R_20
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3915

1.1
Location : jj_3R_20
Killed by : none
negated conditional → NO_COVERAGE

3917

1.1
Location : jj_3R_20
Killed by : none
negated conditional → NO_COVERAGE

3918

1.1
Location : jj_3R_20
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3919

1.1
Location : jj_3R_20
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3923

1.1
Location : jj_3_18
Killed by : none
negated conditional → NO_COVERAGE

3924

1.1
Location : jj_3_18
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3925

1.1
Location : jj_3_18
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3929

1.1
Location : jj_3_17
Killed by : none
negated conditional → NO_COVERAGE

3930

1.1
Location : jj_3_17
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3931

1.1
Location : jj_3_17
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3937

1.1
Location : jj_3_16
Killed by : none
negated conditional → NO_COVERAGE

3939

1.1
Location : jj_3_16
Killed by : none
negated conditional → NO_COVERAGE

3940

1.1
Location : jj_3_16
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3942

1.1
Location : jj_3_16
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3946

1.1
Location : jj_3R_18
Killed by : none
negated conditional → NO_COVERAGE

3947

1.1
Location : jj_3R_18
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3948

1.1
Location : jj_3R_18
Killed by : none
negated conditional → NO_COVERAGE

3949

1.1
Location : jj_3R_18
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3950

1.1
Location : jj_3R_18
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3954

1.1
Location : jj_3_15
Killed by : none
negated conditional → NO_COVERAGE

3955

1.1
Location : jj_3_15
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3956

1.1
Location : jj_3_15
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3960

1.1
Location : jj_3_14
Killed by : none
negated conditional → NO_COVERAGE

3961

1.1
Location : jj_3_14
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3962

1.1
Location : jj_3_14
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3968

1.1
Location : jj_3_13
Killed by : none
negated conditional → NO_COVERAGE

3970

1.1
Location : jj_3_13
Killed by : none
negated conditional → NO_COVERAGE

3971

1.1
Location : jj_3_13
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3973

1.1
Location : jj_3_13
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3977

1.1
Location : jj_3R_17
Killed by : none
negated conditional → NO_COVERAGE

3978

1.1
Location : jj_3R_17
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3982

1.1
Location : jj_3R_17
Killed by : none
negated conditional → NO_COVERAGE

3987

1.1
Location : jj_3R_17
Killed by : none
negated conditional → NO_COVERAGE

3988

1.1
Location : jj_3R_17
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3989

1.1
Location : jj_3R_17
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3993

1.1
Location : jj_3_12
Killed by : none
negated conditional → NO_COVERAGE

3994

1.1
Location : jj_3_12
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3995

1.1
Location : jj_3_12
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

3999

1.1
Location : jj_3_11
Killed by : none
negated conditional → NO_COVERAGE

4000

1.1
Location : jj_3_11
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4001

1.1
Location : jj_3_11
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4005

1.1
Location : jj_3_10
Killed by : none
negated conditional → NO_COVERAGE

4006

1.1
Location : jj_3_10
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4007

1.1
Location : jj_3_10
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4011

1.1
Location : jj_3_9
Killed by : none
negated conditional → NO_COVERAGE

4012

1.1
Location : jj_3_9
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4013

1.1
Location : jj_3_9
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4017

1.1
Location : jj_3_8
Killed by : none
negated conditional → NO_COVERAGE

4018

1.1
Location : jj_3_8
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4019

1.1
Location : jj_3_8
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4023

1.1
Location : jj_3_7
Killed by : none
negated conditional → NO_COVERAGE

4024

1.1
Location : jj_3_7
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4025

1.1
Location : jj_3_7
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4029

1.1
Location : jj_3_5
Killed by : none
negated conditional → NO_COVERAGE

4030

1.1
Location : jj_3_5
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4031

1.1
Location : jj_3_5
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4035

1.1
Location : jj_3_4
Killed by : none
negated conditional → NO_COVERAGE

4036

1.1
Location : jj_3_4
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4037

1.1
Location : jj_3_4
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4041

1.1
Location : jj_3_3
Killed by : none
negated conditional → NO_COVERAGE

4042

1.1
Location : jj_3_3
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4043

1.1
Location : jj_3_3
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4047

1.1
Location : jj_3_2
Killed by : none
negated conditional → NO_COVERAGE

4048

1.1
Location : jj_3_2
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4049

1.1
Location : jj_3_2
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4053

1.1
Location : jj_3_1
Killed by : none
negated conditional → NO_COVERAGE

4054

1.1
Location : jj_3_1
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4055

1.1
Location : jj_3_1
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4061

1.1
Location : jj_3_6
Killed by : none
negated conditional → NO_COVERAGE

4063

1.1
Location : jj_3_6
Killed by : none
negated conditional → NO_COVERAGE

4065

1.1
Location : jj_3_6
Killed by : none
negated conditional → NO_COVERAGE

4067

1.1
Location : jj_3_6
Killed by : none
negated conditional → NO_COVERAGE

4069

1.1
Location : jj_3_6
Killed by : none
negated conditional → NO_COVERAGE

4070

1.1
Location : jj_3_6
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4075

1.1
Location : jj_3_6
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4079

1.1
Location : jj_3_182
Killed by : none
negated conditional → NO_COVERAGE

4080

1.1
Location : jj_3_182
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4081

1.1
Location : jj_3_182
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4085

1.1
Location : jj_3_181
Killed by : none
negated conditional → NO_COVERAGE

4086

1.1
Location : jj_3_181
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4087

1.1
Location : jj_3_181
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4091

1.1
Location : jj_3_180
Killed by : none
negated conditional → NO_COVERAGE

4092

1.1
Location : jj_3_180
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4093

1.1
Location : jj_3_180
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4097

1.1
Location : jj_3_179
Killed by : none
negated conditional → NO_COVERAGE

4098

1.1
Location : jj_3_179
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4099

1.1
Location : jj_3_179
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4103

1.1
Location : jj_3_178
Killed by : none
negated conditional → NO_COVERAGE

4104

1.1
Location : jj_3_178
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4105

1.1
Location : jj_3_178
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4109

1.1
Location : jj_3_177
Killed by : none
negated conditional → NO_COVERAGE

4110

1.1
Location : jj_3_177
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4111

1.1
Location : jj_3_177
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4115

1.1
Location : jj_3_176
Killed by : none
negated conditional → NO_COVERAGE

4116

1.1
Location : jj_3_176
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4117

1.1
Location : jj_3_176
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4121

1.1
Location : jj_3_175
Killed by : none
negated conditional → NO_COVERAGE

4122

1.1
Location : jj_3_175
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4123

1.1
Location : jj_3_175
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4127

1.1
Location : jj_3_174
Killed by : none
negated conditional → NO_COVERAGE

4128

1.1
Location : jj_3_174
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4129

1.1
Location : jj_3_174
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4133

1.1
Location : jj_3_173
Killed by : none
negated conditional → NO_COVERAGE

4134

1.1
Location : jj_3_173
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4135

1.1
Location : jj_3_173
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4139

1.1
Location : jj_3_172
Killed by : none
negated conditional → NO_COVERAGE

4140

1.1
Location : jj_3_172
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4141

1.1
Location : jj_3_172
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4145

1.1
Location : jj_3_171
Killed by : none
negated conditional → NO_COVERAGE

4146

1.1
Location : jj_3_171
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4147

1.1
Location : jj_3_171
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4151

1.1
Location : jj_3_170
Killed by : none
negated conditional → NO_COVERAGE

4152

1.1
Location : jj_3_170
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4153

1.1
Location : jj_3_170
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4157

1.1
Location : jj_3_169
Killed by : none
negated conditional → NO_COVERAGE

4158

1.1
Location : jj_3_169
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4159

1.1
Location : jj_3_169
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4163

1.1
Location : jj_3_168
Killed by : none
negated conditional → NO_COVERAGE

4164

1.1
Location : jj_3_168
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4165

1.1
Location : jj_3_168
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4169

1.1
Location : jj_3_167
Killed by : none
negated conditional → NO_COVERAGE

4170

1.1
Location : jj_3_167
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4171

1.1
Location : jj_3_167
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4175

1.1
Location : jj_3_166
Killed by : none
negated conditional → NO_COVERAGE

4176

1.1
Location : jj_3_166
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4177

1.1
Location : jj_3_166
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4181

1.1
Location : jj_3_165
Killed by : none
negated conditional → NO_COVERAGE

4182

1.1
Location : jj_3_165
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4183

1.1
Location : jj_3_165
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4187

1.1
Location : jj_3_164
Killed by : none
negated conditional → NO_COVERAGE

4188

1.1
Location : jj_3_164
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4189

1.1
Location : jj_3_164
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4193

1.1
Location : jj_3_163
Killed by : none
negated conditional → NO_COVERAGE

4194

1.1
Location : jj_3_163
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4195

1.1
Location : jj_3_163
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4199

1.1
Location : jj_3_162
Killed by : none
negated conditional → NO_COVERAGE

4200

1.1
Location : jj_3_162
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4201

1.1
Location : jj_3_162
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4205

1.1
Location : jj_3_161
Killed by : none
negated conditional → NO_COVERAGE

4206

1.1
Location : jj_3_161
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4207

1.1
Location : jj_3_161
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4211

1.1
Location : jj_3_160
Killed by : none
negated conditional → NO_COVERAGE

4212

1.1
Location : jj_3_160
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4213

1.1
Location : jj_3_160
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4217

1.1
Location : jj_3_159
Killed by : none
negated conditional → NO_COVERAGE

4218

1.1
Location : jj_3_159
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4219

1.1
Location : jj_3_159
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4223

1.1
Location : jj_3_158
Killed by : none
negated conditional → NO_COVERAGE

4224

1.1
Location : jj_3_158
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4225

1.1
Location : jj_3_158
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4229

1.1
Location : jj_3_157
Killed by : none
negated conditional → NO_COVERAGE

4230

1.1
Location : jj_3_157
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4231

1.1
Location : jj_3_157
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4235

1.1
Location : jj_3_156
Killed by : none
negated conditional → NO_COVERAGE

4236

1.1
Location : jj_3_156
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4237

1.1
Location : jj_3_156
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4241

1.1
Location : jj_3_155
Killed by : none
negated conditional → NO_COVERAGE

4242

1.1
Location : jj_3_155
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4243

1.1
Location : jj_3_155
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4247

1.1
Location : jj_3_154
Killed by : none
negated conditional → NO_COVERAGE

4248

1.1
Location : jj_3_154
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4249

1.1
Location : jj_3_154
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4253

1.1
Location : jj_3_153
Killed by : none
negated conditional → NO_COVERAGE

4254

1.1
Location : jj_3_153
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4255

1.1
Location : jj_3_153
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4259

1.1
Location : jj_3_152
Killed by : none
negated conditional → NO_COVERAGE

4260

1.1
Location : jj_3_152
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4261

1.1
Location : jj_3_152
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4265

1.1
Location : jj_3_151
Killed by : none
negated conditional → NO_COVERAGE

4266

1.1
Location : jj_3_151
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4267

1.1
Location : jj_3_151
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4271

1.1
Location : jj_3_150
Killed by : none
negated conditional → NO_COVERAGE

4272

1.1
Location : jj_3_150
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4273

1.1
Location : jj_3_150
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4279

1.1
Location : jj_3R_24
Killed by : none
negated conditional → NO_COVERAGE

4281

1.1
Location : jj_3R_24
Killed by : none
negated conditional → NO_COVERAGE

4283

1.1
Location : jj_3R_24
Killed by : none
negated conditional → NO_COVERAGE

4285

1.1
Location : jj_3R_24
Killed by : none
negated conditional → NO_COVERAGE

4287

1.1
Location : jj_3R_24
Killed by : none
negated conditional → NO_COVERAGE

4289

1.1
Location : jj_3R_24
Killed by : none
negated conditional → NO_COVERAGE

4291

1.1
Location : jj_3R_24
Killed by : none
negated conditional → NO_COVERAGE

4293

1.1
Location : jj_3R_24
Killed by : none
negated conditional → NO_COVERAGE

4295

1.1
Location : jj_3R_24
Killed by : none
negated conditional → NO_COVERAGE

4297

1.1
Location : jj_3R_24
Killed by : none
negated conditional → NO_COVERAGE

4299

1.1
Location : jj_3R_24
Killed by : none
negated conditional → NO_COVERAGE

4301

1.1
Location : jj_3R_24
Killed by : none
negated conditional → NO_COVERAGE

4303

1.1
Location : jj_3R_24
Killed by : none
negated conditional → NO_COVERAGE

4305

1.1
Location : jj_3R_24
Killed by : none
negated conditional → NO_COVERAGE

4307

1.1
Location : jj_3R_24
Killed by : none
negated conditional → NO_COVERAGE

4309

1.1
Location : jj_3R_24
Killed by : none
negated conditional → NO_COVERAGE

4311

1.1
Location : jj_3R_24
Killed by : none
negated conditional → NO_COVERAGE

4313

1.1
Location : jj_3R_24
Killed by : none
negated conditional → NO_COVERAGE

4315

1.1
Location : jj_3R_24
Killed by : none
negated conditional → NO_COVERAGE

4317

1.1
Location : jj_3R_24
Killed by : none
negated conditional → NO_COVERAGE

4319

1.1
Location : jj_3R_24
Killed by : none
negated conditional → NO_COVERAGE

4321

1.1
Location : jj_3R_24
Killed by : none
negated conditional → NO_COVERAGE

4323

1.1
Location : jj_3R_24
Killed by : none
negated conditional → NO_COVERAGE

4325

1.1
Location : jj_3R_24
Killed by : none
negated conditional → NO_COVERAGE

4327

1.1
Location : jj_3R_24
Killed by : none
negated conditional → NO_COVERAGE

4329

1.1
Location : jj_3R_24
Killed by : none
negated conditional → NO_COVERAGE

4331

1.1
Location : jj_3R_24
Killed by : none
negated conditional → NO_COVERAGE

4333

1.1
Location : jj_3R_24
Killed by : none
negated conditional → NO_COVERAGE

4335

1.1
Location : jj_3R_24
Killed by : none
negated conditional → NO_COVERAGE

4337

1.1
Location : jj_3R_24
Killed by : none
negated conditional → NO_COVERAGE

4339

1.1
Location : jj_3R_24
Killed by : none
negated conditional → NO_COVERAGE

4341

1.1
Location : jj_3R_24
Killed by : none
negated conditional → NO_COVERAGE

4343

1.1
Location : jj_3R_24
Killed by : none
negated conditional → NO_COVERAGE

4344

1.1
Location : jj_3R_24
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4377

1.1
Location : jj_3R_24
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4381

1.1
Location : jj_3_149
Killed by : none
negated conditional → NO_COVERAGE

4382

1.1
Location : jj_3_149
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4383

1.1
Location : jj_3_149
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4387

1.1
Location : jj_3_148
Killed by : none
negated conditional → NO_COVERAGE

4388

1.1
Location : jj_3_148
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4389

1.1
Location : jj_3_148
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4393

1.1
Location : jj_3_147
Killed by : none
negated conditional → NO_COVERAGE

4394

1.1
Location : jj_3_147
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4395

1.1
Location : jj_3_147
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4399

1.1
Location : jj_3_146
Killed by : none
negated conditional → NO_COVERAGE

4400

1.1
Location : jj_3_146
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4401

1.1
Location : jj_3_146
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4405

1.1
Location : jj_3_145
Killed by : none
negated conditional → NO_COVERAGE

4406

1.1
Location : jj_3_145
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4407

1.1
Location : jj_3_145
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4411

1.1
Location : jj_3_144
Killed by : none
negated conditional → NO_COVERAGE

4412

1.1
Location : jj_3_144
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4413

1.1
Location : jj_3_144
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4417

1.1
Location : jj_3_143
Killed by : none
negated conditional → NO_COVERAGE

4418

1.1
Location : jj_3_143
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4419

1.1
Location : jj_3_143
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4423

1.1
Location : jj_3_142
Killed by : none
negated conditional → NO_COVERAGE

4424

1.1
Location : jj_3_142
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4425

1.1
Location : jj_3_142
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4429

1.1
Location : jj_3_141
Killed by : none
negated conditional → NO_COVERAGE

4430

1.1
Location : jj_3_141
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4431

1.1
Location : jj_3_141
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4435

1.1
Location : jj_3_140
Killed by : none
negated conditional → NO_COVERAGE

4436

1.1
Location : jj_3_140
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4437

1.1
Location : jj_3_140
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4441

1.1
Location : jj_3_139
Killed by : none
negated conditional → NO_COVERAGE

4442

1.1
Location : jj_3_139
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4443

1.1
Location : jj_3_139
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4447

1.1
Location : jj_3_138
Killed by : none
negated conditional → NO_COVERAGE

4448

1.1
Location : jj_3_138
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4449

1.1
Location : jj_3_138
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4453

1.1
Location : jj_3_137
Killed by : none
negated conditional → NO_COVERAGE

4454

1.1
Location : jj_3_137
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4455

1.1
Location : jj_3_137
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4459

1.1
Location : jj_3_136
Killed by : none
negated conditional → NO_COVERAGE

4460

1.1
Location : jj_3_136
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4461

1.1
Location : jj_3_136
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4465

1.1
Location : jj_3_135
Killed by : none
negated conditional → NO_COVERAGE

4466

1.1
Location : jj_3_135
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4467

1.1
Location : jj_3_135
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4471

1.1
Location : jj_3_134
Killed by : none
negated conditional → NO_COVERAGE

4472

1.1
Location : jj_3_134
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4473

1.1
Location : jj_3_134
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4477

1.1
Location : jj_3_133
Killed by : none
negated conditional → NO_COVERAGE

4478

1.1
Location : jj_3_133
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4479

1.1
Location : jj_3_133
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4483

1.1
Location : jj_3_132
Killed by : none
negated conditional → NO_COVERAGE

4484

1.1
Location : jj_3_132
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4485

1.1
Location : jj_3_132
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4489

1.1
Location : jj_3_131
Killed by : none
negated conditional → NO_COVERAGE

4490

1.1
Location : jj_3_131
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4491

1.1
Location : jj_3_131
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4495

1.1
Location : jj_3_130
Killed by : none
negated conditional → NO_COVERAGE

4496

1.1
Location : jj_3_130
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4497

1.1
Location : jj_3_130
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4501

1.1
Location : jj_3_129
Killed by : none
negated conditional → NO_COVERAGE

4502

1.1
Location : jj_3_129
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4503

1.1
Location : jj_3_129
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4507

1.1
Location : jj_3_128
Killed by : none
negated conditional → NO_COVERAGE

4508

1.1
Location : jj_3_128
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4509

1.1
Location : jj_3_128
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4513

1.1
Location : jj_3_127
Killed by : none
negated conditional → NO_COVERAGE

4514

1.1
Location : jj_3_127
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4515

1.1
Location : jj_3_127
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4519

1.1
Location : jj_3_126
Killed by : none
negated conditional → NO_COVERAGE

4520

1.1
Location : jj_3_126
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4521

1.1
Location : jj_3_126
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4525

1.1
Location : jj_3_125
Killed by : none
negated conditional → NO_COVERAGE

4526

1.1
Location : jj_3_125
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4527

1.1
Location : jj_3_125
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4531

1.1
Location : jj_3_124
Killed by : none
negated conditional → NO_COVERAGE

4532

1.1
Location : jj_3_124
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4533

1.1
Location : jj_3_124
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4537

1.1
Location : jj_3_123
Killed by : none
negated conditional → NO_COVERAGE

4538

1.1
Location : jj_3_123
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4539

1.1
Location : jj_3_123
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4543

1.1
Location : jj_3_122
Killed by : none
negated conditional → NO_COVERAGE

4544

1.1
Location : jj_3_122
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4545

1.1
Location : jj_3_122
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4549

1.1
Location : jj_3_121
Killed by : none
negated conditional → NO_COVERAGE

4550

1.1
Location : jj_3_121
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4551

1.1
Location : jj_3_121
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4555

1.1
Location : jj_3_120
Killed by : none
negated conditional → NO_COVERAGE

4556

1.1
Location : jj_3_120
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4557

1.1
Location : jj_3_120
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4561

1.1
Location : jj_3_119
Killed by : none
negated conditional → NO_COVERAGE

4562

1.1
Location : jj_3_119
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4563

1.1
Location : jj_3_119
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4567

1.1
Location : jj_3_118
Killed by : none
negated conditional → NO_COVERAGE

4568

1.1
Location : jj_3_118
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4569

1.1
Location : jj_3_118
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4573

1.1
Location : jj_3_117
Killed by : none
negated conditional → NO_COVERAGE

4574

1.1
Location : jj_3_117
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4575

1.1
Location : jj_3_117
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4579

1.1
Location : jj_3_114
Killed by : none
negated conditional → NO_COVERAGE

4580

1.1
Location : jj_3_114
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4581

1.1
Location : jj_3_114
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4585

1.1
Location : jj_3_116
Killed by : none
negated conditional → NO_COVERAGE

4586

1.1
Location : jj_3_116
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4587

1.1
Location : jj_3_116
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4592

1.1
Location : jj_3_115
Killed by : none
negated conditional → NO_COVERAGE

4593

1.1
Location : jj_3_115
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4596

1.1
Location : jj_3_115
Killed by : none
negated conditional → NO_COVERAGE

4601

1.1
Location : jj_3_115
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4607

1.1
Location : jj_3R_27
Killed by : none
negated conditional → NO_COVERAGE

4609

1.1
Location : jj_3R_27
Killed by : none
negated conditional → NO_COVERAGE

4610

1.1
Location : jj_3R_27
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4612

1.1
Location : jj_3R_27
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4616

1.1
Location : jj_3_104
Killed by : none
negated conditional → NO_COVERAGE

4617

1.1
Location : jj_3_104
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4618

1.1
Location : jj_3_104
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4622

1.1
Location : jj_3_113
Killed by : none
negated conditional → NO_COVERAGE

4623

1.1
Location : jj_3_113
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4624

1.1
Location : jj_3_113
Killed by : none
negated conditional → NO_COVERAGE

4625

1.1
Location : jj_3_113
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4626

1.1
Location : jj_3_113
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4630

1.1
Location : jj_3_110
Killed by : none
negated conditional → NO_COVERAGE

4631

1.1
Location : jj_3_110
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4632

1.1
Location : jj_3_110
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4636

1.1
Location : jj_3_112
Killed by : none
negated conditional → NO_COVERAGE

4637

1.1
Location : jj_3_112
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4638

1.1
Location : jj_3_112
Killed by : none
negated conditional → NO_COVERAGE

4639

1.1
Location : jj_3_112
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4640

1.1
Location : jj_3_112
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4644

1.1
Location : jj_3_111
Killed by : none
negated conditional → NO_COVERAGE

4645

1.1
Location : jj_3_111
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4646

1.1
Location : jj_3_111
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4652

1.1
Location : jj_3R_22
Killed by : none
negated conditional → NO_COVERAGE

4654

1.1
Location : jj_3R_22
Killed by : none
negated conditional → NO_COVERAGE

4656

1.1
Location : jj_3R_22
Killed by : none
negated conditional → NO_COVERAGE

4657

1.1
Location : jj_3R_22
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4660

1.1
Location : jj_3R_22
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4664

1.1
Location : jj_3_109
Killed by : none
negated conditional → NO_COVERAGE

4665

1.1
Location : jj_3_109
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4666

1.1
Location : jj_3_109
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4672

1.1
Location : jj_3R_21
Killed by : none
negated conditional → NO_COVERAGE

4674

1.1
Location : jj_3R_21
Killed by : none
negated conditional → NO_COVERAGE

4675

1.1
Location : jj_3R_21
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4677

1.1
Location : jj_3R_21
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4681

1.1
Location : jj_3_65
Killed by : none
negated conditional → NO_COVERAGE

4682

1.1
Location : jj_3_65
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4683

1.1
Location : jj_3_65
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4687

1.1
Location : jj_3_62
Killed by : none
negated conditional → NO_COVERAGE

4688

1.1
Location : jj_3_62
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4689

1.1
Location : jj_3_62
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4693

1.1
Location : jj_3_59
Killed by : none
negated conditional → NO_COVERAGE

4694

1.1
Location : jj_3_59
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4695

1.1
Location : jj_3_59
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4699

1.1
Location : jj_3_56
Killed by : none
negated conditional → NO_COVERAGE

4700

1.1
Location : jj_3_56
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4701

1.1
Location : jj_3_56
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4705

1.1
Location : jj_3_108
Killed by : none
negated conditional → NO_COVERAGE

4706

1.1
Location : jj_3_108
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4707

1.1
Location : jj_3_108
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4711

1.1
Location : jj_3_107
Killed by : none
negated conditional → NO_COVERAGE

4712

1.1
Location : jj_3_107
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4713

1.1
Location : jj_3_107
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4719

1.1
Location : jj_3R_23
Killed by : none
negated conditional → NO_COVERAGE

4721

1.1
Location : jj_3R_23
Killed by : none
negated conditional → NO_COVERAGE

4722

1.1
Location : jj_3R_23
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4724

1.1
Location : jj_3R_23
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4728

1.1
Location : jj_3_64
Killed by : none
negated conditional → NO_COVERAGE

4729

1.1
Location : jj_3_64
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4730

1.1
Location : jj_3_64
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4736

1.1
Location : jj_3_63
Killed by : none
negated conditional → NO_COVERAGE

4738

1.1
Location : jj_3_63
Killed by : none
negated conditional → NO_COVERAGE

4739

1.1
Location : jj_3_63
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4741

1.1
Location : jj_3_63
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4745

1.1
Location : jj_3_61
Killed by : none
negated conditional → NO_COVERAGE

4746

1.1
Location : jj_3_61
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4747

1.1
Location : jj_3_61
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4753

1.1
Location : jj_3_60
Killed by : none
negated conditional → NO_COVERAGE

4755

1.1
Location : jj_3_60
Killed by : none
negated conditional → NO_COVERAGE

4756

1.1
Location : jj_3_60
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4758

1.1
Location : jj_3_60
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4762

1.1
Location : jj_3_58
Killed by : none
negated conditional → NO_COVERAGE

4763

1.1
Location : jj_3_58
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4764

1.1
Location : jj_3_58
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4770

1.1
Location : jj_3_57
Killed by : none
negated conditional → NO_COVERAGE

4772

1.1
Location : jj_3_57
Killed by : none
negated conditional → NO_COVERAGE

4773

1.1
Location : jj_3_57
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4775

1.1
Location : jj_3_57
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4779

1.1
Location : jj_3_55
Killed by : none
negated conditional → NO_COVERAGE

4780

1.1
Location : jj_3_55
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4781

1.1
Location : jj_3_55
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4787

1.1
Location : jj_3_54
Killed by : none
negated conditional → NO_COVERAGE

4789

1.1
Location : jj_3_54
Killed by : none
negated conditional → NO_COVERAGE

4790

1.1
Location : jj_3_54
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4792

1.1
Location : jj_3_54
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4796

1.1
Location : jj_3_106
Killed by : none
negated conditional → NO_COVERAGE

4797

1.1
Location : jj_3_106
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4798

1.1
Location : jj_3_106
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4848

1.1
Location :
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location :
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location :
Killed by : none
negated conditional → NO_COVERAGE

4850

1.1
Location :
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location :
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location :
Killed by : none
negated conditional → NO_COVERAGE

4856

1.1
Location : ReInit
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::ReInit → NO_COVERAGE

4862

1.1
Location : ReInit
Killed by : none
removed call to org/graphstream/util/parser/SimpleCharStream::ReInit → NO_COVERAGE

4866

1.1
Location : ReInit
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParserTokenManager::ReInit → NO_COVERAGE

4870

1.1
Location : ReInit
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : ReInit
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location : ReInit
Killed by : none
negated conditional → NO_COVERAGE

4872

1.1
Location : ReInit
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : ReInit
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location : ReInit
Killed by : none
negated conditional → NO_COVERAGE

4883

1.1
Location :
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location :
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location :
Killed by : none
negated conditional → NO_COVERAGE

4885

1.1
Location :
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location :
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location :
Killed by : none
negated conditional → NO_COVERAGE

4891

1.1
Location : ReInit
Killed by : none
removed call to org/graphstream/util/parser/SimpleCharStream::ReInit → NO_COVERAGE

4892

1.1
Location : ReInit
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParserTokenManager::ReInit → NO_COVERAGE

4896

1.1
Location : ReInit
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : ReInit
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location : ReInit
Killed by : none
negated conditional → NO_COVERAGE

4898

1.1
Location : ReInit
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : ReInit
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location : ReInit
Killed by : none
negated conditional → NO_COVERAGE

4908

1.1
Location :
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location :
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location :
Killed by : none
negated conditional → NO_COVERAGE

4910

1.1
Location :
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location :
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location :
Killed by : none
negated conditional → NO_COVERAGE

4920

1.1
Location : ReInit
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : ReInit
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location : ReInit
Killed by : none
negated conditional → NO_COVERAGE

4922

1.1
Location : ReInit
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : ReInit
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location : ReInit
Killed by : none
negated conditional → NO_COVERAGE

4928

1.1
Location : jj_consume_token
Killed by : none
negated conditional → NO_COVERAGE

4933

1.1
Location : jj_consume_token
Killed by : none
negated conditional → NO_COVERAGE

4934

1.1
Location : jj_consume_token
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

4935

1.1
Location : jj_consume_token
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : jj_consume_token
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

3.3
Location : jj_consume_token
Killed by : none
negated conditional → NO_COVERAGE

4937

1.1
Location : jj_consume_token
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : jj_consume_token
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location : jj_consume_token
Killed by : none
negated conditional → NO_COVERAGE

4939

1.1
Location : jj_consume_token
Killed by : none
negated conditional → NO_COVERAGE

4940

1.1
Location : jj_consume_token
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : jj_consume_token
Killed by : none
negated conditional → NO_COVERAGE

4946

1.1
Location : jj_consume_token
Killed by : none
mutated return of Object value for org/graphstream/stream/file/pajek/PajekParser::jj_consume_token to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

4960

1.1
Location : jj_scan_token
Killed by : none
negated conditional → NO_COVERAGE

4961

1.1
Location : jj_scan_token
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

4962

1.1
Location : jj_scan_token
Killed by : none
negated conditional → NO_COVERAGE

4971

1.1
Location : jj_scan_token
Killed by : none
negated conditional → NO_COVERAGE

4974

1.1
Location : jj_scan_token
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_scan_token
Killed by : none
negated conditional → NO_COVERAGE

4975

1.1
Location : jj_scan_token
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

4978

1.1
Location : jj_scan_token
Killed by : none
negated conditional → NO_COVERAGE

4979

1.1
Location : jj_scan_token
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_add_error_token → NO_COVERAGE

4981

1.1
Location : jj_scan_token
Killed by : none
negated conditional → NO_COVERAGE

4982

1.1
Location : jj_scan_token
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4983

1.1
Location : jj_scan_token
Killed by : none
negated conditional → NO_COVERAGE

2.2
Location : jj_scan_token
Killed by : none
negated conditional → NO_COVERAGE

4985

1.1
Location : jj_scan_token
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

4990

1.1
Location : getNextToken
Killed by : none
negated conditional → NO_COVERAGE

4995

1.1
Location : getNextToken
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

4996

1.1
Location : getNextToken
Killed by : none
mutated return of Object value for org/graphstream/stream/file/pajek/PajekParser::getNextToken to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

5002

1.1
Location : getToken
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : getToken
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location : getToken
Killed by : none
negated conditional → NO_COVERAGE

5003

1.1
Location : getToken
Killed by : none
negated conditional → NO_COVERAGE

5008

1.1
Location : getToken
Killed by : none
mutated return of Object value for org/graphstream/stream/file/pajek/PajekParser::getToken to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

5012

1.1
Location : jj_ntk
Killed by : none
negated conditional → NO_COVERAGE

5013

1.1
Location : jj_ntk
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

5015

1.1
Location : jj_ntk
Killed by : none
replaced return of integer sized value with (x == 0 ? 1 : 0) → NO_COVERAGE

5025

1.1
Location : jj_add_error_token
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : jj_add_error_token
Killed by : none
negated conditional → NO_COVERAGE

5027

1.1
Location : jj_add_error_token
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

2.2
Location : jj_add_error_token
Killed by : none
negated conditional → NO_COVERAGE

5028

1.1
Location : jj_add_error_token
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

5029

1.1
Location : jj_add_error_token
Killed by : none
negated conditional → NO_COVERAGE

5031

1.1
Location : jj_add_error_token
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : jj_add_error_token
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location : jj_add_error_token
Killed by : none
negated conditional → NO_COVERAGE

5035

1.1
Location : jj_add_error_token
Killed by : none
negated conditional → NO_COVERAGE

5037

1.1
Location : jj_add_error_token
Killed by : none
negated conditional → NO_COVERAGE

5038

1.1
Location : jj_add_error_token
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : jj_add_error_token
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location : jj_add_error_token
Killed by : none
negated conditional → NO_COVERAGE

5039

1.1
Location : jj_add_error_token
Killed by : none
negated conditional → NO_COVERAGE

5047

1.1
Location : jj_add_error_token
Killed by : none
negated conditional → NO_COVERAGE

5048

1.1
Location : jj_add_error_token
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

5054

1.1
Location : generateParseException
Killed by : none
removed call to java/util/List::clear → NO_COVERAGE

5056

1.1
Location : generateParseException
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : generateParseException
Killed by : none
negated conditional → NO_COVERAGE

5060

1.1
Location : generateParseException
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : generateParseException
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location : generateParseException
Killed by : none
negated conditional → NO_COVERAGE

5061

1.1
Location : generateParseException
Killed by : none
negated conditional → NO_COVERAGE

5062

1.1
Location : generateParseException
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : generateParseException
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location : generateParseException
Killed by : none
negated conditional → NO_COVERAGE

5063

1.1
Location : generateParseException
Killed by : none
Replaced Shift Left with Shift Right → NO_COVERAGE

2.2
Location : generateParseException
Killed by : none
Replaced bitwise AND with OR → NO_COVERAGE

3.3
Location : generateParseException
Killed by : none
negated conditional → NO_COVERAGE

5066

1.1
Location : generateParseException
Killed by : none
Replaced Shift Left with Shift Right → NO_COVERAGE

2.2
Location : generateParseException
Killed by : none
Replaced bitwise AND with OR → NO_COVERAGE

3.3
Location : generateParseException
Killed by : none
negated conditional → NO_COVERAGE

5067

1.1
Location : generateParseException
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

5072

1.1
Location : generateParseException
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : generateParseException
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location : generateParseException
Killed by : none
negated conditional → NO_COVERAGE

5073

1.1
Location : generateParseException
Killed by : none
negated conditional → NO_COVERAGE

5080

1.1
Location : generateParseException
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_rescan_token → NO_COVERAGE

5081

1.1
Location : generateParseException
Killed by : none
removed call to org/graphstream/stream/file/pajek/PajekParser::jj_add_error_token → NO_COVERAGE

5083

1.1
Location : generateParseException
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : generateParseException
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location : generateParseException
Killed by : none
negated conditional → NO_COVERAGE

5086

1.1
Location : generateParseException
Killed by : none
mutated return of Object value for org/graphstream/stream/file/pajek/PajekParser::generateParseException to ( if (x != null) null else throw new RuntimeException ) → NO_COVERAGE

5099

1.1
Location : jj_rescan_token
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : jj_rescan_token
Killed by : none
Changed increment from 1 to -1 → NO_COVERAGE

3.3
Location : jj_rescan_token
Killed by : none
negated conditional → NO_COVERAGE

5103

1.1
Location : jj_rescan_token
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : jj_rescan_token
Killed by : none
negated conditional → NO_COVERAGE

5656

1.1
Location : jj_rescan_token
Killed by : none
negated conditional → NO_COVERAGE

5665

1.1
Location : jj_save
Killed by : none
changed conditional boundary → NO_COVERAGE

2.2
Location : jj_save
Killed by : none
negated conditional → NO_COVERAGE

5666

1.1
Location : jj_save
Killed by : none
negated conditional → NO_COVERAGE

5672

1.1
Location : jj_save
Killed by : none
Replaced integer addition with subtraction → NO_COVERAGE

2.2
Location : jj_save
Killed by : none
Replaced integer subtraction with addition → NO_COVERAGE

Active mutators

Tests examined


Report generated by PIT 0.33