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
|
// Author(s): Wieger Wesselink
// 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 specification_property_map_test.cpp
/// \brief Add your file description here.
#include <iostream>
#include <string>
#include <boost/test/minimal.hpp>
#include <boost/algorithm/string.hpp>
#include "mcrl2/lps/linearise.h"
#include "mcrl2/lps/parse.h"
#include "mcrl2/lps/detail/specification_property_map.h"
#include "mcrl2/lps/detail/test_input.h"
using namespace mcrl2;
using namespace mcrl2::lps;
const std::string LPSINFO =
"declared_action_label_count = 21 \n"
"declared_action_labels = c2, c3, c5, c6, i, r1, r2, r3, r5, r6, s2, s3, s4, s5, s6 \n"
"declared_free_variable_count = 20 \n"
"declared_free_variable_names = dc, dc1, dc10, dc11, dc12, dc13, c14, dc15, dc16, dc17, dc18, dc19, dc2, dc3, dc4, dc5, dc6, dc7, dc8, dc9 \n"
"delta_summand_count = 1 \n"
"process_parameter_count = 11 \n"
"process_parameter_names = b_K, b_L, b_R, b_S, d_K, d_R, d_S, s31_S, s32_K, s33_L, s34_R \n"
"summand_count = 11 \n"
"tau_summand_count = 70 \n"
"used_action_label_count = 19 \n"
"used_action_labels = c2, c3, c5, c6, i, r1, s4 \n"
"used_free_variable_count = 15 \n"
"used_free_variable_names = dc1, dc11, dc12, dc13, x15, dc16, dc17, dc18, dc19, dc4, dc5, dc6, dc7, dc8, dc9 \n"
"used_multi_action_count = 9 \n"
"used_multi_actions = {a1, c2}; {c3}; {c5}; {c6}; {i,j}; {r1}; {s4} \n"
;
int test_main(int argc, char* argv[])
{
specification spec = linearise(lps::detail::ABP_SPECIFICATION());
lps::detail::specification_property_map info1(spec);
std::cerr << info1.to_string() << std::endl;
lps::detail::specification_property_map info2(LPSINFO);
std::cerr << info1.compare(info2) << std::endl;
return 0;
}
|