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
|
// Author(s): Jeroen Keiren
// Copyright: see the accompanying file COPYING or copy at
// https://svn.win.tue.nl/trac/MCRL2/browser/trunk/COPYING
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
/// \file suminst_test.cpp
/// \brief Add your file description here.
#include <iostream>
#include <string>
#include <boost/test/minimal.hpp>
#include <mcrl2/lps/suminst.h>
#include <mcrl2/lps/linearise.h>
using namespace mcrl2;
using namespace mcrl2::data;
using namespace mcrl2::lps;
///sum d:D should be unfolded
void test_case_1()
{
const std::string text(
"sort D = struct d1|d2;\n"
"act a;\n"
"proc X = sum d:D . a . X;\n"
"init X;\n"
);
specification s0 = linearise(text);
rewriter r(s0.data());
specification s1(s0);
suminst_algorithm<rewriter>(s1,r).run();
std::clog << lps::pp(s0) << std::endl;
std::clog << lps::pp(s1) << std::endl;
const action_summand_vector& summands1 = s1.process().action_summands();
for (action_summand_vector::const_iterator i = summands1.begin(); i != summands1.end(); ++i)
{
BOOST_CHECK(i->summation_variables().empty());
}
// TODO: Check that d1 and d2 actually occur in the process.
}
///sum d:D should be unfolded (multiple occurrences of d per summand)
void test_case_2()
{
const std::string text(
"sort D = struct d1|d2;\n"
"act a:D;\n"
" b;\n"
"proc X(x:D) = sum d:D . a(d) . b . X(d);\n"
"init X(d1);\n"
);
specification s0 = linearise(text);
rewriter r(s0.data());
specification s1(s0);
suminst_algorithm<rewriter>(s1, r).run();
const action_summand_vector& summands1 = s1.process().action_summands();
for (action_summand_vector::const_iterator i = summands1.begin(); i != summands1.end(); ++i)
{
BOOST_CHECK(i->summation_variables().empty());
}
// TODO: Check that d1 and d2 actually occur in the process.
}
///sum d:D should not be removed, hence there should be a summand for
///which d is a sum variable.
void test_case_3()
{
const std::string text(
"sort D;\n"
"act a:D;\n"
"proc X = sum d:D . a(d) . X;\n"
"init X;\n"
);
specification s0 = linearise(text);
rewriter r(s0.data());
specification s1(s0);
suminst_algorithm<rewriter>(s1, r).run();
bool sum_occurs = false;
const action_summand_vector& summands1 = s1.process().action_summands();
for (action_summand_vector::const_iterator i = summands1.begin(); i != summands1.end(); ++i)
{
sum_occurs = sum_occurs || !i->summation_variables().empty();
}
BOOST_CHECK(sum_occurs);
}
///This is a test in which tau summands occur.
///We override opts such that only tau summands are instantiated.
///Note: Test case 5 tests the same specification, but uses the defaults.
void test_case_4()
{
const std::string text(
"sort S = struct s1 | s2 | s3;\n"
" T = struct t1 | t2 | t3;\n"
"act a;\n"
"proc P = sum s : S . tau . P\n"
" + sum t : T . a . P;\n"
"init P;\n"
);
specification s0 = linearise(text);
rewriter r(s0.data());
specification s1(s0);
suminst_algorithm<rewriter>(s1, r, finite_sorts(s1.data()), true).run();
bool tau_sum_occurs = false;
bool sum_occurs = false;
const action_summand_vector& summands1 = s1.process().action_summands();
for (action_summand_vector::const_iterator i = summands1.begin(); i != summands1.end(); ++i)
{
if (i->is_tau())
{
tau_sum_occurs = tau_sum_occurs || !i->summation_variables().empty();
}
else
{
sum_occurs = sum_occurs || !i->summation_variables().empty();
}
}
BOOST_CHECK(!tau_sum_occurs);
BOOST_CHECK(sum_occurs);
}
///This is a test in which tau summands occur.
///Both sum variables should be expanded, hence no sum variable may occur in the
///result.
///Note: Test case 4 tests the same specification, but only expands the tau
///summands.
void test_case_5()
{
const std::string text(
"sort S = struct s1 | s2 | s3;\n"
" T = struct t1 | t2 | t3;\n"
"act a;\n"
"proc P = sum s : S . tau . P\n"
" + sum t : T . a . P;\n"
"init P;\n"
);
specification s0 = linearise(text);
rewriter r(s0.data());
specification s1(s0);
suminst_algorithm<rewriter>(s1, r).run();
bool tau_sum_occurs = false;
bool sum_occurs = false;
const action_summand_vector& summands1 = s1.process().action_summands();
for (action_summand_vector::const_iterator i = summands1.begin(); i != summands1.end(); ++i)
{
if (i->is_tau())
{
tau_sum_occurs = tau_sum_occurs || !i->summation_variables().empty();
}
else
{
sum_occurs = sum_occurs || !i->summation_variables().empty();
}
}
BOOST_CHECK(!tau_sum_occurs);
BOOST_CHECK(!sum_occurs);
}
void test_case_6()
{
const std::string text(
"proc P(n0:Nat) = sum n : Nat . (n == n0) -> delta@n . P(n);\n"
"init P(5);\n"
);
specification s0 = linearise(text);
rewriter r(s0.data());
specification s1(s0);
suminst_algorithm<rewriter>(s1, r, std::set<data::sort_expression>(s1.data().sorts().begin(),s1.data().sorts().end())).run();
const action_summand_vector& summands1 = s1.process().action_summands();
for (action_summand_vector::const_iterator i = summands1.begin(); i != summands1.end(); ++i)
{
BOOST_CHECK(i->summation_variables().empty());
}
}
void test_case_7()
{
const std::string text(
"sort S;\n"
"act a:S;\n"
"proc P = sum s : S . a(s) . P;\n"
"init P;\n"
);
specification s0 = linearise(text);
rewriter r(s0.data());
specification s1(s0);
suminst_algorithm<rewriter>(s1, r, std::set<data::sort_expression>(s1.data().sorts().begin(),s1.data().sorts().end())).run();
int sum_count = 0;
const action_summand_vector& summands1 = s1.process().action_summands();
for (action_summand_vector::const_iterator i = summands1.begin(); i != summands1.end(); ++i)
{
sum_count += i->summation_variables().size();
}
BOOST_CHECK(sum_count == 1);
}
int test_main(int ac, char** av)
{
std::clog << "test case 1" << std::endl;
test_case_1();
std::clog << "test case 2" << std::endl;
test_case_2();
std::clog << "test case 3" << std::endl;
test_case_3();
std::clog << "test case 4" << std::endl;
test_case_4();
std::clog << "test case 5" << std::endl;
test_case_5();
std::clog << "test case 6" << std::endl;
test_case_6();
return 0;
}
|