File: confcheck_test.cpp

package info (click to toggle)
mcrl2 201409.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd
  • size: 46,348 kB
  • ctags: 29,960
  • sloc: cpp: 213,160; ansic: 16,219; python: 13,238; yacc: 309; lex: 214; xml: 197; makefile: 83; sh: 82; pascal: 17
file content (213 lines) | stat: -rwxr-xr-x 5,986 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
// Author(s): Unknown
// 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 parelm_test.cpp
/// \brief Add your file description here.

#include <iostream>
#include <string>
#include <boost/test/included/unit_test_framework.hpp>
#include "mcrl2/atermpp/detail/utility.h"
#include "mcrl2/utilities/test_utilities.h"
#include "mcrl2/lps/parse.h"
#include "mcrl2/lps/specification.h"
#include "mcrl2/lps/confluence_checker.h"
#include "mcrl2/data/bool.h"

using namespace mcrl2;
using namespace mcrl2::data;
using namespace mcrl2::core;
using namespace mcrl2::lps;
using namespace mcrl2::lps::detail;
using mcrl2::utilities::collect_after_test_case;

BOOST_GLOBAL_FIXTURE(collect_after_test_case)

//static bool check_for_ctau(lps::specification const& s) .
static size_t count_ctau(lps::specification const& s)
{
  size_t result = 0;
  const action_summand_vector v_summands = s.process().action_summands();

  for (action_summand_vector::const_iterator i=v_summands.begin(); i!=v_summands.end(); ++i)
  {
    const process::action_list al=i->multi_action().actions();
    if (al.size()==1)
    {
      const process::action_label lab=al.front().label();
      if (to_string(lab.name())=="ctau")
      {
        ++result;
      }
    }
  }
  return result;
}

static
void run_confluence_test_case(const std::string& s, const size_t ctau_count)
{
  using namespace mcrl2::lps;

  specification s0 = parse_linear_process_specification(s);
  Confluence_Checker checker1(s0);
  // Check confluence for all summands and
  // replace confluents tau's by ctau's.
  specification s1(lps::specification(checker1.check_confluence_and_mark(data::sort_bool::true_(),0)));

  BOOST_CHECK_EQUAL(count_ctau(s1), ctau_count);
}

BOOST_AUTO_TEST_CASE(case_1)
{
  /*
   act a, b;
   init tau.a + tau.b;
   */
  const std::string s(
      "act  Terminate,a,b;\n"
      "proc P(s3: Pos) =\n"
      "       (s3 == 5) ->\n"
      "         b .\n"
      "         P(s3 = 3)\n"
      "     + (s3 == 3) ->\n"
      "         Terminate .\n"
      "         P(s3 = 4)\n"
      "     + (s3 == 2) ->\n"
      "         a .\n"
      "         P(s3 = 3)\n"
      "     + sum e: Bool.\n"
      "         (if(e, true, true) && s3 == 1) ->\n"
      "         tau .\n"
      "         P(s3 = if(e, 5, 2))\n"
      "     + delta;\n"
      "init P(1);\n"
  );

  run_confluence_test_case(s,0);
}


BOOST_AUTO_TEST_CASE(case_2)
{
  /*
   act a, b;
   init a.tau.b.delta;
   */
  const std::string s(
    "act  a,b;\n"
    "proc P(s3: Pos) =\n"
    "       (s3 == 3) ->\n"
    "         b .\n"
    "         P(s3 = 4)\n"
    "     + (s3 == 2) ->\n"
    "         tau .\n"
    "         P(s3 = 3)\n"
    "     + (s3 == 1) ->\n"
    "         a .\n"
    "         P(s3 = 2)\n"
    "     + delta;\n"
    "init P(1);\n"
  );

  run_confluence_test_case(s,1);
}

BOOST_AUTO_TEST_CASE(case_3)
{
  /*
   act a, b;
   init a.b.delta;
   */
  const std::string s(
    "act  a,b;\n"
    "proc P(s3: Pos) =\n"
    "       (s3 == 2) ->\n"
    "         b .\n"
    "         P(s3 = 3)\n"
    "     + (s3 == 1) ->\n"
    "         a .\n"
    "         P(s3 = 2)\n"
    "     + delta;\n"
    "init P(1);\n"
    );
  run_confluence_test_case(s,0);
}

// The following test case unearthed an assertion failure when applying
// substitutions.
BOOST_AUTO_TEST_CASE(case_4)
{
  const std::string s(
    "proc P(m: Int) =\n"
    "       (m == 1) ->\n"
    "         tau .\n"
    "         P(m = m - 1)\n"
    "     + (m == 1) ->\n"
    "         tau .\n"
    "         P()\n"
    "     + delta;\n"
    "\n"
    "init P(0);\n"
    );
  run_confluence_test_case(s,0);
}

// Test case provided by Jaco van der Pol
// in some versions the algorithm hangs on this example.
BOOST_AUTO_TEST_CASE(case_5)
{
  const std::string s(
      "sort Byte = struct ESC | END | OTHER;\n"
      "     Enum3 = struct e2_3 | e1_3 | e0_3;\n"
      "     Enum4 = struct e3_4 | e2_4 | e1_4 | e0_4;\n"
      "map  special: Byte -> Bool;\n"
      "var  b: Byte;\n"
      "eqn  special(b)  =  b == ESC || b == END;\n"
      "act  r,s,r1,s1,r2,s2,c1,c2: Byte;\n"
      "proc P(s3_S: Enum3, b_S: Byte, s30_C: Bool, b_C: Byte, s31_R: Enum4, b_R,b0_R: Byte) =\n"
      "       sum b1_S: Byte.\n"
      "         (s3_S == e2_3 && !(b1_S == ESC || b1_S == END)) ->\n"
      "         r(b1_S) .\n"
      "         P(s3_S = e0_3, b_S = b1_S)\n"
      "     + sum b2_S: Byte.\n"
      "         (s3_S == e2_3 && (b2_S == ESC || b2_S == END)) ->\n"
      "         r(b2_S) .\n"
      "         P(s3_S = e1_3, b_S = b2_S)\n"
      "     + ((s30_C && s31_R == e3_4) && ESC == b_C) ->\n"
      "         tau .\n"
      "         P(s30_C = false, b_C = ESC, s31_R = e2_4, b_R = ESC, b0_R = ESC)\n"
      "     + ((s30_C && s31_R == e3_4) && !(b_C == ESC)) ->\n"
      "         tau .\n"
      "         P(s30_C = false, b_C = ESC, s31_R = e0_4, b_R = b_C, b0_R = ESC)\n"
      "     + (s30_C && s31_R == e2_4) ->\n"
      "         tau .\n"
      "         P(s30_C = false, b_C = ESC, s31_R = e1_4, b_R = ESC, b0_R = b_C)\n"
      "     + (s31_R == e1_4) ->\n"
      "         s(b0_R) .\n"
      "         P(s31_R = e3_4, b_R = ESC, b0_R = ESC)\n"
      "     + (s31_R == e0_4) ->\n"
      "         s(b_R) .\n"
      "         P(s31_R = e3_4, b_R = ESC, b0_R = ESC)\n"
      "     + (s3_S == e0_3 && !s30_C) ->\n"
      "         tau .\n"
      "         P(s3_S = e2_3, b_S = ESC, s30_C = true, b_C = b_S)\n"
      "     + (s3_S == e1_3 && !s30_C) ->\n"
      "         tau .\n"
      "         P(s3_S = e0_3, s30_C = true, b_C = ESC)\n"
      "     + delta;\n"
      "init P(e2_3, ESC, false, ESC, e3_4, ESC, ESC);\n"
  );
  run_confluence_test_case(s,5);
}


boost::unit_test::test_suite* init_unit_test_suite(int argc, char* argv[])
{
  return 0;
}