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
|
// Maria range class -*- c++ -*-
#ifdef __GNUC__
# pragma implementation
#endif // __GNUC__
#include "Range.h"
#include "LeafValue.h"
#include "Type.h"
#include "Printer.h"
/** @file Range.C
* Closed range of values, part of a Constraint
*/
/* Copyright 1999-2003 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. */
Range::Range (class Value& low,
class Value& high) :
myLow (&low), myHigh (&high)
{
if (*myHigh < *myLow) {
class Value* v = myLow;
myLow = myHigh;
myHigh = v;
}
else if (myLow != myHigh && *myLow == *myHigh) {
delete myHigh;
myHigh = myLow;
}
}
Range::Range (const class Range& old) :
myLow (old.myLow->copy ()), myHigh (old.myHigh->copy ())
{
assert (*myLow <= *myHigh);
}
Range::~Range ()
{
delete myLow;
if (myLow != myHigh)
delete myHigh;
}
void
Range::setType (const class Type& type)
{
myLow->setType (type);
myHigh->setType (type);
}
class Range*
Range::combine (const class Range& other) const
{
if (*other.myLow <= *myLow && *myHigh <= *other.myHigh)
return new class Range (*other.myLow->copy (), *other.myHigh->copy ());
if (*other.myLow <= *myLow && *myLow <= *other.myHigh)
return new class Range (*other.myLow->copy (), *myHigh->copy ());
if (*other.myLow <= *myHigh && *myHigh <= *other.myHigh)
return new class Range (*myLow->copy (), *other.myHigh->copy ());
if (*myLow <= *other.myLow && *other.myHigh <= *myHigh)
return new class Range (*myLow->copy (), *myHigh->copy ());
class Value* v;
bool adjacent;
v = myHigh->copy ();
adjacent = v->increment () && *v == *other.myLow;
delete v;
if (adjacent)
return new class Range (*myLow->copy (), *other.myHigh->copy ());
v = other.myHigh->copy ();
adjacent = v->increment () && *v == *myLow;
delete v;
if (adjacent)
return new class Range (*other.myLow->copy (), *myHigh->copy ());
return 0;
}
class Range*
Range::cut (const class Range& other) const
{
if (*other.myLow <= *myLow && *myHigh <= *other.myHigh)
return new class Range (*myLow->copy (), *myHigh->copy ());
if (*other.myLow <= *myLow && *myLow <= *other.myHigh)
return new class Range (*myLow->copy (), *other.myHigh->copy ());
if (*other.myLow <= *myHigh && *myHigh <= *other.myHigh)
return new class Range (*other.myLow->copy (), *myHigh->copy ());
if (*myLow <= *other.myLow && *other.myHigh <= *myHigh)
return new class Range (*other.myLow->copy (), *other.myHigh->copy ());
return 0;
}
bool
Range::check (const class Value& value) const
{
return myLow == myHigh
? value == *myLow
: *myLow <= value && value <= *myHigh;
}
void
Range::display (const class Printer& printer) const
{
if (myLow != myHigh &&
myLow->getKind () == Value::vLeaf) {
const class LeafValue& low = static_cast<class LeafValue&>(*myLow);
const class LeafValue& high = static_cast<class LeafValue&>(*myHigh);
switch (low.getType ().getKind ()) {
case Type::tInt:
if (int_t (low) != INT_T_MIN)
low.display (printer);
printer.printRaw ("..");
if (int_t (high) != INT_T_MAX)
high.display (printer);
return;
case Type::tCard:
if (card_t (low))
low.display (printer);
printer.printRaw ("..");
if (card_t (high) != CARD_T_MAX)
high.display (printer);
return;
default:
break;
}
}
myLow->display (printer);
if (myLow != myHigh) {
printer.printRaw ("..");
myHigh->display (printer);
}
}
|