File: BinopExpression.C

package info (click to toggle)
maria 1.3.4-5
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,956 kB
  • ctags: 5,485
  • sloc: cpp: 43,267; yacc: 8,080; sh: 460; ansic: 436; lisp: 395; makefile: 288; perl: 21
file content (775 lines) | stat: -rw-r--r-- 20,057 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
// binary operator class -*- c++ -*-

#ifdef __GNUC__
# pragma implementation
#endif // __GNUC__
#include "BinopExpression.h"
#include "IntType.h"
#include "CardType.h"
#include "LeafValue.h"
#include "Net.h"
#include "Valuation.h"
#include "Printer.h"

/** @file BinopExpression.C
 * Binary operators in integer arithmetic
 */

/* Copyright  1998-2002 Marko Mkel (msmakela@tcs.hut.fi).

   This file is part of MARIA, a reachability analyzer and model checker
   for high-level Petri nets.

   MARIA is free software; you can redistribute it and/or modify it
   under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2, or (at your option)
   any later version.

   MARIA is distributed in the hope that it will be useful, but
   WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   General Public License for more details.

   The GNU General Public License is often shipped with GNU software, and
   is generally kept in a file called COPYING or LICENSE.  If you do not
   have a copy of the license, write to the Free Software Foundation,
   59 Temple Place, Suite 330, Boston, MA 02111 USA. */

BinopExpression::BinopExpression (enum Op op,
				  class Expression& left,
				  class Expression& right) :
  Expression (),
  myOp (op), myLeft (&left), myRight (&right)
{
  assert ((myLeft->getType ()->getKind () == Type::tInt &&
	   myRight->getType ()->getKind () == Type::tInt) ||
	  (myLeft->getType ()->getKind () == Type::tCard &&
	   myRight->getType ()->getKind () == Type::tCard));
  assert (myLeft->isBasic () && myRight->isBasic ());
  if (myLeft->getType ()->getKind () == Type::tInt)
    setType (Net::getIntType ());
  else
    setType (Net::getCardType ());
}

BinopExpression::~BinopExpression ()
{
  myLeft->destroy ();
  myRight->destroy ();
}

/** Evaluate a binary operator using signed arithmetics
 * @param op		the operator
 * @param left		the left-hand-side value
 * @param right		the right-hand-side value
 * @param valuation	structure for diagnostic output
 * @param type		type of the value to be returned
 * @param expr		expression to report as the cause of errors
 * @return		the value, or NULL
 */
inline static class LeafValue*
eval (enum BinopExpression::Op op,
      int_t left, int_t right,
      const class Valuation& valuation,
      const class Type& type,
      const class Expression& expr)
{
  assert (type.getKind () == Type::tInt);

  switch (op) {
  case BinopExpression::bPlus:
    if ((left > 0 && right > 0 && INT_T_MAX - left < right) ||
	(left < 0 && right < 0 && INT_T_MIN - left > right)) {
      valuation.flag (errOver, expr);
      return NULL;
    }

    return new class LeafValue (type, left + right);
  case BinopExpression::bMinus:
    if ((left > 0 && right < 0 &&
	 INT_T_MAX + right < left) ||
	(left < 0 && right > 0 &&
	 INT_T_MAX + left < right)) {
      valuation.flag (errOver, expr);
      return NULL;
    }

    return new class LeafValue (type, left - right);
  case BinopExpression::bDiv:
    if (left == INT_T_MIN && right == -1)
      valuation.flag (errOver, expr);
    else if (right)
      return new class LeafValue (type, left / right);
    else
      valuation.flag (errDiv0, expr);
    return NULL;
  case BinopExpression::bMul:
    if (left > 0) {
      if (right > 0) {
	if (INT_T_MAX / left < right) {
	  valuation.flag (errOver, expr);
	  return NULL;
	}
      }
      else if (INT_T_MIN / left > right) {
	valuation.flag (errOver, expr);
	return NULL;
      }
    }
    else if (right > 0) {
      if (INT_T_MIN / left < right) {
	valuation.flag (errOver, expr);
	return NULL;
      }
    }
    else if (INT_T_MAX / left > right) {
      valuation.flag (errOver, expr);
      return NULL;
    }

    return new class LeafValue (type, left * right);
  case BinopExpression::bMod:
    if (right > 0 && left >= 0)
      return new class LeafValue (type, left % right);
    else {
      valuation.flag (errMod, expr);
      return NULL;
    }
  case BinopExpression::bAnd:
    return new class LeafValue (type, left & right);
  case BinopExpression::bOr:
    return new class LeafValue (type, left | right);
  case BinopExpression::bXor:
    return new class LeafValue (type, left ^ right);
  case BinopExpression::bRol:
    if (right < 0 ||
	right >= int_t (INT_T_BIT)) {
    shiftError:
      valuation.flag (errShift, expr);
      return NULL;
    }
    return new class LeafValue (type, left << right);
  case BinopExpression::bRor:
    if (right < 0 ||
	right >= int_t (INT_T_BIT))
      goto shiftError;

    return new class LeafValue (type, left >> right);
  }

  assert (false);
  return NULL;
}


/** Evaluate a binary operator using unsigned arithmetics
 * @param op		the operator
 * @param left		the left-hand-side value
 * @param right		the right-hand-side value
 * @param valuation	structure for diagnostic output
 * @param type		type of the value to be returned
 * @param expr		expression to report as the cause of errors
 * @return		the value, or NULL
 */
inline static class LeafValue*
eval (enum BinopExpression::Op op,
      card_t left, card_t right,
      const class Valuation& valuation,
      const class Type& type,
      const class Expression& expr)
{
  switch (op) {
  case BinopExpression::bPlus:
    if (CARD_T_MAX - left < right) {
      valuation.flag (errOver, expr);
      return NULL;
    }

    return new class LeafValue (type, left + right);
  case BinopExpression::bMinus:
    if (left < right) {
      valuation.flag (errOver, expr);
      return NULL;
    }

    return new class LeafValue (type, left - right);
  case BinopExpression::bDiv:
    if (right)
      return new class LeafValue (type, left / right);
    else {
      valuation.flag (errDiv0, expr);
      return NULL;
    }
  case BinopExpression::bMul:
    if (left && CARD_T_MAX / left < right) {
      valuation.flag (errOver, expr);
      return NULL;
    }

    return new class LeafValue (type, left * right);
  case BinopExpression::bMod:
    if (!right) {
      valuation.flag (errMod, expr);
      return NULL;
    }

    return new class LeafValue (type, left % right);
  case BinopExpression::bAnd:
    return new class LeafValue (type, left & right);
  case BinopExpression::bOr:
    return new class LeafValue (type, left | right);
  case BinopExpression::bXor:
    return new class LeafValue (type, left ^ right);
  case BinopExpression::bRol:
    if (right >= CARD_T_BIT) {
    shiftError:
      valuation.flag (errShift, expr);
      return NULL;
    }
    return new class LeafValue (type, left << right);
  case BinopExpression::bRor:
    if (right >= CARD_T_BIT)
      goto shiftError;

    return new class LeafValue (type, left >> right);
  }

  assert (false);
  return NULL;
}

class Value*
BinopExpression::do_eval (const class Valuation& valuation) const
{
  class Value* left = myLeft->eval (valuation);
  if (!left)
    return NULL;
  assert (left->getKind () == Value::vLeaf);
  class Value* right = myRight->eval (valuation);
  if (!right) {
    delete left;
    return NULL;
  }
  assert (right->getKind () == Value::vLeaf);

  if (getType ()->getKind () == Type::tInt) {
    assert (left->getType ().getKind () == Type::tInt);
    assert (right->getType ().getKind () == Type::tInt);
    if (class Value* result =
	::eval (myOp,
		int_t (static_cast<class LeafValue&>(*left)),
		int_t (static_cast<class LeafValue&>(*right)),
		valuation, *getType (), *this)) {
      delete left; delete right;
      return constrain (valuation, result);
    }
  }
  else {
    assert (left->getType ().getKind () == Type::tCard);
    assert (right->getType ().getKind () == Type::tCard);
    if (class Value* result =
	::eval (myOp,
		card_t (static_cast<class LeafValue&>(*left)),
		card_t (static_cast<class LeafValue&>(*right)),
		valuation, *getType (), *this)) {
      delete left; delete right;
      return constrain (valuation, result);
    }
  }

  delete left; delete right;
  return NULL;
}

class Expression*
BinopExpression::ground (const class Valuation& valuation,
			 class Transition* transition,
			 bool declare)
{
  class Expression* left = myLeft->ground (valuation, transition, declare);

  if (!left)
    return NULL;

  class Expression* right = myRight->ground (valuation, transition, declare);

  if (!right) {
    left->destroy ();
    return NULL;
  }

  assert (valuation.isOK ());

  if (left == myLeft && right == myRight) {
    left->destroy ();
    right->destroy ();
    return copy ();
  }
  else {
    class Expression* expr = new class BinopExpression (myOp, *left, *right);
    expr->setType (*getType ());
    return expr->ground (valuation);
  }
}

class Expression*
BinopExpression::substitute (class Substitution& substitution)
{
  class Expression* left = myLeft->substitute (substitution);
  class Expression* right = myRight->substitute (substitution);

  if (left == myLeft && right == myRight) {
    left->destroy ();
    right->destroy ();
    return copy ();
  }
  else {
    class Expression* expr = new class BinopExpression (myOp, *left, *right);
    expr->setType (*getType ());
    return expr->cse ();
  }
}

bool
BinopExpression::depends (const class VariableSet& vars,
			  bool complement) const
{
  return
    myLeft->depends (vars, complement) ||
    myRight->depends (vars, complement);
}

bool
BinopExpression::forVariables (bool (*operation)
			       (const class Expression&,void*),
			       void* data) const
{
  return
    myLeft->forVariables (operation, data) &&
    myRight->forVariables (operation, data);
}

#ifdef EXPR_COMPILE
# include "CExpression.h"
# include "Constant.h"

void
BinopExpression::compile (class CExpression& cexpr,
			  unsigned indent,
			  const char* lvalue,
			  const class VariableSet* vars) const
{
  assert (myLeft->getType () && myRight->getType ());
  assert (myLeft->getType ()->getKind () == myRight->getType ()->getKind ());

  class StringBuffer& out = cexpr.getOut ();
  const bool sign = myLeft->getType ()->getKind () == Type::tInt;
  char* left;
  char* right;
  if (cexpr.getVariable (*myLeft, left))
    myLeft->compile (cexpr, indent, left, vars);
  if (cexpr.getVariable (*myRight, right))
    myRight->compile (cexpr, indent, right, vars);
  const class LeafValue* vleft = 0;
  const class LeafValue* vright = 0;
  if (myLeft->getKind () == Expression::eConstant) {
    const class Value& v =
      static_cast<const class Constant*>(myLeft)->getValue ();
    assert (v.getKind () == Value::vLeaf);
    vleft = &static_cast<const class LeafValue&>(v);
  }
  if (myRight->getKind () == Expression::eConstant) {
    const class Value& v =
      static_cast<const class Constant*>(myRight)->getValue ();
    assert (v.getKind () == Value::vLeaf);
    vright = &static_cast<const class LeafValue&>(v);
  }
  switch (myOp) {
  case bPlus:
    out.indent (indent);
    out.append ("if (");
    if (sign) {
      if (!vleft && !vright)
	out.append ("(");
      if ((!vleft || int_t (*vleft) > 0) &&
	  (!vright || int_t (*vright) > 0)) {
	if (!vleft)
	  out.append (left), out.append (">0 && ");
	if (!vright)
	  out.append (right), out.append (">0 && ");
	out.append ("INT_MAX-");
	out.append (left), out.append ("<"), out.append (right);
      }
      if (!vleft && !vright) {
	out.append (") ||\n");
	out.indent (indent + 4);
	out.append ("(");
      }
      if ((!vleft || int_t (*vleft) < 0) &&
	  (!vright || int_t (*vright) < 0)) {
	if (!vleft)
	  out.append (left), out.append ("<0 && ");
	if (!vright)
	  out.append (right), out.append ("<0 && ");
	out.append ("INT_MIN-");
	out.append (left), out.append (">"), out.append (right);
      }
      if (!vleft && !vright)
	out.append (")");
    }
    else {
      out.append ("UINT_MAX-");
      out.append (left);
      out.append ("<");
      out.append (right);
    }
    out.append (")\n");
    cexpr.compileError (indent + 2, errOver);
    out.indent (indent);
    out.append (lvalue);
    out.append ("=");
    out.append (left);
    out.append ("+");
    out.append (right);
    out.append (";\n");
    break;
  case bMinus:
    out.indent (indent);
    out.append ("if (");
    if (sign) {
      if (!vleft && !vright)
	out.append ("(");
      if ((!vleft || int_t (*vleft) > 0) &&
	  (!vright || int_t (*vright) < 0)) {
	if (!vleft)
	  out.append (left), out.append (">0 && ");
	if (!vright)
	  out.append (right), out.append ("<0 && ");
	out.append ("INT_MAX+");
	out.append (right), out.append ("<"), out.append (left);
      }
      if (!vleft && !vright) {
	out.append (") ||\n");
	out.indent (indent + 4);
	out.append ("(");
      }
      if ((!vleft || int_t (*vleft) < 0) &&
	  (!vright || int_t (*vright) > 0)) {
	if (!vleft)
	  out.append (left), out.append ("<0 && ");
	if (!vright)
	  out.append (right), out.append (">0 && ");
	out.append ("INT_MAX+");
	out.append (left), out.append ("<"), out.append (right);
      }
      if (!vleft && !vright)
	out.append (")");
    }
    else {
      out.append (left);
      out.append ("<");
      out.append (right);
    }
    out.append (")\n");
    cexpr.compileError (indent + 2, errOver);
    out.indent (indent);
    out.append (lvalue);
    out.append ("=");
    out.append (left);
    out.append ("-");
    out.append (right);
    out.append (";\n");
    break;
  case bDiv:
    out.indent (indent);
    out.append ("if (!");
    out.append (right);
    out.append (")\n");
    cexpr.compileError (indent + 2, errDiv0);
    if (sign) {
      out.indent (indent);
      out.append ("if (");
      out.append (right);
      out.append ("==-1 && ");
      out.append (left);
      out.append ("==INT_MIN)\n");
      cexpr.compileError (indent + 2, errOver);
    }
    out.indent (indent);
    out.append (lvalue);
    out.append ("=");
    out.append (left);
    out.append ("/");
    out.append (right);
    out.append (";\n");
    break;
  case bMul:
    out.indent (indent);
    out.append ("if (");
    out.append (left);
    out.append ("&&\n");
    out.indent (indent + 4);
    out.append ("(");
    if (sign) {
      if (!vleft) {
	out.append (left), out.append (">0\n");
	out.indent (indent + 5);
	out.append ("? (");
      }
      if (!vleft || int_t (*vleft) > 0) {
	if (!vright) {
	  out.append (right);
	  out.append (">0\n");
	  out.indent (indent + 8);
	  out.append ("? ");
	}
	if (!vright || int_t (*vright) > 0) {
	  out.append ("INT_MAX/");
	  out.append (left);
	  out.append ("<");
	  out.append (right);
	}
	if (!vright) {
	  out.append ("\n");
	  out.indent (indent + 8);
	  out.append (": ");
	}
	if (!vright || int_t (*vright) <= 0) {
	  out.append ("INT_MIN/");
	  out.append (left);
	  out.append (">");
	  out.append (right);
	}
      }
      if (!vleft) {
	out.append (")\n");
	out.indent (indent + 5);
	out.append (": (");
      }
      if (!vleft || int_t (*vleft) <= 0) {
	if (!vright) {
	  out.append (right);
	  out.append (">0\n");
	  out.indent (indent + 8);
	  out.append ("? ");
	}
	if (!vright || int_t (*vright) > 0) {
	  out.append ("INT_MIN/");
	  out.append (left);
	  out.append ("<");
	  out.append (right);
	}
	if (!vright) {
	  out.append ("\n");
	  out.indent (indent + 8);
	  out.append (": ");
	}
	if (!vright || int_t (*vright) <= 0) {
	  out.append ("INT_MAX/");
	  out.append (left);
	  out.append (">");
	  out.append (right);
	}
      }
      if (!vleft)
	out.append (")");
    }
    else {
      out.append ("UINT_MAX/");
      out.append (left);
      out.append ("<");
      out.append (right);
    }
    out.append ("))\n");
    cexpr.compileError (indent + 2, errOver);
    out.indent (indent);
    out.append (lvalue);
    out.append ("=");
    out.append (left);
    out.append ("*");
    out.append (right);
    out.append (";\n");
    break;
  case bMod:
    out.indent (indent);
    out.append ("if (");
    if (sign) {
      out.append (left), out.append ("<0 || ");
      out.append (right), out.append ("<=0");
    }
    else {
      out.append ("!");
      out.append (right);
    }
    out.append (")\n");
    cexpr.compileError (indent + 2, errMod);
    out.indent (indent);
    out.append (lvalue);
    out.append ("=");
    out.append (left);
    out.append ("%");
    out.append (right);
    out.append (";\n");
    break;
  case bAnd:
    out.indent (indent);
    out.append (lvalue);
    out.append ("=");
    out.append (left);
    out.append ("&");
    out.append (right);
    out.append (";\n");
    break;
  case bOr:
    out.indent (indent);
    out.append (lvalue);
    out.append ("=");
    out.append (left);
    out.append ("|");
    out.append (right);
    out.append (";\n");
    break;
  case bXor:
    out.indent (indent);
    out.append (lvalue);
    out.append ("=");
    out.append (left);
    out.append ("^");
    out.append (right);
    out.append (";\n");
    break;
  case bRol:
  case bRor:
    out.indent (indent);
    out.append ("if (");
    if (sign) {
      out.append (right);
      out.append ("<0 || ");
    }
    out.append (right);
    out.append (">= CHAR_BIT * sizeof ");
    out.append (left);
    out.append (")\n");
    cexpr.compileError (indent + 2, errShift);
    out.indent (indent);
    out.append (lvalue);
    out.append ("=");
    out.append (left);
    out.append (myOp == bRol ? "<<" : ">>");
    out.append (right);
    out.append (";\n");
    break;
  }

  delete[] left;
  delete[] right;
  compileConstraint (cexpr, indent, lvalue);
}

#endif // EXPR_COMPILE

/** Convert an operator to a string
 * @param op	the operator to convert
 * @return	a string corresponding to the operator
 */
inline static const char*
getOpString (enum BinopExpression::Op op)
{
  switch (op) {
  case BinopExpression::bPlus:
    return "+";
  case BinopExpression::bMinus:
    return "-";
  case BinopExpression::bDiv:
    return "/";
  case BinopExpression::bMul:
    return "*";
  case BinopExpression::bMod:
    return "%";
  case BinopExpression::bAnd:
    return "&";
  case BinopExpression::bOr:
    return "|";
  case BinopExpression::bXor:
    return "^";
  case BinopExpression::bRol:
    return "<<";
  case BinopExpression::bRor:
    return ">>";
  }

  return "???";
}

/** Determine whether an expression needs to be enclosed in parentheses
 * @param kind	kind of the expression
 * @return	whether parentheses are necessary
 */
inline static bool
needParentheses (enum Expression::Kind kind)
{
  switch (kind) {
  case Expression::eVariable:
  case Expression::eConstant:
  case Expression::eUndefined:
  case Expression::eStructComponent:
  case Expression::eUnionComponent:
  case Expression::eUnionType:
  case Expression::eVectorIndex:
  case Expression::eUnop:
  case Expression::eBufferUnop:
  case Expression::eTypecast:
  case Expression::eCardinality:
    return false;
  case Expression::eStruct:
  case Expression::eUnion:
  case Expression::eVector:
  case Expression::eBooleanBinop:
  case Expression::eNot:
  case Expression::eRelop:
  case Expression::eBuffer:
  case Expression::eBufferRemove:
  case Expression::eBufferWrite:
  case Expression::eBufferIndex:
  case Expression::eSet:
  case Expression::eTemporalBinop:
  case Expression::eTemporalUnop:
  case Expression::eMarking:
  case Expression::eTransitionQualifier:
  case Expression::ePlaceContents:
  case Expression::eSubmarking:
  case Expression::eMapping:
  case Expression::eEmptySet:
  case Expression::eStructAssign:
  case Expression::eVectorAssign:
  case Expression::eVectorShift:
    assert (false);
  case Expression::eBinop:
  case Expression::eIfThenElse:
    break;
  }

  return true;
}

void
BinopExpression::display (const class Printer& printer) const
{
  if (::needParentheses (myLeft->getKind ())) {
    printer.delimiter ('(')++;
    myLeft->display (printer);
    --printer.delimiter (')');
  }
  else
    myLeft->display (printer);

  printer.printRaw (::getOpString (myOp));

  if (::needParentheses (myRight->getKind ())) {
    printer.delimiter ('(')++;
    myRight->display (printer);
    --printer.delimiter (')');
  }
  else
    myRight->display (printer);
}