mCRL2
Loading...
Searching...
No Matches
liblts_sim.h
Go to the documentation of this file.
1// Author(s): Bas Ploeger
2// Copyright: see the accompanying file COPYING or copy at
3// https://github.com/mCRL2org/mCRL2/blob/master/COPYING
4//
5// Distributed under the Boost Software License, Version 1.0.
6// (See accompanying file LICENSE_1_0.txt or copy at
7// http://www.boost.org/LICENSE_1_0.txt)
8//
9/// \file liblts_sim.h
10/// \brief Header file for the simulation preorder algorithm
11
12#ifndef LIBLTS_SIM_H
13#define LIBLTS_SIM_H
14#include "mcrl2/lts/lts_utilities.h"
15#include "mcrl2/lts/detail/sim_hashtable.h"
16#include "mcrl2/lts/lts_aut.h"
17#include "mcrl2/lts/lts_fsm.h"
18#include "mcrl2/lts/lts_dot.h"
19
20namespace mcrl2
21{
22namespace lts
23{
24namespace detail
25{
26
27template <class LTS_TYPE>
29{
30 public:
31 /** Creates a partitioner for an LTS.
32 * \param[in] l Pointer to the LTS. */
33 sim_partitioner(LTS_TYPE& l);
34
35 /** Destroys this partitioner. */
37
38 /** Computes the simulation equivalence classes and preorder
39 * relations of the LTS. */
40 virtual void partitioning_algorithm();
41
42 /** Gives the transition relation on the computed equivalence
43 * classes of the LTS. The label numbers of the transitions
44 * correspond to the label numbers of the LTS that was passed as an
45 * argument to the constructor of this partitioner.
46 * The state numbers of the transitions are the equivalence class
47 * numbers which range from 0 upto (and excluding) \ref num_eq_classes().
48 *
49 * \pre The simulation equivalence classes have been computed.
50 * \return A vector containing the transitions between the
51 * simulation equivalence classes. */
53
54 /** Gives the number of simulation equivalence classes of the LTS.
55 * \pre The simulation equivalence classes have been computed.
56 * \return The number of simulation equivalence classes of the LTS.
57 */
58 std::size_t num_eq_classes() const;
59
60 /** Gives the equivalence class number of a state.
61 * The equivalence class numbers range from 0 upto (and excluding)
62 * \ref num_eq_classes().
63 * \pre The simulation equivalence classes have been computed.
64 * \param[in] s A state number.
65 * \return The number of the equivalence class to which \e s
66 * belongs. */
67 std::size_t get_eq_class(std::size_t s) const;
68
69 /** Returns whether one state is simulated by another state.
70 * \pre The simulation preorder has been computed.
71 * \param[in] s A state number.
72 * \param[in] t A state number.
73 * \retval true if \e s is simulated by \e t;
74 * \retval false otherwise. */
75 bool in_preorder(std::size_t s,std::size_t t) const;
76
77 /** Returns whether two states are in the same simulation
78 * equivalence class.
79 * \pre The simulation equivalence classes have been computed.
80 * \param[in] s A state number.
81 * \param[in] t A state number.
82 * \retval true if \e s and \e t are in the same simulation
83 * equivalence class;
84 * \retval false otherwise. */
85 bool in_same_class(std::size_t s,std::size_t t) const;
86
87 protected:
88
89 /** Computes the simulation equivalence classes and preorder
90 * relations of the LTS.
91 * \pre : initialise_datastructures called */
93
95 {
98 };
99
100 LTS_TYPE& aut;
102 std::size_t s_Sigma;
103 std::size_t s_Pi;
118 std::vector< std::vector<bool> > P;
119 std::vector< std::vector<bool> > Q;
120
121 /* auxiliary variables */
124
126 //void read_partition_from_file(char *parfile);
127
128 void refine(bool& change);
129 void update();
130 //void update_lts();
131
132 void touch(std::size_t a,std::size_t alpha);
133 void untouch(std::size_t alpha);
134
135 void reverse_topological_sort(std::vector<std::size_t>& Sort);
136 void dfs_visit(std::size_t u,std::vector<bool>& visited,
137 std::vector<std::size_t>& Sort);
138
139 void initialise_Sigma(std::size_t gamma,std::size_t l);
140 void initialise_Pi(std::size_t gamma,std::size_t l);
141 void filter(std::size_t S,std::vector< std::vector<bool> >& R,bool B);
142 void cleanup(std::size_t alpha,std::size_t beta);
143 void initialise_pre_EA();
144 void induce_P_on_Pi();
145
146 std::string print_Sigma_P();
147 std::string print_Pi_Q();
148 std::string print_Sigma();
149 std::string print_Pi();
150 std::string print_relation(std::size_t s,std::vector< std::vector<bool> >& R);
151 std::string print_block(std::size_t b);
152 std::string print_structure(hash_table3* struc);
153 std::string print_reverse_topological_sort(const std::vector<std::size_t>& Sort);
154};
155
156
157#define LIST_END (-1)
158#define UNIVERSAL_PART (0)
159
160template <class LTS_TYPE>
161sim_partitioner<LTS_TYPE>::sim_partitioner(LTS_TYPE& l)
162 : aut(l)
163{
164 match = new hash_table3(1000);
165 exists = new hash_table3(1000);
166 forall = new hash_table3(1000);
167}
168
169template <class LTS_TYPE>
171{
172 delete match;
173 delete exists;
174 delete forall;
175}
176
177/* ----------------- PARTITIONING ALGORITHM ------------------------- */
178
179template <class LTS_TYPE>
181{
184}
185
186/* Pre : initialise_datastructures called */
187template <class LTS_TYPE>
189{
190 using namespace mcrl2::core;
191
192 bool change;
193 std::size_t i;
194
195 refine(change);
196 update();
197
198 change = true;
199 i = 0;
200 while (change)
201 {
202 change = false;
203
204 /* Set Sigma to Pi and P to Q*/
205 s_Sigma = s_Pi;
206 /* The following statement simultaneously assigns P to Q and Q to P.
207 * The assignment of Q to P is safe because Q is not used in
208 * refine() and will be freshly computed at the start of update().
209 * The advantage of using swap() is that it is executed in constant
210 * time. */
211 P.swap(Q);
212
213 mCRL2log(log::debug) << "--------------------- ITERATION " << i << " ----------------------------------" << std::endl;
214
215 mCRL2log(log::debug) << " iteration " << i << "; number of blocks: " << s_Sigma << std::endl;
216
217 refine(change);
218 if (change)
219 {
220 update();
221 }
222 else
223 {
224 /* No blocks were split by refine(), so update() need not be
225 * called. However, we do need to swap P and Q again: Q currently
226 * contains the P-relation of the previous iteration (due to the
227 * call to swap() prior to the call to refine()) but we want it to
228 * contain that of the current iteration! */
229 P.swap(Q);
230 }
231 ++i;
232 }
233
235 {
237 }
238}
239
240template <class LTS_TYPE>
242{
243 // aut.sort_transitions(mcrl2::lts::lbl_tgt_src);
244 // trans_index = aut.get_transition_pre_table();
245 trans_index=transitions_per_outgoing_state_action_pair_reversed(aut.get_transitions(),aut.hidden_label_set());
246
247 std::size_t N = aut.num_states();
248
250 state_buckets.assign(N,sb);
251 state_touched.assign(N,false);
252 block_Pi.assign(N,UNIVERSAL_PART);
253
254 /* put all states in one block */
255 s_Pi = 1;
256 contents_u.push_back(UNIVERSAL_PART);
257 contents_t.push_back(LIST_END);
258 for (std::size_t i = 0; i < N; ++i)
259 {
260 if (i > 0)
261 {
262 state_buckets[i].prev = i-1;
263 }
264 else
265 {
266 state_buckets[i].prev = LIST_END;
267 }
268 if (i < N-1)
269 {
270 state_buckets[i].next = i+1;
271 }
272 else
273 {
274 state_buckets[i].next = LIST_END;
275 }
276 }
277
278 block_touched.assign(s_Pi,false);
279 s_Sigma = s_Pi;
280
281 /* initialise P and children */
282 std::vector<std::size_t> vi;
283 children.assign(s_Sigma,vi);
284 std::vector<bool> vb(s_Sigma,false);
285 P.assign(s_Sigma,vb);
286 for (std::size_t i = 0; i < s_Sigma; ++i)
287 {
288 children[i].push_back(i);
289 P[i][i] = true;
290 }
291
292 mCRL2log(log::debug) << "--------------------- INITIALISATION ---------------------------" << std::endl;
293 mCRL2log(log::debug) << " initialisation; number of blocks: " << s_Sigma << std::endl;
294}
295
296/* ----------------- INITIALISE ------------------------------------- */
297
298template <class LTS_TYPE>
299void sim_partitioner<LTS_TYPE>::initialise_Pi(std::size_t gamma,std::size_t l)
300{
301 std::size_t alpha, a, c;
302 std::vector<std::size_t>::iterator ci, last;
303
304 contents.clear();
305 for (ptrdiff_t i = contents_u[gamma]; i != LIST_END;
306 i = state_buckets[i].next)
307 {
308 contents.push_back(std::size_t(i));
309 }
310 for (ptrdiff_t i = contents_t[gamma]; i != LIST_END;
311 i = state_buckets[i].next)
312 {
313 contents.push_back(std::size_t(i));
314 }
315 last = contents.end();
316 for (ci = contents.begin(); ci != last; ++ci)
317 {
318 c = *ci;
319 /* iterate over the incoming l-transitions of c */
320 using namespace mcrl2::lts;
321 for (outgoing_transitions_per_state_action_t::iterator
322 t=trans_index.lower_bound(std::pair < transition::size_type, transition::size_type >(c,l));
323 t!=trans_index.upper_bound(std::pair < transition::size_type, transition::size_type >(c,l)); ++t)
324 {
325 a = to(t); // As trans_index is reversed, this is actually the state from which the transition t goes.
326 if (!state_touched[a])
327 {
328 alpha = block_Pi[a];
329 touch(a,alpha);
330 if (!block_touched[alpha])
331 {
332 touched_blocks.push_back(alpha);
333 block_touched[alpha] = true;
334 }
335 }
336 }
337 }
338}
339
340template <class LTS_TYPE>
341void sim_partitioner<LTS_TYPE>::initialise_Sigma(std::size_t gamma,std::size_t l)
342{
343 std::vector<std::size_t>::iterator deltai, last;
344 last = children[gamma].end();
345 for (deltai = children[gamma].begin(); deltai != last; ++deltai)
346 {
347 initialise_Pi(*deltai,l);
348 }
349}
350
351/* ----------------- REFINE ----------------------------------------- */
352
353/* PRE: s_Sigma = s_Pi */
354template <class LTS_TYPE>
355void sim_partitioner<LTS_TYPE>::refine(bool& change)
356{
357 using namespace mcrl2::core;
358 /* Initialise the parent and children functions */
359 std::vector<std::size_t> v;
360 children.assign(s_Pi,v);
361 parent.assign(s_Pi,0);
362 std::size_t alpha;
363 for (alpha = 0; alpha < s_Pi; ++alpha)
364 {
365 children[alpha].push_back(alpha);
366 parent[alpha] = alpha;
367 }
368
370 {
371 mCRL2log(log::debug) << "--------------------- Refine ---------------------------------------" << std::endl;
373 }
374
375 /* Compute a reverse topological sorting of Sigma w.r.t. P */
376 std::vector<std::size_t> Sort;
377 Sort.reserve(s_Sigma);
378 reverse_topological_sort(Sort);
379
381 {
382 mCRL2log(log::debug) << print_reverse_topological_sort(Sort);
383 }
384
385 /* Some local variables */
386 std::vector<bool> v_false(s_Sigma,false);
387 std::vector<std::size_t>::iterator alphai, last, gammai;
388 std::vector< std::vector<bool> >::iterator stable_alpha, P_gamma;
389 bool stable_alpha_gamma;
390 std::size_t gamma, delta, l;
391
392 /* The main loop */
393 for (l = 0; l < aut.num_action_labels(); ++l)
394 {
395 mCRL2log(log::debug) << "---------------------------------------------------" << std::endl;
396 mCRL2log(log::debug) << "Label = \"" << mcrl2::lts::pp(aut.action_label(l)) << "\"" << std::endl;
397
398 /* reset the stable function */
399 stable.assign(s_Pi,v_false);
400
401 /* iterate over the reverse topological sorting */
402 for (gammai = Sort.begin(); gammai != Sort.end(); ++gammai)
403 {
404 gamma = *gammai;
405
406 touched_blocks.clear();
407 initialise_Sigma(gamma,l);
408
409 /* iterate over all alpha such that alpha -l->E gamma */
410 last = touched_blocks.end();
411 for (alphai = touched_blocks.begin(); alphai != last; ++alphai)
412 {
413 alpha = *alphai;
414 /* compute stable(alpha,gamma); use a local boolean variable for
415 * efficiency */
416 stable_alpha_gamma = false;
417 stable_alpha = stable.begin() + alpha;
418 P_gamma = P.begin() + gamma;
419 for (delta = 0; delta < s_Sigma && !stable_alpha_gamma; ++delta)
420 {
421 if ((*stable_alpha)[delta] && (*P_gamma)[delta])
422 {
423 stable_alpha_gamma = true;
424 }
425 }
426 (*stable_alpha)[gamma] = stable_alpha_gamma;
427 if (!stable_alpha_gamma)
428 {
429 /* if alpha -l->A gamma then alpha cannot be split */
430 if (contents_u[alpha] != LIST_END)
431 {
432 /* split alpha; new block will be s_Pi */
433 change = true;
434
435 children[parent[alpha]].push_back(s_Pi);
436 parent.push_back(parent[alpha]);
437 stable.push_back(*stable_alpha);
438 block_touched.push_back(false);
439 contents_t.push_back(LIST_END);
440
441 /* assign the untouched contents of alpha to s_Pi */
442 contents_u.push_back(contents_u[alpha]);
443 contents_u[alpha] = LIST_END;
444
445 /* update the block information for the moved states */
446 for (ptrdiff_t i = contents_u[s_Pi]; i != LIST_END;
447 i = state_buckets[i].next)
448 {
449 block_Pi[i] = s_Pi;
450 }
451 ++s_Pi;
452 }
453 stable[alpha][gamma] = true;
454 }
455 untouch(alpha);
456 }
457 }
458 }
459}
460
461template <class LTS_TYPE>
462void sim_partitioner<LTS_TYPE>::reverse_topological_sort(std::vector<std::size_t>& Sort)
463{
464 std::vector<bool> visited(s_Sigma,false);
465 for (std::size_t u = 0; u < s_Sigma; ++u)
466 {
467 if (!visited[u])
468 {
469 dfs_visit(u,visited,Sort);
470 }
471 }
472}
473
474template <class LTS_TYPE>
475void sim_partitioner<LTS_TYPE>::dfs_visit(std::size_t u,std::vector<bool>& visited,
476 std::vector<std::size_t> &Sort)
477{
478 visited[u] = true;
479 for (std::size_t v = 0; v < s_Sigma; ++v)
480 {
481 if (!visited[v] && P[u][v])
482 {
483 dfs_visit(v,visited,Sort);
484 }
485 }
486 Sort.push_back(u);
487}
488
489template <class LTS_TYPE>
490void sim_partitioner<LTS_TYPE>::touch(std::size_t a,std::size_t alpha)
491{
492 state_touched[a] = true;
493 ptrdiff_t p = state_buckets[a].prev;
494 ptrdiff_t n = state_buckets[a].next;
495 if (p == LIST_END)
496 {
497 contents_u[alpha] = n;
498 }
499 else
500 {
501 state_buckets[p].next = n;
502 }
503 if (n != LIST_END)
504 {
505 state_buckets[n].prev = p;
506 }
507 state_buckets[a].prev = LIST_END;
508 state_buckets[a].next = contents_t[alpha];
509 if (contents_t[alpha] != LIST_END)
510 {
511 state_buckets[contents_t[alpha]].prev = a;
512 }
513 contents_t[alpha] = a;
514}
515
516/* PRE: contents_t[alpha] != LIST_END */
517template <class LTS_TYPE>
518void sim_partitioner<LTS_TYPE>::untouch(std::size_t alpha)
519{
520 // search linearly for the last element of contents_t[alpha];
521 // untouch every state we encounter along the way
522 ptrdiff_t i = contents_t[alpha];
523 while (state_buckets[i].next != LIST_END)
524 {
525 state_touched[i] = false;
526 i = state_buckets[i].next;
527 }
528 // last element has not been untouched yet
529 state_touched[i] = false;
530
531 // insert the list contents_t[alpha] at the beginning of
532 // contents_u[alpha]
533 state_buckets[i].next = contents_u[alpha];
534 if (contents_u[alpha] != LIST_END)
535 {
536 state_buckets[contents_u[alpha]].prev = i;
537 }
538 contents_u[alpha] = contents_t[alpha];
539 contents_t[alpha] = LIST_END;
540 block_touched[alpha] = false;
541}
542
543/* ----------------- UPDATE ----------------------------------------- */
544
545template <class LTS_TYPE>
546void sim_partitioner<LTS_TYPE>::update()
547{
548 using namespace mcrl2::core;
549 mCRL2log(log::debug) << "--------------------- Update ---------------------------------------" << std::endl;
550
551 std::size_t l,alpha,gamma;
552 std::vector<std::size_t>::iterator alphai, last;
553
555
557
558 /* Compute the pre_exists and pre_forall functions */
559 for (l = 0; l < aut.num_action_labels(); ++l)
560 {
561 pre_exists[l].reserve(s_Sigma + 1);
562 pre_forall[l].reserve(s_Sigma + 1);
563 pre_exists[l].push_back(exists->get_num_elements());
564 pre_forall[l].push_back(forall->get_num_elements());
565 for (gamma = 0; gamma < s_Sigma; ++gamma)
566 {
567 touched_blocks.clear();
569 last = touched_blocks.end();
570 for (alphai = touched_blocks.begin(); alphai != last; ++alphai)
571 {
572 alpha = *alphai;
573 exists->add(alpha,l,gamma);
574 if (contents_u[alpha] == LIST_END)
575 {
576 forall->add(alpha,l,gamma);
577 }
578 untouch(alpha);
579 }
580 pre_exists[l].push_back(exists->get_num_elements());
581 pre_forall[l].push_back(forall->get_num_elements());
582 }
583 }
584
585 mCRL2log(log::debug) << "------ Filter(false) ------\nExists: ";
587 mCRL2log(log::debug) << "\nForall: ";
589 mCRL2log(log::debug) << "\nSimulation relation: ";
590 mCRL2log(log::debug) << print_relation(s_Pi,Q);
591
592 /* Apply the first filtering to Q */
593 filter(s_Sigma,P,false);
594
595
597
598 /* Compute the pre_exists and pre_forall functions */
599 for (l = 0; l < aut.num_action_labels(); ++l)
600 {
601 pre_exists[l].reserve(s_Pi + 1);
602 pre_forall[l].reserve(s_Pi + 1);
603 pre_exists[l].push_back(exists->get_num_elements());
604 pre_forall[l].push_back(forall->get_num_elements());
605 for (gamma = 0; gamma < s_Pi; ++gamma)
606 {
607 touched_blocks.clear();
608 initialise_Pi(gamma,l);
609 last = touched_blocks.end();
610 for (alphai = touched_blocks.begin(); alphai != last; ++alphai)
611 {
612 alpha = *alphai;
613 exists->add(alpha,l,gamma);
614 if (contents_u[alpha] == LIST_END)
615 {
616 forall->add(alpha,l,gamma);
617 }
618 untouch(alpha);
619 }
620 pre_exists[l].push_back(exists->get_num_elements());
621 pre_forall[l].push_back(forall->get_num_elements());
622 }
623 }
624
625 mCRL2log(log::debug) << "------ Filter(true) ------\nExists: ";
627 mCRL2log(log::debug) << "\nForall: ";
629 mCRL2log(log::debug) << "\nSimulation relation: ";
630 mCRL2log(log::debug) << print_relation(s_Pi,Q);
631
632 /* Apply the second filtering to Q */
633 filter(s_Pi,Q,true);
634}
635
636template <class LTS_TYPE>
638{
639 /* Initialise the pre_exists and pre_forall data structures */
642 std::vector<std::size_t> v;
643 pre_exists.assign(aut.num_action_labels(),v);
644 pre_forall.assign(aut.num_action_labels(),v);
645}
646
647template <class LTS_TYPE>
649{
650 /* Compute the relation induced on Pi by P, store it in Q */
651 std::vector<bool> v(s_Pi,false);
652 Q.assign(s_Pi,v);
653
654 std::size_t alpha,beta;
655 std::vector< std::vector<bool> >::iterator P_parent_alpha;
656 for (alpha = 0; alpha < s_Pi; ++alpha)
657 {
658 P_parent_alpha = P.begin() + parent[alpha];
659 for (beta = 0; beta < s_Pi; ++beta)
660 {
661 Q[alpha][beta] = (*P_parent_alpha)[parent[beta]];
662 }
663 }
664}
665
666
667/* ----------------- FILTER ----------------------------------------- */
668
669template <class LTS_TYPE>
670void sim_partitioner<LTS_TYPE>::filter(std::size_t S,std::vector< std::vector<bool> > &R,
671 bool B)
672{
673 /* Initialise the match function */
675
676 std::size_t alpha,beta,gamma,delta,l;
678 for (l = 0; l < aut.num_action_labels(); ++l)
679 {
680 for (delta = 0; delta < S; ++delta)
681 {
682 etrans.set_end(pre_exists[l][delta+1]);
683 for (etrans.set(pre_exists[l][delta]); !etrans.is_end(); ++etrans)
684 {
685 beta = etrans.get_x();
686 for (gamma = 0; gamma < S; ++gamma)
687 {
688 if (R[gamma][delta])
689 {
690 match->add(l,beta,gamma);
691 }
692 }
693 }
694 }
695 }
696
698 /* The main for loop */
699 for (l = 0; l < aut.num_action_labels(); ++l)
700 {
701 for (gamma = 0; gamma < S; ++gamma)
702 {
703 atrans.set_end(pre_forall[l][gamma+1]);
704 for (atrans.set(pre_forall[l][gamma]); !atrans.is_end(); ++atrans)
705 {
706 alpha = atrans.get_x();
707 for (beta = 0; beta < s_Pi; ++beta)
708 {
709 if (Q[alpha][beta] && !match->find(l,beta,gamma))
710 {
711 Q[alpha][beta] = false;
712 if (B)
713 {
714 cleanup(alpha,beta);
715 }
716 }
717 }
718 }
719 }
720 }
721}
722
723/* ----------------- CLEANUP ---------------------------------------- */
724
725template <class LTS_TYPE>
726void sim_partitioner<LTS_TYPE>::cleanup(std::size_t alpha,std::size_t beta)
727{
728 std::size_t l,alpha1,beta1,delta;
729 bool match_l_beta1_alpha;
732 for (l = 0; l < aut.num_action_labels(); ++l)
733 {
734 alpha1i.set_end(pre_forall[l][alpha+1]);
735 beta1i.set_end(pre_exists[l][beta+1]);
736 for (beta1i.set(pre_exists[l][beta]); !beta1i.is_end(); ++beta1i)
737 {
738 beta1 = beta1i.get_x();
739 match_l_beta1_alpha = false;
740 for (delta = 0; delta < s_Pi && !match_l_beta1_alpha; ++delta)
741 {
742 if (exists->find(beta1,l,delta) && Q[alpha][delta])
743 {
744 match_l_beta1_alpha = true;
745 }
746 }
747 if (!match_l_beta1_alpha)
748 {
749 match->remove(l,beta1,alpha);
750 for (alpha1i.set(pre_forall[l][alpha]); !alpha1i.is_end();
751 ++alpha1i)
752 {
753 alpha1 = alpha1i.get_x();
754 if (Q[alpha1][beta1])
755 {
756 Q[alpha1][beta1] = false;
757 cleanup(alpha1,beta1);
758 }
759 }
760 }
761 }
762 }
763}
764
765/* ----------------- FOR POST-PROCESSING ---------------------------- */
766
767template <class LTS_TYPE>
769{
770 using namespace mcrl2::lts;
771
772 std::vector < mcrl2::lts::transition> ts;
773 ts.reserve(forall->get_num_elements());
774
775 std::vector<bool> pre_sim;
776 transition::size_type l,beta,gamma;
779 for (beta = 0; beta < s_Pi; ++beta)
780 {
781 for (l = 0; l < aut.num_action_labels(); ++l)
782 {
783 // there is an l-transition from alpha to beta iff:
784 // - alpha -l->A [beta]
785 // - not Exists gamma : beta Q gamma /\ alpha -l->E gamma
786 // first compute for which alpha the latter statement does not
787 // hold
788 pre_sim.assign(s_Pi,false);
789 for (gamma = 0; gamma < s_Pi; ++gamma)
790 {
791 // only consider gammas that are unequal to beta
792 if (gamma != beta && Q[beta][gamma])
793 {
794 alphai.set_end(pre_exists[l][gamma+1]);
795 for (alphai.set(pre_exists[l][gamma]); !alphai.is_end();
796 ++alphai)
797 {
798 pre_sim[alphai.get_x()] = true;
799 }
800 }
801 }
802 gammai.set_end(pre_forall[l][beta+1]);
803 for (gammai.set(pre_forall[l][beta]); !gammai.is_end(); ++gammai)
804 {
805 gamma = gammai.get_x();
806 if (!pre_sim[gamma])
807 {
808 // add the transition gamma -l-> beta
809 ts.push_back(transition(gamma,l,beta));
810 }
811 }
812 }
813 }
814 return ts;
815}
816
817template <class LTS_TYPE>
818std::size_t sim_partitioner<LTS_TYPE>::num_eq_classes() const
819{
820 return s_Pi;
821}
822
823template <class LTS_TYPE>
824std::size_t sim_partitioner<LTS_TYPE>::get_eq_class(std::size_t s) const
825{
826 return block_Pi[s];
827}
828
829template <class LTS_TYPE>
830bool sim_partitioner<LTS_TYPE>::in_preorder(std::size_t s,std::size_t t) const
831{
832 return Q[block_Pi[s]][block_Pi[t]];
833}
834
835template <class LTS_TYPE>
836bool sim_partitioner<LTS_TYPE>::in_same_class(std::size_t s,std::size_t t) const
837{
838 return (block_Pi[s] == block_Pi[t]);
839}
840
841/*
842// PRE: FORALL and EXISTS structures on Pi are computed
843void sim_partitione<LTS_TYPE>r::update_nfa()
844{
845 std::vector< std::vector<std::size_t> > v(s_Pi);
846 std::vector< std::vector< std::vector<std::size_t> > > post_trans(L,v);
847
848 std::vector<bool> pre_sim;
849 std::size_t l,beta,alpha,gamma;
850 hash_table3_iterator alphai(exists);
851 hash_table3_iterator gammai(forall);
852 for (beta = 0; beta < s_Pi; ++beta)
853 {
854 for (l = 0; l < aut.num_action_labels(); ++l)
855 {
856 // there is an l-transition from alpha to beta iff:
857 // - alpha -l->A [beta]
858 // - not Exists gamma : beta Q gamma /\ alpha -l->E gamma
859 // first compute for which alpha the latter statement does not
860 // hold
861 pre_sim.assign(s_Pi,false);
862 for (gamma = 0; gamma < s_Pi; ++gamma)
863 {
864 // only consider gammas that are unequal to beta
865 if (gamma != beta && Q[beta][gamma])
866 {
867 alphai.set_end(pre_exists[l][gamma+1]);
868 for (alphai.set(pre_exists[l][gamma]); !alphai.is_end();
869 ++alphai)
870 {
871 pre_sim[alphai.get_x()] = true;
872 }
873 }
874 }
875 gammai.set_end(pre_forall[l][beta+1]);
876 for (gammai.set(pre_forall[l][beta]); !gammai.is_end(); ++gammai)
877 {
878 gamma = gammai.get_x();
879 if (!pre_sim[gamma])
880 {
881 post_trans[l][gamma].push_back(beta);
882 }
883 }
884 }
885 }
886
887 std::vector<transition> *trans = new std::vector<transition> ();
888 std::vector<bool> *final = new std::vector<bool> ();
889
890 // Do a breadth first search over the computed graph to assign ids to
891 // the reachable blocks and construct the final transition relation
892 std::vector<std::size_t>::iterator post_it,post_last;
893 std::queue<std::size_t> todo;
894 std::vector<std::size_t> block_id(s_Pi,s_Pi);
895 todo.push(block_Pi[aut.initial_state()]);
896 block_id[block_Pi[aut.initial_state()]] = 0;
897 std::size_t n_s = 1;
898 std::size_t n_f = 0;
899 if (aut.is_final(aut.initial_state()))
900 {
901 final->push_back(true);
902 ++n_f;
903 }
904 else
905 {
906 final->push_back(false);
907 }
908 while (!todo.empty())
909 {
910 // visit todo.front()
911 beta = todo.front();
912 for (l = 0; l < L; ++l)
913 {
914 post_last = post_trans[l][beta].end();
915 for (post_it = post_trans[l][beta].begin(); post_it != post_last;
916 ++post_it)
917 {
918 alpha = *post_it;
919 if (block_id[alpha] == s_Pi)
920 {
921 todo.push(alpha);
922 block_id[alpha] = n_s;
923 ++n_s;
924 if (aut.is_final(contents_u[alpha]))
925 {
926 final->push_back(true);
927 ++n_f;
928 }
929 else
930 {
931 final->push_back(false);
932 }
933 }
934 transition t = {block_id[beta], l, block_id[alpha]};
935 trans->push_back(t);
936 }
937 }
938 todo.pop();
939 }
940
941 // assign the new transition relation to aut
942 aut.clear_transition_relation();
943 aut.clear_final();
944 aut.set_num_states(n_s);
945 aut.set_num_transitions(trans->size());
946 aut.set_num_final(n_f);
947 aut.set_init(0);
948 aut.set_trans(trans);
949 aut.set_final(final);
950
951 // assign the simulation relation to aut
952 aut.init_simulation_relation();
953 for (beta = 0; beta < s_Pi; ++beta)
954 {
955 // only consider reachable blocks
956 if (block_id[beta] < s_Pi)
957 {
958 for (gamma = 0; gamma < s_Pi; ++gamma)
959 {
960 if (block_id[gamma] < s_Pi && Q[beta][gamma])
961 {
962 aut.add_simulation(block_id[beta],block_id[gamma]);
963 }
964 }
965 }
966 }
967}
968*/
969
970/* ----------------- FOR DEBUGGING ---------------------------------- */
971
972template <class LTS_TYPE>
974{
975 using namespace mcrl2::core;
976 std::stringstream result;
977 result << print_Sigma() << "Simulation relation: " << print_relation(s_Sigma,P);
978 return result.str();
979}
980
981template <class LTS_TYPE>
982std::string sim_partitioner<LTS_TYPE>::print_Pi_Q()
983{
984 using namespace mcrl2::core;
985 std::stringstream result;
986 result << print_Pi() << "Simulation relation: " << print_relation(s_Pi,Q);
987 return result.str();
988}
989
990template <class LTS_TYPE>
991std::string sim_partitioner<LTS_TYPE>::print_Sigma()
992{
993 using namespace mcrl2::core;
994 std::stringstream result;
995 std::vector<std::size_t>::iterator ci, last;
996 for (std::size_t b = 0; b < s_Sigma; ++b)
997 {
998 result << "block " << b << ": {";
999 last = children[b].end();
1000 for (ci = children[b].begin(); ci != last; ++ci)
1001 {
1002 result << print_block(*ci);
1003 }
1004 result << "}" << std::endl;
1005 }
1006 return result.str();
1007}
1008
1009template <class LTS_TYPE>
1010std::string sim_partitioner<LTS_TYPE>::print_Pi()
1011{
1012 std::stringstream result;
1013 using namespace mcrl2::core;
1014 for (std::size_t b = 0; b < s_Pi; ++b)
1015 {
1016 result << "block " << b << ": {" << print_block(b) << "}" << std::endl;
1017 }
1018 return result.str();
1019}
1020
1021template <class LTS_TYPE>
1022std::string sim_partitioner<LTS_TYPE>::print_block(std::size_t b)
1023{
1024 std::stringstream result;
1025 using namespace mcrl2::core;
1026 for (ptrdiff_t i = contents_u[b]; i != LIST_END; i = state_buckets[i].next)
1027 {
1028 result << i << ",";
1029 }
1030 for (ptrdiff_t i = contents_t[b]; i != LIST_END; i = state_buckets[i].next)
1031 {
1032 result << i << ",";
1033 }
1034 return result.str();
1035}
1036
1037template <class LTS_TYPE>
1038std::string sim_partitioner<LTS_TYPE>::print_relation(std::size_t s,
1039 std::vector< std::vector<bool> > &R)
1040{
1041 using namespace mcrl2::core;
1042 std::stringstream result;
1043 result << "{";
1044 std::size_t beta,gamma;
1045 for (beta = 0; beta < s; ++beta)
1046 {
1047 for (gamma = 0; gamma < s; ++gamma)
1048 {
1049 if (R[beta][gamma])
1050 {
1051 result << "(" << beta << "," << gamma << "),";
1052 }
1053 }
1054 }
1055 result << "}" << std::endl;
1056 return result.str();
1057}
1058
1059template <class LTS_TYPE>
1061{
1062 using namespace mcrl2::core;
1063 std::stringstream result;
1064 result << "{";
1066 for (; !i.is_end(); ++i)
1067 {
1068 result << "(" << i.get_x() << "," << mcrl2::lts::pp(aut.action_label(i.get_y()))
1069 << "," << i.get_z() << "),";
1070 }
1071 result << "}";
1072 return result.str();
1073}
1074
1075template <class LTS_TYPE>
1076std::string sim_partitioner<LTS_TYPE>::print_reverse_topological_sort(const std::vector<std::size_t> &Sort)
1077{
1078 using namespace mcrl2::core;
1079 std::stringstream result;
1080 result << "reverse topological sort is: [";
1081 for (std::size_t i = 0; i < Sort.size(); ++i)
1082 {
1083 result << Sort[i];
1084 if (i+1 < Sort.size())
1085 {
1086 result << ",";
1087 }
1088 }
1089 result << "]" << std::endl;
1090 return result.str();
1091}
1092
1093
1094} // namespace detail
1095} // namespace lts
1096} // namespace mcrl2
1097#endif
#define mCRL2complexity(unit, call, info_for_debug)
Assigns work to a counter and checks for errors.
const aterm & operator[](const size_type i) const
Returns the i-th argument.
Definition aterm.h:187
aterm & operator=(const aterm &other) noexcept=default
const function_symbol & function() const
Returns the function symbol belonging to an aterm.
Definition aterm.h:144
aterm(const aterm &other) noexcept=default
This class has user-declared copy constructor so declare default copy and move operators.
const function_symbol & function() const noexcept
Definition aterm_core.h:55
bool operator!=(const function_symbol &f) const
Inequality test.
bool operator==(const function_symbol &f) const
Equality test.
unprotected_aterm_core m_stack[maximal_size_of_stack]
static constexpr std::size_t maximal_size_of_stack
void initialise(const term_balanced_tree< Term > &tree)
const Term & dereference() const
Dereference operator.
bool equal(const iterator &other) const
Equality operator.
iterator(const term_balanced_tree< Term > &tree)
void increment()
Increments the iterator.
bool is_node() const
Returns true iff the tree is a node with a left and right subtree.
friend void make_term_balanced_tree(term_balanced_tree< Term1 > &result, ForwardTraversalIterator p, const std::size_t size, Transformer transformer)
static void make_tree_helper(aterm &result, ForwardTraversalIterator &p, const std::size_t size, Transformer transformer)
term_balanced_tree & operator=(const term_balanced_tree &) noexcept=default
Assignment operator.
size_type size() const
Returns the size of the term_balanced_tree.
term_balanced_tree(term_balanced_tree &&) noexcept=default
Move constructor.
bool empty() const
Returns true if tree is empty.
Term & reference
Reference to T.
static const aterm & empty_tree()
static void make_tree(aterm &result, ForwardTraversalIterator &p, const std::size_t size, Transformer transformer)
term_balanced_tree(ForwardTraversalIterator first, const std::size_t size)
Creates an term_balanced_tree with a copy of a range.
std::size_t size_type
An unsigned integral type.
static const function_symbol & tree_single_node_function()
const aterm & left_branch() const
Get the left branch of the tree.
term_balanced_tree(const term_balanced_tree &) noexcept=default
Copy constructor.
Term value_type
The type of object, T stored in the term_balanced_tree.
term_balanced_tree(ForwardTraversalIterator first, const std::size_t size, Transformer transformer)
Creates an term_balanced_tree with a copy of a range, where a transformer is applied to each term bef...
static const function_symbol & tree_node_function()
const Term & operator[](std::size_t position) const
Element indexing operator.
iterator begin() const
Returns an iterator pointing to the beginning of the term_balanced_tree.
iterator end() const
Returns an iterator pointing to the end of the term_balanced_tree.
term_balanced_tree()
Default constructor. Creates an empty tree.
const aterm & right_branch() const
Get the left branch of the tree.
term_balanced_tree & operator=(term_balanced_tree &&) noexcept=default
Move assign operator.
const Term const_reference
Const reference to T.
term_balanced_tree(const aterm &tree)
Construction from aterm.
const Term & element_at(std::size_t position, std::size_t size) const
Get an element at the indicated position.
static const function_symbol & tree_empty_function()
term_balanced_tree(detail::_term_appl *t)
ptrdiff_t difference_type
A signed integral type.
A list of aterm objects.
Definition aterm_list.h:24
An unprotected term does not change the reference count of the shared term when it is copied or moved...
Definition aterm_core.h:32
void swap(unprotected_aterm_core &t) noexcept
Swaps this term with its argument.
Definition aterm_core.h:152
bool operator==(const unprotected_aterm_core &t) const
Comparison operator.
Definition aterm_core.h:83
bool defined() const
Returns true if this term is not equal to the term assigned by the default constructor of aterms,...
Definition aterm_core.h:143
const detail::_aterm * m_term
Definition aterm_core.h:36
bool operator!=(const unprotected_aterm_core &t) const
Inequality operator on two unprotected aterms.
Definition aterm_core.h:92
const function_symbol & function() const
Yields the function symbol in an aterm.
Definition aterm_core.h:161
hash_table2_iterator(hash_table2 *ht)
std::size_t get_x()
std::size_t get_y()
bool find(std::size_t x, std::size_t y)
hash_table2(std::size_t initsize)
hash_table3_iterator(hash_table3 *ht)
hash_table3(std::size_t initsize)
void remove(std::size_t x, std::size_t y, std::size_t z)
void add(std::size_t x, std::size_t y, std::size_t z)
action_formula(action_formula &&) noexcept=default
action_formula & operator=(const action_formula &) noexcept=default
action_formula(const atermpp::aterm &term)
action_formula(const data::data_expression &x)
\brief Constructor Z6.
action_formula(const action_formula &) noexcept=default
Move semantics.
action_formula & operator=(action_formula &&) noexcept=default
action_formula(const data::untyped_data_parameter &x)
\brief Constructor Z6.
action_formula()
\brief Default constructor X3.
action_formula(const process::untyped_multi_action &x)
\brief Constructor Z6.
\brief The and operator for action formulas
and_ & operator=(const and_ &) noexcept=default
and_ & operator=(and_ &&) noexcept=default
and_(const action_formula &left, const action_formula &right)
\brief Constructor Z14.
and_()
\brief Default constructor X3.
and_(and_ &&) noexcept=default
const action_formula & left() const
and_(const atermpp::aterm &term)
and_(const and_ &) noexcept=default
Move semantics.
const action_formula & right() const
\brief The at operator for action formulas
at(const atermpp::aterm &term)
const data::data_expression & time_stamp() const
at & operator=(at &&) noexcept=default
const action_formula & operand() const
at(const at &) noexcept=default
Move semantics.
at(at &&) noexcept=default
at()
\brief Default constructor X3.
at & operator=(const at &) noexcept=default
at(const action_formula &operand, const data::data_expression &time_stamp)
\brief Constructor Z14.
\brief The existential quantification operator for action formulas
exists(const atermpp::aterm &term)
exists & operator=(exists &&) noexcept=default
exists(exists &&) noexcept=default
exists(const exists &) noexcept=default
Move semantics.
exists()
\brief Default constructor X3.
const data::variable_list & variables() const
exists & operator=(const exists &) noexcept=default
const action_formula & body() const
exists(const data::variable_list &variables, const action_formula &body)
\brief Constructor Z14.
\brief The value false for action formulas
false_(const atermpp::aterm &term)
false_()
\brief Default constructor X3.
false_(false_ &&) noexcept=default
false_(const false_ &) noexcept=default
Move semantics.
false_ & operator=(const false_ &) noexcept=default
false_ & operator=(false_ &&) noexcept=default
\brief The universal quantification operator for action formulas
forall & operator=(const forall &) noexcept=default
const action_formula & body() const
forall & operator=(forall &&) noexcept=default
forall(const atermpp::aterm &term)
const data::variable_list & variables() const
forall()
\brief Default constructor X3.
forall(const data::variable_list &variables, const action_formula &body)
\brief Constructor Z14.
forall(const forall &) noexcept=default
Move semantics.
forall(forall &&) noexcept=default
\brief The implication operator for action formulas
const action_formula & left() const
imp(const imp &) noexcept=default
Move semantics.
imp(imp &&) noexcept=default
imp & operator=(imp &&) noexcept=default
imp(const action_formula &left, const action_formula &right)
\brief Constructor Z14.
imp()
\brief Default constructor X3.
imp & operator=(const imp &) noexcept=default
imp(const atermpp::aterm &term)
const action_formula & right() const
\brief The multi action for action formulas
multi_action(const multi_action &) noexcept=default
Move semantics.
multi_action(multi_action &&) noexcept=default
multi_action(const process::action_list &actions)
\brief Constructor Z14.
multi_action(const atermpp::aterm &term)
multi_action & operator=(const multi_action &) noexcept=default
multi_action()
\brief Default constructor X3.
const process::action_list & actions() const
multi_action & operator=(multi_action &&) noexcept=default
\brief The not operator for action formulas
not_(const action_formula &operand)
\brief Constructor Z14.
not_()
\brief Default constructor X3.
const action_formula & operand() const
not_(const atermpp::aterm &term)
not_(not_ &&) noexcept=default
not_(const not_ &) noexcept=default
Move semantics.
not_ & operator=(const not_ &) noexcept=default
not_ & operator=(not_ &&) noexcept=default
\brief The or operator for action formulas
or_ & operator=(const or_ &) noexcept=default
or_(or_ &&) noexcept=default
or_()
\brief Default constructor X3.
or_ & operator=(or_ &&) noexcept=default
or_(const action_formula &left, const action_formula &right)
\brief Constructor Z14.
or_(const atermpp::aterm &term)
or_(const or_ &) noexcept=default
Move semantics.
const action_formula & right() const
const action_formula & left() const
\brief The value true for action formulas
true_(true_ &&) noexcept=default
true_ & operator=(const true_ &) noexcept=default
true_()
\brief Default constructor X3.
true_(const true_ &) noexcept=default
Move semantics.
true_(const atermpp::aterm &term)
true_ & operator=(true_ &&) noexcept=default
data_expression & operator=(const data_expression &) noexcept=default
data_expression & operator=(data_expression &&) noexcept=default
sort_expression sort() const
Returns the sort of the data expression.
Definition data.cpp:108
data_expression(const data_expression &) noexcept=default
Move semantics.
data_expression(data_expression &&) noexcept=default
Rewriter that operates on data expressions.
Definition rewriter.h:81
data_expression operator()(const data_expression &d) const
Rewrites a data expression.
Definition rewriter.h:158
void add_sort(const basic_sort &s)
Adds a sort to this specification.
\brief A data variable
Definition variable.h:28
Class for logging messages.
Definition logger.h:129
static void set_reporting_level(const log_level_t level)
Set reporting level.
Definition logger.h:210
logger(const log_level_t l)
Default constructor.
Definition logger.h:164
Read-only singly linked list of action rename rules.
\brief A timed multi-action
multi_action(const multi_action &) noexcept=default
Move semantics.
const process::action_list & actions() const
const data::data_expression & time() const
multi_action(multi_action &&) noexcept=default
multi_action(const process::action_list &actions=process::action_list(), data::data_expression time=data::undefined_real())
Constructor.
This class contains labels for probabilistic transistions, consisting of a numerator and a denumerato...
static probabilistic_data_expression one()
Constant one.
probabilistic_data_expression operator+(const probabilistic_data_expression &other) const
Standard addition operator. Note that the expression is not evaluated. For this the rewriter has to b...
probabilistic_data_expression(const data::data_expression &d)
Construct a probabilistic_data_expression from a data_expression, which must be of sort real.
bool operator==(const probabilistic_data_expression &other) const
probabilistic_data_expression(std::size_t enumerator, std::size_t denominator)
bool operator!=(const probabilistic_data_expression &other) const
bool operator>=(const probabilistic_data_expression &other) const
bool operator<(const probabilistic_data_expression &other) const
bool operator<=(const probabilistic_data_expression &other) const
bool operator>(const probabilistic_data_expression &other) const
probabilistic_data_expression operator-(const probabilistic_data_expression &other) const
Standard subtraction operator.
static data::data_specification data_specification_with_real()
static probabilistic_data_expression zero()
Constant zero.
Linear process specification.
STATE & state()
Get the state in a state probability pair.
state_probability_pair(state_probability_pair &&p)=default
state_probability_pair & operator=(state_probability_pair &&p)=default
state_probability_pair(const state_probability_pair &p)=default
Copy constructor;.
state_probability_pair & operator=(const state_probability_pair &p)=default
Standard assignment.
const PROBABILITY & probability() const
get the probability from a state proability pair.
const STATE & state() const
Get the state from a state probability pair.
PROBABILITY & probability()
Set the probability in a state probability pair.
state_probability_pair(const STATE &state, const PROBABILITY &probability)
constructor.
bool operator==(const state_probability_pair &other) const
Standard equality operator.
A class containing the values for action labels for the .lts format.
Definition lts_lts.h:144
action_label_lts & operator=(const action_label_lts &)=default
Copy assignment.
static mcrl2::lps::multi_action sort_multiactions(const mcrl2::lps::multi_action &a)
A function to sort a multi action to guarantee that multi-actions are compared properly.
Definition lts_lts.h:190
void hide_actions(const std::vector< std::string > &tau_actions)
Hide the actions with labels in tau_actions.
Definition lts_lts.h:166
action_label_lts(const action_label_lts &)=default
Copy constructor.
static const action_label_lts & tau_action()
Definition lts_lts.h:182
action_label_lts()
Default constructor.
Definition lts_lts.h:148
action_label_lts(const mcrl2::lps::multi_action &a)
Constructor.
Definition lts_lts.h:158
This class contains strings to be used as values for action labels in lts's.
static std::string sort_multiactions(const std::string &s)
Sort multiactions in a string.
void hide_actions(const std::vector< std::string > &string_vector)
action_label_string & operator=(const action_label_string &)=default
Copy assignment.
static const action_label_string & tau_action()
action_label_string(const std::string &s)
bool operator<(const action_label_string &l) const
action_label_string(const action_label_string &)=default
Copy constructor.
information about a transition sorted per (action, target block) pair
action_block_entry * begin_or_before_end
pointer to delimit the slice of transitions in the same (action, block) pair
succ_entry * succ
circular iterator to link the four transition arrays
action_block_entry * action_block_slice_begin(ONLY_IF_DEBUG(const action_block_entry *const action_block_begin, const action_block_entry *const action_block_orig_inert_begin))
find the beginning of the action_block-slice
information about a transition grouped per (source block, bunch) pair
block_bunch_slice_iter_or_null_t slice
block_bunch-slice of which this transition is part
pred_entry * pred
circular iterator to link the four transition arrays
Information about a set of transitions with the same source block, in the same bunch.
void make_unstable()
register that the block_bunch-slice is not stable
bool is_stable() const
returns true iff the block_bunch-slice is registered as stable
bool empty() const
returns true iff the block_bunch-slice is empty
check_complexity::block_bunch_dnj_counter_t work_counter
bool add_work_to_bottom_transns(enum check_complexity::counter_type const ctr, unsigned const max_value, const bisim_partitioner_dnj< LTS_TYPE > &partitioner) const
add work to transitions starting in bottom states
block_bunch_slice_t(block_bunch_entry *const new_end, bunch_t *const new_bunch, bool const new_is_stable)
constructor
bunch_t * bunch
bunch to which this slice belongs
std::string debug_id(const bisim_partitioner_dnj< LTS_TYPE > &partitioner) const
print a block_bunch-slice identification for debugging
block_bunch_entry * end
pointer past the end of the transitions in the block_bunch array
void make_stable()
register that the block_bunch-slice is stable
block_bunch_entry * marked_begin
pointer to the first marked transition in the block_bunch array
block_t * source_block() const
compute the source block of the transitions in this slice
stores information about a block
std::string debug_id(const bisim_partitioner_dnj< LTS_TYPE > &partitioner) const
print a block identification for debugging
state_type size() const
provides the number of states in the block
permutation_entry * nonbottom_begin
iterator to the first non-bottom state of the block
permutation_entry * begin
iterator to the first state of the block
bool mark_nonbottom(permutation_entry *const s)
mark a non-bottom state
check_complexity::block_dnj_counter_t work_counter
permutation_entry * marked_bottom_begin
iterator to the first marked bottom state of the block
state_type marked_size() const
provides the number of marked states in the block
state_type marked_bottom_size() const
provides the number of marked bottom states in the block
permutation_entry * end
iterator past the last state of the block
simple_list< block_bunch_slice_t > stable_block_bunch
list of stable block_bunch-slices with transitions from this block
state_type unmarked_bottom_size() const
provides the number of unmarked bottom states in the block
state_type bottom_size() const
provides the number of bottom states in the block
bool mark(permutation_entry *const s)
mark a state
const state_type seqnr
unique sequence number of this block
permutation_entry * marked_nonbottom_begin
iterator to the first marked non-bottom state of the block
block_t(permutation_entry *const new_begin, permutation_entry *const new_end, state_type const new_seqnr)
constructor
state_type unmarked_nonbottom_size() const
provides the number of unmarked nonbottom states in the block
action_block_entry * end
pointer past the last transition in the bunch
std::string debug_id(const bisim_partitioner_dnj< LTS_TYPE > &partitioner) const
print a long bunch identification for debugging
std::string debug_id_short(const bisim_partitioner_dnj< LTS_TYPE > &partitioner) const
print a short bunch identification for debugging
action_block_entry * begin
first transition in the bunch
int max_work_counter(const bisim_partitioner_dnj< LTS_TYPE > &partitioner) const
calculates the maximal allowed value for work counters associated with this bunch
check_complexity::bunch_dnj_counter_t work_counter
bool is_trivial() const
returns true iff the bunch is trivial
bunch_t(action_block_entry *const new_begin, action_block_entry *const new_end)
constructor
refinable partition data structure
void assert_consistency(const bisim_partitioner_dnj< LTS_TYPE > &partitioner) const
asserts that the partition of states is consistent
fixed_vector< state_info_entry > state_info
array with all other information about states
state_type nr_of_blocks
total number of blocks with unique sequence number allocated
void print_block(const block_t *const B, const char *const message, const permutation_entry *begin_print, const permutation_entry *const end_print, const bisim_partitioner_dnj< LTS_TYPE > &partitioner) const
print a slice of the partition (typically a block)
permutation_t permutation
permutation array
const block_t * block(state_type const s) const
find the block of a state
part_state_t(state_type const num_states)
constructor
state_type state_size() const
calculate the size of the state space
void print_part(const bisim_partitioner_dnj< LTS_TYPE > &partitioner) const
print the partition per block
fixed_vector< pred_entry > pred
array containing all predecessor entries
state_type nr_of_new_bottom_states
number of new bottom states found until now.
action_block_entry * action_block_inert_begin
pointer to the first inert transition in action_block
fixed_vector< block_bunch_entry > block_bunch
array containing all block_bunch entries
block_bunch_entry * block_bunch_inert_begin
pointer to the first inert transition in block_bunch
const action_block_entry * action_block_orig_inert_begin
pointer to the first inert transition in the initial partition
void second_move_transition_to_new_action_block(pred_entry *const pred_iter)
handle one transition after a block has been split, phase 2
fixed_vector< succ_entry > succ
array containing all successor entries
succ_entry * move_out_slice_to_new_block(succ_entry *out_slice_end, ONLY_IF_DEBUG(const bisim_partitioner_dnj< LTS_TYPE > &partitioner,) block_t *const old_block, block_bunch_slice_const_iter_t const splitter_T)
Adapt the non-inert transitions in an out-slice to a new block.
bool make_noninert(pred_entry *const old_pred_pos, block_bunch_slice_iter_or_null_t *const new_noninert_block_bunch_ptr)
adapt data structures for a transition that has become non-inert
part_trans_t(trans_type num_transitions, trans_type num_actions)
constructor
void print_trans(const bisim_partitioner_dnj< LTS_TYPE > &partitioner) const
print all transitions
simple_list< block_bunch_slice_t > splitter_list
list of unstable block_bunch-slices
void first_move_transition_to_new_bunch(action_block_entry *const action_block_iter, bunch_t *const bunch_T_a_Bprime, bool const first_transition_of_state)
transition is moved to a new bunch
void make_nontrivial(bunch_t *const bunch)
insert a bunch into the list of nontrivial bunches
fixed_vector< action_block_entry > action_block
array containing all action_block entries
void adapt_transitions_for_new_block(block_t *const new_block, block_t *const old_block, ONLY_IF_DEBUG(const bisim_partitioner_dnj< LTS_TYPE > &partitioner,) bool const add_new_noninert_to_splitter, const block_bunch_slice_iter_t splitter_T, enum new_block_mode_t const new_block_mode)
Split all data structures after a new block has been created.
bunch_t * get_some_nontrivial()
provide some bunch from the list of non-trivial bunches
void first_move_transition_to_new_action_block(pred_entry *const pred_iter)
handle one transition after a block has been split
trans_type nr_of_bunches
counters to measure progress
void make_trivial(bunch_t *const bunch)
remove a bunch from the list of nontrivial bunches
void second_move_transition_to_new_bunch(action_block_entry *const action_block_iter, ONLY_IF_DEBUG(const bisim_partitioner_dnj< LTS_TYPE > &partitioner, bunch_t *const bunch_T_a_Bprime,) bunch_t *const large_splitter_bunch)
transition is moved to a new bunch, phase 2
bunch_t * first_nontrivial
pointer to first non-trivial bunch
entry in the permutation array
permutation_entry(const permutation_entry &&other) noexcept
move constructor
permutation_entry()=default
default constructor (should not be deleted)
void operator=(const permutation_entry &&other) noexcept
move assignment operator
state_info_entry * st
pointer to the state information data structure
information about a transition sorted per target state
state_info_entry * target
target state of the transition
action_block_entry * action_block
circular iterator to link the four transition arrays
std::string debug_id_short(const bisim_partitioner_dnj< LTS_TYPE > &partitioner) const
print a short transition identification for debugging
state_info_entry * source
source state of the transition
std::string debug_id(const bisim_partitioner_dnj< LTS_TYPE > &partitioner) const
print a transition identification for debugging
check_complexity::trans_dnj_counter_t work_counter
stores information about a single state
permutation_entry * pos
position of the state in the permutation array
iterator_or_counter< pred_entry * > pred_inert
iterator to first inert incoming transition
check_complexity::state_dnj_counter_t work_counter
std::string debug_id_short(const bisim_partitioner_dnj< LTS_TYPE > &partitioner) const
print a short state identification for debugging
iterator_or_counter< succ_entry * > untested_to_U_eqv
number of inert transitions to non-U-states
iterator_or_counter< succ_entry * > succ_inert
iterator to first inert outgoing transition
std::string debug_id(const bisim_partitioner_dnj< LTS_TYPE > &partitioner) const
print a state identification for debugging
information about a transition sorted per source state
succ_entry * begin_or_before_end
pointer to delimit the slice of transitions in the same bunch
block_bunch_entry * block_bunch
circular iterator to link the four transition arrays
stores information about a block
stores information about a constellation
stores information about a single state
bool surely_has_no_transition_to(const constln_t *const SpC) const
quick check to find out whether the state has no transition to SpC
bool surely_has_transition_to(const constln_t *const SpC) const
quick check to find out whether the state has a transition to SpC
void refine_partition_until_it_becomes_stable()
Run (branching) bisimulation minimisation in time O(m log n)
state_type num_eq_classes() const
Calculate the number of equivalence classes.
void create_initial_partition()
Create a partition satisfying the main invariant.
bool in_same_class(state_type const s, state_type const t) const
Check whether two states are in the same equivalence class.
bisim_dnj::block_t * handle_new_noninert_transns(bisim_dnj::block_t *const block_R, bisim_dnj::block_bunch_slice_const_iter_t bbslice_Tprime_R)
Handle a block with new non-inert transitions.
void assert_stability() const
assert that the data structure is consistent and stable
bisim_dnj::part_trans_t part_tr
partitions of the transitions (with bunches and action_block-slices)
LTS_TYPE & aut
automaton that is being reduced
state_type get_eq_class(state_type const s) const
Get the equivalence class of a state.
bisim_dnj::block_t * split(bisim_dnj::block_t *const block_B, const bisim_dnj::block_bunch_slice_iter_t splitter_T, enum refine_mode_t mode)
Split a block according to a splitter.
void finalize_minimized_LTS()
Adapt the LTS after minimisation.
std::clock_t end_initial_part
time measurement after the end of create_initial_partition()
bisim_partitioner_dnj(LTS_TYPE &new_aut, bool const new_branching=false, bool const new_preserve_divergence=false)
constructor
bool const branching
true iff branching (not strong) bisimulation has been requested
refine_mode_t
modes that determine details of how split() should work
bisim_dnj::part_state_t part_st
partition of the state space into blocks
bool const preserve_divergence
true iff divergence-preserving branching bisimulation has been requested
fixed_vector< bisim_dnj::iterator_or_counter< bisim_dnj::action_block_entry * > > action_label
action label slices
state_index number_of_states_in_block(const block_type &B) const
return the number of states in block B
void finalize_minimized_LTS()
Adapt the LTS after minimisation.
label_index label_or_divergence(const transition &t, const label_index divergent_label=-2) const
void swap_states_in_states_in_block(state_in_block_pointer *pos1, state_in_block_pointer *pos2)
swap the contents of pos1 and pos2 if they are different
LTS_TYPE & m_aut
automaton that is being reduced
block_type * select_and_remove_a_block_in_a_non_trivial_constellation()
Select a block that is not the largest block in a non-trivial constellation.
std::string ptr(const transition &t) const
std::unordered_set< state_index > set_of_states_type
std::vector< block_type * > m_blocks_with_new_bottom_states
std::unordered_set< transition_index > set_of_transitions_type
std::vector< constellation_type * > m_non_trivial_constellations
The following variable contains all non-trivial constellations.
void swap_states_in_states_in_block(state_in_block_pointer *pos1, state_in_block_pointer *pos2, state_in_block_pointer *pos3)
Move the contents of pos1 to pos2, those of pos2 to pos3 and those of pos3 to pos1
void multiple_swap_states_in_states_in_block(state_in_block_pointer *pos1, state_in_block_pointer *pos2, state_index count, const state_in_block_pointer *assign_work_to, unsigned char const max_B, enum check_complexity::counter_type const ctr=check_complexity::multiple_swap_states_in_block__swap_state_in_small_block)
Swap the range [pos1, pos1 + count) with the range [pos2, pos2 + count)
bool is_inert_during_init(const transition &t) const
state_index no_of_new_bottom_states
number of new bottom states found after constructing the initial partition
linked_list< BLC_indicators >::const_iterator next_target_constln_in_same_saC(state_in_block_pointer const src, BLC_list_const_iterator const splitter_it) const
find the next constellation after splitter_it's in the same_saC slice of the outgoing transitions
bool is_inert_during_init_if_branching(const transition &t) const
std::vector< linked_list< BLC_indicators >::iterator > m_BLC_indicators_to_be_deleted
void mark_BLC_transition(const outgoing_transitions_it out_pos)
marks the transition indicated by out_pos.
void check_incoming_tau_transitions_become_noninert(block_type *NewBotSt_block_index, state_in_block_pointer *start_bottom, state_in_block_pointer *const end_non_bottom)
makes incoming transitions from block NewBotSt_block_index non-block-inert
std::clock_t end_initial_part
time measurement after creating the initial partition (but before the first call to stabilizeB())
void move_nonbottom_states_to(const todo_state_vector &R, state_in_block_pointer *to_pos, state_index new_block_bottom_size)
Move states in a set to a specific position in m_states_in_block
linked_list< BLC_indicators >::iterator find_inert_co_transition_for_block(block_type *const index_block_B, const constellation_type *const old_constellation, const constellation_type *const new_constellation) const
find a splitter for the tau-transitions from the new constellation to the old constellation
state_index get_eq_class(const state_index si) const
Get the equivalence class of a state.
void swap_states_in_states_in_block_never_equal(state_in_block_pointer *pos1, state_in_block_pointer *pos2)
swap the contents of pos1 and pos2, assuming they are different
bool swap_in_the_doubly_linked_list_LBC_in_blocks_new_block(const transition_index ti, linked_list< BLC_indicators >::iterator new_BLC_block, linked_list< BLC_indicators >::iterator old_BLC_block)
Swap transition ti from BLC set old_BLC_block to BLC set new_BLC_block
std::size_t num_eq_classes() const
Calculate the number of equivalence classes.
bool check_data_structures(const std::string &tag, const bool initialisation=false, const bool check_temporary_complexity_counters=true) const
Checks whether data structures are consistent.
fixed_vector< transition_type > m_transitions
void order_BLC_transitions_single_BLC_set(state_in_block_pointer *const pos, BLC_list_iterator start_same_BLC, const BLC_list_iterator end_same_BLC)
create one BLC set for the block starting at pos
const bool m_branching
true iff branching (not strong) bisimulation has been requested
void display_BLC_list(const block_type *const bi) const
Prints the list of BLC sets as debug output.
void clear_state_counters(std::vector< state_in_block_pointer >::const_iterator begin, std::vector< state_in_block_pointer >::const_iterator const end, block_type *const block)
reset a range of state counters to undefined
state_index number_of_states_in_constellation(const constellation_type &C) const
return the number of states in constellation C
void swap_three_iterators_and_update_m_transitions(const BLC_list_iterator i1, const BLC_list_iterator i2, const BLC_list_iterator i3)
Move the content of i1 to i2, i2 to i3 and i3 to i1.
block_type * create_new_block(state_in_block_pointer *start_bottom_states, state_in_block_pointer *const start_non_bottom_states, state_in_block_pointer *const end_states, block_type *const old_block_index, constellation_type *const old_constellation, constellation_type *const new_constellation)
create a new block and adapt the BLC sets, and reset state counters
void order_BLC_transitions(const BLC_list_iterator start_same_BLC, const BLC_list_iterator end_same_BLC, state_in_block_pointer *min_block, state_in_block_pointer *max_block)
order m_BLC_transition entries according to source block
void check_transitions(const bool initialisation, const bool check_temporary_complexity_counters, const bool check_block_to_constellation=true) const
Checks whether the transition data structure is correct.
const bool m_preserve_divergence
true iff divergence-preserving branching bisimulation has been requested
fixed_vector< outgoing_transition_type > m_outgoing_transitions
transitions ordered per source state
void make_stable_and_move_to_start_of_BLC(block_type *const from_block, const linked_list< BLC_indicators >::iterator splitter)
Makes splitter stable and moves it to the beginning of the list.
void update_the_doubly_linked_list_LBC_new_block(block_type *const old_bi, block_type *const new_bi, const transition_index ti, constellation_type *old_constellation, constellation_type *const new_constellation)
Update the BLC list of transition ti, which now starts in block new_bi
fixed_vector< state_type_gj > m_states
information about states
fixed_vector< transition_index > m_BLC_transitions
static LTS_TYPE::labels_size_type m_aut_apply_hidden_label_map(typename LTS_TYPE::labels_size_type l)
void change_non_bottom_state_to_bottom_state(const fixed_vector< state_type_gj >::iterator si)
Moves the former non-bottom state si to the bottom states.
bool swap_in_the_doubly_linked_list_LBC_in_blocks_new_constellation(const transition_index ti, linked_list< BLC_indicators >::iterator new_BLC_block, linked_list< BLC_indicators >::iterator old_BLC_block)
Swap transition ti from BLC set old_BLC_block to BLC set new_BLC_block
block_type * four_way_splitB(block_type *const bi, linked_list< BLC_indicators >::iterator const small_splitter, linked_list< BLC_indicators >::iterator const large_splitter, constellation_type *const old_constellation, constellation_type *const new_constellation)
split a block (using main and co-splitter) into up to four subblocks
void swap_states_in_states_in_block_23_never_equal(state_in_block_pointer *pos1, state_in_block_pointer *pos2, state_in_block_pointer *pos3)
Move the contents of pos1 to pos2, those of pos2 to pos3 and those of pos3 to pos1
transition_index accumulate_entries(std::vector< transition_index > &action_counter, const std::vector< label_index > &todo_stack) const
fixed_vector< state_in_block_pointer > m_states_in_blocks
transition_index no_of_non_constellation_inert_BLC_sets
number of non-inert BLC sets in the partition
block_type * update_BLC_sets_new_block(block_type *const old_bi, block_type *const new_bi, constellation_type *const old_constellation, constellation_type *const new_constellation)
Update all BLC sets after a new block has been created.
bool update_the_doubly_linked_list_LBC_new_constellation(block_type *const index_block_B, const transition &t, const transition_index ti)
Move transition t with transition index ti to a new BLC set.
void print_data_structures(const std::string &header, const bool initialisation=false) const
Prints the partition refinement data structure as debug output.
bisim_partitioner_gj(LTS_TYPE &aut, const bool branching=false, const bool preserve_divergence=false)
constructor
bool in_same_class(state_index const s, state_index const t) const
Check whether two states are in the same equivalence class.
bool check_stability(const std::string &tag, const std::vector< std::pair< BLC_list_iterator, BLC_list_iterator > > *calM=nullptr, const std::pair< BLC_list_iterator, BLC_list_iterator > *calM_elt=nullptr, const constellation_type *const old_constellation=null_constellation, const constellation_type *const new_constellation=null_constellation) const
Checks the main invariant of the partition refinement algorithm.
implements the main algorithm for the stutter equivalence quotient
void set_truths(formula &f)
Compute and set the truth values of a formula f.
std::pair< label_type, block_index_type > observation_t
level_type gca_level(const block_index_type B1, const block_index_type B2)
Auxiliarry function that computes the level of the greatest common ancestor. In other words a lvl i s...
regular_formulas::regular_formula create_regular_formula(const mcrl2::lts::action_label_string &a) const
create_regular_formula Creates a regular formula that represents action a
bisim_partitioner_minimal_depth(LTS_TYPE &l, const std::size_t init_l2)
Creates a bisimulation partitioner for an LTS.
mcrl2::state_formulas::state_formula dist_formula_mindepth(const std::size_t s, const std::size_t t)
Creates a state formula that distinguishes state s from state t.
formula distinguish(const block_index_type b1, const block_index_type b2)
Creates a formula that distinguishes a block b1 from the block b2.
~bisim_partitioner_minimal_depth()=default
Destroys this partitioner.
std::map< std::pair< block_index_type, block_index_type >, level_type > greatest_common_ancestor
regular_formulas::regular_formula create_regular_formula(const mcrl2::lps::multi_action &a) const
create_regular_formula Creates a regular formula that represents action a
bool in_same_class(const std::size_t s, const std::size_t t)
block_index_type lift_block(const block_index_type B1, level_type goal)
mcrl2::state_formulas::state_formula conjunction(std::vector< formula > &conjunctions)
conjunction Creates a conjunction of state formulas
mcrl2::state_formulas::state_formula convert_formula(formula &f)
void split_BL(level_type lvl)
Performs the splits based on the blocks in Bsplit and the flags set in state_flags.
mcrl2::state_formulas::state_formula conjunction(std::set< mcrl2::state_formulas::state_formula > terms) const
conjunction Creates a conjunction of state formulas
regular_formulas::regular_formula create_regular_formula(const mcrl2::lts::action_label_string &a) const
create_regular_formula Creates a regular formula that represents action a
regular_formulas::regular_formula create_regular_formula(const mcrl2::lps::multi_action &a) const
create_regular_formula Creates a regular formula that represents action a
std::vector< bool > block_is_in_to_be_processed
std::map< block_index_type, block_index_type > right_child
std::vector< block_index_type > BL
bool in_same_class(const std::size_t s, const std::size_t t) const
Returns whether two states are in the same bisimulation equivalence class.
mcrl2::state_formulas::state_formula until_formula(const mcrl2::state_formulas::state_formula &phi1, const label_type &a, const mcrl2::state_formulas::state_formula &phi2)
until_formula Creates a state formula that corresponds to the until operator phi1phi2 from HMLU
std::size_t get_eq_class(const std::size_t s) const
Gives the bisimulation equivalence class number of a state.
bisim_partitioner(LTS_TYPE &l, const bool branching=false, const bool preserve_divergence=false, const bool generate_counter_examples=false)
Creates a bisimulation partitioner for an LTS.
~bisim_partitioner()=default
Destroys this partitioner.
std::map< block_index_type, std::set< block_index_type > > r_tauP
std::map< block_index_type, label_type > split_by_action
std::size_t num_eq_classes() const
Gives the number of bisimulation equivalence classes of the LTS.
void order_recursively_on_tau_reachability(const state_type s, std::map< state_type, std::vector< state_type > > &inert_transition_map, std::vector< non_bottom_state > &new_non_bottom_states, std::set< state_type > &visited)
std::vector< block_index_type > to_be_processed
std::map< block_index_type, block_index_type > split_by_block
void replace_transition_system(const bool branching, const bool preserve_divergences)
Replaces the transition relation of the current lts by the transitions of the bisimulation reduced tr...
void order_on_tau_reachability(std::vector< non_bottom_state > &non_bottom_states)
void split_the_blocks_in_BL(bool &partition_is_unstable, const label_type splitter_label, const block_index_type splitter_block)
void refine_partition_until_it_becomes_stable(const bool branching, const bool preserve_divergence)
void create_initial_partition(const bool branching, const bool preserve_divergences)
std::vector< state_type > block_index_of_a_state
std::map< block_index_type, std::set< block_index_type > > r_alpha
mcrl2::state_formulas::state_formula counter_formula_aux(const block_index_type B1, const block_index_type B2)
mcrl2::state_formulas::state_formula counter_formula(const std::size_t s, const std::size_t t)
Creates a state formula that distinguishes state s from state t.
void check_internal_consistency_of_the_partitioning_data_structure(const bool branching, const bool preserve_divergence) const
outgoing_transitions_per_state_action_t outgoing_transitions
const state_in_block_pointer * data() const
void swap_vec(std::vector< state_in_block_pointer > &other_vec)
std::vector< state_in_block_pointer >::iterator iterator
void reserve(std::vector< state_in_block_pointer >::size_type new_cap)
const state_in_block_pointer * data_end() const
const state_in_block_pointer & front() const
bool find(const state_in_block_pointer s) const
std::vector< state_in_block_pointer >::const_iterator const_iterator
mcrl2::state_formulas::state_formula conjunction(std::vector< mcrl2::state_formulas::state_formula > &conjunctions)
conjunction Creates a conjunction of state formulas
regular_formulas::regular_formula make_tau_hat(regular_formulas::regular_formula &f)
void split_and_intersect(std::set< block_index_type > &truths, std::pair< block_index_type, block_index_type > liftedB1B2)
branching_bisim_partitioner_minimal_depth(LTS_TYPE &l, const std::size_t init_l2)
Creates a branching bisimulation partitioner for an LTS.
mcrl2::state_formulas::state_formula dist_formula(block_index_type block_index1, block_index_type block_index2)
std::map< std::pair< block_index_type, block_index_type >, std::set< block_index_type > > blockpair2truths
std::map< std::pair< block_index_type, block_index_type >, mcrl2::state_formulas::state_formula > blockpair2formula
regular_formulas::regular_formula create_regular_formula(const mcrl2::lps::multi_action &a) const
create_regular_formula Creates a regular formula that represents action a
regular_formulas::regular_formula create_regular_formula(const mcrl2::lts::action_label_string &a) const
create_regular_formula Creates a regular formula that represents action a
bool is_dist(std::set< blockpair_type > &dist_blockpairs, std::set< block_index_type > &to_dist)
is_dist Checks if a given conjunction correctly exludes a set of blocks.
std::vector< mcrl2::state_formulas::state_formula > filtered_dist_conjunction(std::map< blockpair_type, mcrl2::state_formulas::state_formula > &Phi, std::set< block_index_type > &Tdist, std::set< block_index_type > &Truths)
mcrl2::state_formulas::state_formula dist_formula_mindepth(size_t s, size_t t)
Creates a state formula that distinguishes state s from state t.
bool is_dist(const std::set< blockpair_type > &dist_blockpairs, const std::set< block_index_type > &to_dist, std::set< block_index_type > &truths)
is_dist overloaded to also maintain the truth values computed at the end.
std::tuple< block_index_type, label_type, block_index_type > branching_observation_type
std::pair< block_index_type, block_index_type > min_split_blockpair(block_index_type b1, block_index_type b2)
class for time complexity checks
static int ilog2(state_type size)
calculate the base-2 logarithm, rounded down
static void wait(trans_type units=1)
do some work that cannot be assigned directly
static unsigned char log_n
value of floor(log2(n)) for easy access
counter_type
Type for complexity budget counters.
static void check_temporary_work()
check that not too much superfluous work has been done
static void print_grand_totals()
print grand total of work in the coroutines (to measure overhead)
static void init(state_type n)
starts counting for a new refinement run
compare_transitions_lts(const std::set< std::size_t > &hide_action_set)
Definition transition.h:72
bool operator()(const transition &t1, const transition &t2)
Definition transition.h:76
const std::set< std::size_t > & m_hide_action_set
Definition transition.h:69
const std::set< std::size_t > & m_hide_action_set
Definition transition.h:37
bool operator()(const transition &t1, const transition &t2)
Definition transition.h:44
compare_transitions_slt(const std::set< std::size_t > &hide_action_set)
Definition transition.h:40
bool operator()(const transition &t1, const transition &t2)
Definition transition.h:188
bool operator()(const transition &t1, const transition &t2)
Definition transition.h:166
compare_transitions_tl(const std::set< std::size_t > &hide_action_set)
Definition transition.h:162
const std::set< std::size_t > & m_hide_action_set
Definition transition.h:159
const std::set< std::size_t > & m_hide_action_set
Definition transition.h:98
compare_transitions_tls(const std::set< std::size_t > &hide_action_set)
Definition transition.h:101
bool operator()(const transition &t1, const transition &t2)
Definition transition.h:105
compare_transitions_tsl(const std::set< std::size_t > &hide_action_set)
Definition transition.h:133
const std::set< std::size_t > & m_hide_action_set
Definition transition.h:130
bool operator()(const transition &t1, const transition &t2)
Definition transition.h:137
A class that can be used to store counterexample trees and.
indexed_sorted_vector_for_tau_transitions(const LTS_TYPE &aut, bool outgoing)
Definition liblts_scc.h:44
const std::vector< state_type > & get_transitions() const
Definition liblts_scc.h:96
std::vector< state_type > m_states_with_outgoing_or_incoming_tau_transition
Definition liblts_scc.h:39
std::pair< label_type, state_type > label_state_pair
indexed_sorted_vector_for_transitions(const std::vector< transition > &transitions, state_type num_states, bool outgoing)
const std::vector< CONTENT > & get_transitions() const
void swap(lts_aut_base &)
Standard swap function.
Definition lts_aut.h:48
lts_type type()
Provides the type of this lts, in casu lts_aut.
Definition lts_aut.h:42
bool operator==(const lts_aut_base &) const
Standard equality function.
Definition lts_aut.h:55
lts_type type() const
The lts_type of state_label_dot. In this case lts_dot.
Definition lts_dot.h:117
void swap(lts_dot_base &)
The standard swap function.
Definition lts_dot.h:124
void clear()
Clear the transitions system.
Definition lts_fsm.h:135
const std::vector< std::string > & state_element_values(std::size_t idx) const
Provides the vector of strings that correspond to the values of the number at position idx in a vecto...
Definition lts_fsm.h:147
std::size_t add_state_element_value(std::size_t idx, const std::string &s)
Adds a string to the state element values for the idx-th position in a state vector....
Definition lts_fsm.h:179
bool operator==(const lts_fsm_base &other) const
Definition lts_fsm.h:109
void clear_process_parameters()
Clear the state parameters for this LTS.
Definition lts_fsm.h:226
std::vector< std::vector< std::string > > m_state_element_values
state_element_values contain the values that can occur at the i-th position of a state label
Definition lts_fsm.h:100
lts_type type() const
The lts_type of this labelled transition system. In this case lts_fsm.
Definition lts_fsm.h:118
std::string state_element_value(std::size_t parameter_index, std::size_t element_index) const
Returns the element_index'th element for the parameter with index parameter_index.
Definition lts_fsm.h:194
std::pair< std::string, std::string > process_parameter(std::size_t i) const
Returns the i-th parameter of the state vectors stored in this LTS.
Definition lts_fsm.h:218
std::vector< std::pair< std::string, std::string > > m_parameters
m_parameters contain the parameters corresponding to the consecutive elements of a state vector....
Definition lts_fsm.h:105
std::vector< std::pair< std::string, std::string > > process_parameters() const
Return the parameters of the state vectors stored in this LTS.
Definition lts_fsm.h:209
void add_process_parameter(const std::string &name, const std::string &sort)
Set the state parameters for this LTS.
Definition lts_fsm.h:236
std::string state_label_to_string(const state_label_fsm &l) const
Pretty print a state value of this FSM.
Definition lts_fsm.h:157
void swap(lts_fsm_base &other)
Standard swap function.
Definition lts_fsm.h:124
a base class for lts_lts_t and probabilistic_lts_t.
Definition lts_lts.h:282
static lts_type type()
Yields the type of this lts, in this case lts_lts.
Definition lts_lts.h:311
void set_process_parameters(const data::variable_list &params)
Set the state parameters for this LTS.
Definition lts_lts.h:369
bool operator==(const lts_lts_base &other) const
Standard equality function;.
Definition lts_lts.h:294
process::action_label_list m_action_decls
Definition lts_lts.h:286
void swap(lts_lts_base &l)
Definition lts_lts.h:301
void set_action_label_declarations(const process::action_label_list &decls)
Set the action label information for this LTS.
Definition lts_lts.h:333
const data::variable & process_parameter(std::size_t i) const
Returns the i-th parameter of the state vectors stored in this LTS.
Definition lts_lts.h:356
data::data_specification m_data_spec
Definition lts_lts.h:284
const data::variable_list & process_parameters() const
Return the process parameters stored in this LTS.
Definition lts_lts.h:348
void set_data(const data::data_specification &spec)
Set the mCRL2 data specification of this LTS.
Definition lts_lts.h:341
lts_lts_base()
Default constructor.
Definition lts_lts.h:290
const process::action_label_list & action_label_declarations() const
Return action label declarations stored in this LTS.
Definition lts_lts.h:325
data::variable_list m_parameters
Definition lts_lts.h:285
char data[NR_ELEMENTS *sizeof(T)]
pool_block_t(pool_block_t *const new_next_block)
void * first_free_T
first freed element
pool_block_t * first_block
first chunk in list of chunks
void * begin_used_in_first_block
start of part in the first chunk that is already in use
U * construct_othersize(Args &&... args)
allocate and construct a new element of a size that doesn't fit the free list
static void *& deref_void(void *addr)
U * construct_samesize(Args &&... args)
allocate and construct a new element of the same size as the free list
U * construct(Args &&... args)
allocate and construct a new element (of any type)
void destroy(U *const old_el)
destroy and delete some element
std::string print_structure(hash_table2 *struc)
This class contains an scc partitioner removing inert tau loops.
Definition liblts_scc.h:128
std::size_t get_eq_class(const std::size_t s) const
Gives the equivalence class number of a state. The equivalence class numbers range from 0 upto (and e...
Definition liblts_scc.h:339
void dfs_numbering(const state_type t, const indexed_sorted_vector_for_tau_transitions< LTS_TYPE > &src_tgt, std::vector< bool > &visited)
Definition liblts_scc.h:373
std::size_t num_eq_classes() const
Gives the number of bisimulation equivalence classes of the LTS.
Definition liblts_scc.h:333
void group_components(const state_type t, const state_type equivalence_class_index, const indexed_sorted_vector_for_tau_transitions< LTS_TYPE > &src_tgt_src, std::vector< bool > &visited)
Definition liblts_scc.h:353
scc_partitioner(LTS_TYPE &l)
Creates an scc partitioner for an LTS.
Definition liblts_scc.h:210
void replace_transition_system(const bool preserve_divergence_loops)
The lts for which this partioner is created is replaced by the lts modulo the calculated partition.
Definition liblts_scc.h:248
~scc_partitioner()=default
Destroys this partitioner.
bool in_same_class(const std::size_t s, const std::size_t t) const
Returns whether two states are in the same bisimulation equivalence class.
Definition liblts_scc.h:345
std::vector< state_type > block_index_of_a_state
Definition liblts_scc.h:194
std::vector< state_type > dfsn2state
Definition liblts_scc.h:195
std::vector< ptrdiff_t > contents_t
Definition liblts_sim.h:110
std::string print_reverse_topological_sort(const std::vector< std::size_t > &Sort)
std::vector< std::size_t > touched_blocks
Definition liblts_sim.h:122
std::string print_structure(hash_table3 *struc)
std::size_t get_eq_class(std::size_t s) const
Definition liblts_sim.h:824
void initialise_Sigma(std::size_t gamma, std::size_t l)
Definition liblts_sim.h:341
std::vector< bool > state_touched
Definition liblts_sim.h:104
bool in_same_class(std::size_t s, std::size_t t) const
Definition liblts_sim.h:836
std::vector< std::vector< std::size_t > > pre_forall
Definition liblts_sim.h:116
std::vector< ptrdiff_t > contents_u
Definition liblts_sim.h:111
std::vector< bool > block_touched
Definition liblts_sim.h:105
void dfs_visit(std::size_t u, std::vector< bool > &visited, std::vector< std::size_t > &Sort)
Definition liblts_sim.h:475
void cleanup(std::size_t alpha, std::size_t beta)
Definition liblts_sim.h:726
std::vector< std::vector< bool > > stable
Definition liblts_sim.h:112
std::vector< std::size_t > block_Pi
Definition liblts_sim.h:107
std::string print_relation(std::size_t s, std::vector< std::vector< bool > > &R)
mcrl2::lts::outgoing_transitions_per_state_action_t trans_index
Definition liblts_sim.h:101
std::size_t num_eq_classes() const
Definition liblts_sim.h:818
std::string print_block(std::size_t b)
std::vector< mcrl2::lts::transition > get_transitions() const
Definition liblts_sim.h:768
std::vector< std::vector< std::size_t > > pre_exists
Definition liblts_sim.h:115
std::vector< std::size_t > parent
Definition liblts_sim.h:108
void filter(std::size_t S, std::vector< std::vector< bool > > &R, bool B)
Definition liblts_sim.h:670
std::vector< state_bucket > state_buckets
Definition liblts_sim.h:106
std::vector< std::size_t > contents
Definition liblts_sim.h:123
void touch(std::size_t a, std::size_t alpha)
Definition liblts_sim.h:490
std::vector< std::vector< bool > > P
Definition liblts_sim.h:118
void untouch(std::size_t alpha)
Definition liblts_sim.h:518
std::vector< std::vector< std::size_t > > children
Definition liblts_sim.h:109
void reverse_topological_sort(std::vector< std::size_t > &Sort)
Definition liblts_sim.h:462
std::vector< std::vector< bool > > Q
Definition liblts_sim.h:119
bool in_preorder(std::size_t s, std::size_t t) const
Definition liblts_sim.h:830
void initialise_Pi(std::size_t gamma, std::size_t l)
Definition liblts_sim.h:299
constant iterator class for simple_list
const_iterator & operator=(const const_iterator &other)=default
bool operator!=(const const_iterator &other) const
bool operator==(const const_iterator &other) const
const_iterator(const const_iterator &other)=default
entry(entry *const new_next, entry *const new_prev, Args &&... args)
class that stores either an iterator or a null value
bool operator==(const T *const other) const
bool operator!=(const T *const other) const
iterator class for simple_list
iterator(const iterator &other)=default
iterator & operator=(const iterator &other)=default
a simple implementation of lists
bool empty() const
return true iff the list is empty
const_iterator before_end() const
iterator before_end()
return an iterator to the last element of the list
iterator prev(iterator pos) const
const_iterator cbegin() const
return a constant iterator to the first element of the list
static iterator end()
return an iterator past the last element of the list
iterator emplace_after(iterator pos, Args &&... args)
construct a new list entry after pos
const_iterator prev(const_iterator pos) const
entry * first
pointer to the beginning of the list
const_iterator next(const_iterator pos) const
const_iterator begin() const
return a constant iterator to the first element of the list
iterator emplace_front(Args &&... args)
construct a new list entry at the beginning
void splice_to_after(iterator const to_pos, simple_list< T > &from_list, iterator const from_pos)
iterator next(iterator pos) const
bool operator==(const simple_list &other) const
void splice(iterator const to_pos, simple_list< T > &from_list, iterator const from_pos)
move a list entry from one position to another (possibly in a different list) The function moves the ...
static my_pool< entry > & get_pool()
T & back()
return a reference to the last element of the list
T & front()
return a reference to the first element of the list
iterator begin()
return an iterator to the first element of the list
void erase(iterator const pos)
erase an element from a list
bool operator!=(const simple_list &other) const
iterator emplace(iterator pos, Args &&... args)
construct a new list entry before pos
static const_iterator cend()
return a constant iterator past the last element of the list
iterator emplace_back(Args &&... args)
Puts a new element at the end.
A simple labelled transition format with only strings as action labels.
Definition lts_aut.h:70
void load(const std::string &filename)
Load the labelled transition system from a file.
void load(std::istream &is)
Load the labelled transition system from an input stream.
void save(const std::string &filename) const
Save the labelled transition system to file.
void swap(lts_default_base &)
Standard swap function.
Definition lts.h:53
lts_type type()
Provides the type of this lts, in casu lts_none.
Definition lts.h:47
bool operator==(const lts_default_base &) const
Standard equality function.
Definition lts.h:60
A class to contain labelled transition systems in graphviz format.
Definition lts_dot.h:137
void save(std::ostream &os) const
Save the labelled transition system to a stream.
The class lts_fsm_t contains labelled transition systems in .fsm format.
Definition lts_fsm.h:255
lts< state_label_fsm, action_label_string, detail::lts_fsm_base > super
Definition lts_fsm.h:257
void load(const std::string &filename)
Save the labelled transition system to file.
void save(const std::string &filename) const
Save the labelled transition system to file.
This class contains labelled transition systems in .lts format.
Definition lts_lts.h:385
lts_lts_t()
Creates an object containing no information.
Definition lts_lts.h:388
A class that contains a labelled transition system.
Definition lts.h:83
states_size_type num_state_labels() const
Gets the number of state labels of this LTS.
Definition lts.h:271
labels_size_type num_action_labels() const
Gets the number of action labels of this LTS.
Definition lts.h:327
states_size_type m_init_state
Definition lts.h:117
void add_transition(const transition &t)
Add a transition to the lts.
Definition lts.h:563
void set_num_action_labels(const labels_size_type n)
Sets the number of action labels of this LTS.
Definition lts.h:319
bool has_action_info() const
Checks whether this LTS has labels associated with its actions, which are numbers.
Definition lts.h:664
bool is_tau(labels_size_type action) const
Checks whether an action is a tau action.
Definition lts.h:572
std::set< labels_size_type > & hidden_label_set()
Returns the hidden label set that tells for each label what its corresponding hidden label is.
Definition lts.h:431
states_size_type num_states() const
Gets the number of states of this LTS.
Definition lts.h:245
void set_hidden_label_set(const std::set< labels_size_type > &m)
Sets the hidden label map that tells for each label what its corresponding hidden label is.
Definition lts.h:439
void clear_transitions(const std::size_t n=0)
Clear the transitions of an lts.
Definition lts.h:493
void set_num_transitions(const std::size_t n)
Sets the number of transitions of this LTS and tries to shrink the datastructure.
Definition lts.h:310
void clear_actions()
Clear the action labels of an lts.
Definition lts.h:504
void set_num_states(const states_size_type n, const bool has_state_labels=true)
Sets the number of states of this LTS.
Definition lts.h:280
void store_action_label_to_be_renamed(const ACTION_LABEL_T &a, const labels_size_type i, std::map< labels_size_type, labels_size_type > &action_rename_map)
Definition lts.h:146
void add_state_number_as_state_information()
Label each state with its state number.
Definition lts.h:521
static constexpr bool is_probabilistic_lts
An indicator that this is not a probabilistic lts.
Definition lts.h:112
bool is_probabilistic(const states_size_type state) const
Gets the label of a state.
Definition lts.h:469
ACTION_LABEL_T action_label_t
The type of action labels.
Definition lts.h:92
const std::set< labels_size_type > & hidden_label_set() const
Returns the hidden label set that tells for each label what its corresponding hidden label is.
Definition lts.h:423
std::vector< transition > m_transitions
Definition lts.h:118
std::vector< STATE_LABEL_T > & state_labels()
Provides the state labels of an LTS.
Definition lts.h:253
ACTION_LABEL_T action_label(const labels_size_type action) const
Gets the label of an action.
Definition lts.h:479
const labels_size_type tau_label_index() const
Provide the index of the label that represents tau.
Definition lts.h:385
const std::vector< ACTION_LABEL_T > & action_labels() const
The action labels in this lts.
Definition lts.h:402
bool has_state_info() const
Checks whether this LTS has state values associated with its states.
Definition lts.h:655
lts(const lts &l)
Creates a copy of the supplied LTS.
Definition lts.h:180
void set_initial_state(const states_size_type state)
Sets the initial state number of this LTS.
Definition lts.h:343
void set_action_label(const labels_size_type action, const ACTION_LABEL_T &label)
Sets the label of an action.
Definition lts.h:411
void rename_labels(const std::map< labels_size_type, labels_size_type > &action_rename_map)
Definition lts.h:127
std::set< labels_size_type > m_hidden_label_set
Definition lts.h:124
std::vector< STATE_LABEL_T >::size_type states_size_type
The sort that contains the indices of states.
Definition lts.h:100
void apply_hidden_actions(const std::vector< std::string > &tau_actions)
Rename actions in the lts by hiding the actions in the vector tau_actions.
Definition lts.h:628
labels_size_type apply_hidden_label_map(const labels_size_type action) const
If the action label is registered hidden, it returns tau, otherwise the original label.
Definition lts.h:447
std::vector< transition > & get_transitions()
Gets a reference to the vector of transitions of the current lts.
Definition lts.h:554
std::vector< ACTION_LABEL_T >::size_type labels_size_type
The sort that represents the indices of labels.
Definition lts.h:104
lts & operator=(const lts &l)
Standard assignment operator.
Definition lts.h:194
const std::vector< STATE_LABEL_T > & state_labels() const
Provides the state labels of an LTS.
Definition lts.h:261
std::vector< STATE_LABEL_T > m_state_labels
Definition lts.h:119
STATE_LABEL_T state_label(const states_size_type state) const
Gets the label of a state.
Definition lts.h:459
states_size_type add_state(const STATE_LABEL_T &label=STATE_LABEL_T())
Adds a state to this LTS.
Definition lts.h:356
STATE_LABEL_T state_label_t
The type of state labels.
Definition lts.h:88
void clear()
Clear the transitions system.
Definition lts.h:533
lts()
Creates an empty LTS.
Definition lts.h:172
bool operator==(const lts &other) const
Standard equality operator.
Definition lts.h:209
states_size_type m_nstates
Definition lts.h:116
const std::vector< transition > & get_transitions() const
Gets a const reference to the vector of transitions of the current lts.
Definition lts.h:545
LTS_BASE base_t
The type of the used lts base.
Definition lts.h:96
std::vector< transition >::size_type transitions_size_type
The sort that contains indices of transitions.
Definition lts.h:108
states_size_type initial_state() const
Gets the initial state number of this LTS.
Definition lts.h:335
void clear_state_labels()
Clear the labels of an lts.
Definition lts.h:514
void swap(lts &l)
Swap this lts with the supplied supplied LTS.
Definition lts.h:222
void record_hidden_actions(const std::vector< std::string > &tau_actions)
Records all actions with a string that occurs in tau_actions internally.
Definition lts.h:589
std::vector< ACTION_LABEL_T > m_action_labels
Definition lts.h:120
transitions_size_type num_transitions() const
Gets the number of transitions of this LTS.
Definition lts.h:302
void set_state_label(const states_size_type state, const STATE_LABEL_T &label)
Sets the label of a state.
Definition lts.h:393
labels_size_type add_action(const ACTION_LABEL_T &label)
Adds an action with a label to this LTS.
Definition lts.h:370
A simple labelled transition format with only strings as action labels.
Definition lts_aut.h:103
void load(const std::string &filename)
Load the labelled transition system from a file.
void load(std::istream &is)
Load the labelled transition system from an input stream.
void save(const std::string &filename) const
Save the labelled transition system to file.
A class to contain labelled transition systems in graphviz format.
Definition lts_dot.h:163
void save(std::ostream &os) const
Save the labelled transition system to a stream.
The class lts_fsm_t contains labelled transition systems in .fsm format.
Definition lts_fsm.h:283
probabilistic_lts< state_label_fsm, action_label_string, probabilistic_state_t, detail::lts_fsm_base > super
Definition lts_fsm.h:286
void save(const std::string &filename) const
Save the labelled transition system to file.
void load(const std::string &filename)
Save the labelled transition system to file.
This class contains probabilistic labelled transition systems in .lts format.
Definition lts_lts.h:413
probabilistic_lts_lts_t()
Creates an object containing no information.
Definition lts_lts.h:416
A class that contains a labelled transition system.
probabilistic_lts(probabilistic_lts &&other)=default
Standard move constructor.
void set_initial_probabilistic_state(const PROBABILISTIC_STATE_T &state)
Sets the probabilistic initial state number of this LTS.
const PROBABILISTIC_STATE_T & initial_probabilistic_state() const
Gets the initial state number of this LTS.
super::transitions_size_type transitions_size_type
bool operator==(const probabilistic_lts &other) const
Standard equality operator.
void swap(probabilistic_lts &other)
Swap this lts with the supplied supplied LTS.
super::states_size_type states_size_type
labels_size_type num_probabilistic_states() const
Gets the number of probabilistic states of this LTS.
static constexpr bool is_probabilistic_lts
An indicator that this is a probabilistic lts.
void clear_probabilistic_states()
Clear the probabilistic states in this probabilistic transitions system.
lts< STATE_LABEL_T, ACTION_LABEL_T, LTS_BASE > super
states_size_type add_and_reset_probabilistic_state(PROBABILISTIC_STATE_T &s)
Adds a probabilistic state to this LTS and resets the state to empty.
void set_initial_state(const states_size_type s)
void clear()
Clear the transitions system.
probabilistic_lts & operator=(probabilistic_lts &&other)=default
Standard assignment move operator.
PROBABILISTIC_STATE_T probabilistic_state_t
The type of probabilistic labels.
probabilistic_lts & operator=(const probabilistic_lts &other)=default
Standard assignment operator.
std::vector< PROBABILISTIC_STATE_T > m_probabilistic_states
probabilistic_lts(const probabilistic_lts &other)=default
Standard copy constructor.
states_size_type add_probabilistic_state(const PROBABILISTIC_STATE_T &s)
Adds a probabilistic state to this LTS.
super::state_label_t state_label_t
states_size_type initial_state() const
PROBABILISTIC_STATE_T m_init_probabilistic_state
super::labels_size_type labels_size_type
super::action_label_t action_label_t
const PROBABILISTIC_STATE_T & probabilistic_state(const states_size_type index) const
Gets the probabilistic label of an index.
probabilistic_lts()
Creates an empty LTS.
void set_probabilistic_state(const states_size_type index, const PROBABILISTIC_STATE_T &s)
Sets the probabilistic label corresponding to some index.
A class that contains a probabilistic state.
void set(const STATE &s)
Set this probabilistic state to a single state with probability one.
const_iterator begin() const
Gets an iterator over pairs of state and probability. This can only be used when the state is stored ...
void construct_internal_vector_representation()
Guarantee that this probabilistic state is internally stored as a vector, such that begin/end,...
probabilistic_state & operator=(const probabilistic_state &other)
Copy assignment constructor.
const_reverse_iterator rbegin() const
Gets a reverse iterator over pairs of state and probability. This can only be used when the state is ...
std::size_t size() const
Gets the number of probabilistic states in the vector representation of this state....
bool operator!=(const probabilistic_state &other) const
Standard equality operator.
iterator begin()
Gets an iterator over pairs of state and probability. This can only be used if the state is internall...
std::vector< state_probability_pair >::const_iterator const_iterator
STATE get() const
Get a probabilistic state if is is simple, i.e., consists of a single state.
iterator end()
Gets the end iterator over pairs of state and probability.
reverse_iterator rbegin()
Gets a reverse iterator over pairs of state and probability. This can only be used if the state is in...
std::vector< state_probability_pair > m_probabilistic_state
const_iterator end() const
Gets the end iterator over pairs of state and probability.
std::vector< state_probability_pair >::iterator iterator
void swap(probabilistic_state &other)
Swap this probabilistic state.
reverse_iterator rend()
Gets the reverse end iterator over pairs of state and probability.
std::vector< state_probability_pair >::const_reverse_iterator const_reverse_iterator
bool operator==(const probabilistic_state &other) const
Standard equality operator.
void clear()
Makes the probabilistic state empty.
probabilistic_state(const STATE_PROBABILITY_PAIR_ITERATOR begin, const STATE_PROBABILITY_PAIR_ITERATOR end)
Creates a probabilistic state on the basis of state_probability_pairs.
std::vector< state_probability_pair >::reverse_iterator reverse_iterator
probabilistic_state(const probabilistic_state &other)
Copy constructor.
void shrink_to_fit()
If a probabilistic state is ready, shrinking it to minimal size might be useful to reduce its memory ...
probabilistic_state()
Default constructor.
probabilistic_state(const STATE &s)
Constructor of a probabilistic state from a non probabilistic state.
void add(const STATE &s, const PROBABILITY &p)
Add a state with a probability to the probabilistic state.
const_reverse_iterator rend() const
Gets the reverse end iterator over pairs of state and probability.
Class for computing the signature for strong bisimulation.
Definition sigref.h:75
Class for computing the signature for branching bisimulation.
Definition sigref.h:105
Class for computing the signature for divergence preserving branching bisimulation.
Definition sigref.h:185
Signature based reductions for labelled transition systems.
Definition sigref.h:350
This class contains labels for states in dot format.
Definition lts_dot.h:37
std::string name() const
This method returns the string in the name field of a state label.
Definition lts_dot.h:64
std::string label() const
This method returns the label in the name field of a state label.
Definition lts_dot.h:78
state_label_dot()
The default constructor.
Definition lts_dot.h:46
std::string m_state_label
Definition lts_dot.h:40
bool operator==(const state_label_dot &l) const
Standard comparison operator, comparing both the string in the name field, as well as the one in the ...
Definition lts_dot.h:86
bool operator!=(const state_label_dot &l) const
Standard inequality operator. Just the negation of equality.
Definition lts_dot.h:93
Contains empty state values, used for lts's without state valued.
bool operator==(const state_label_empty &) const
static state_label_empty number_to_label(const std::size_t)
Create a state label consisting of a number as the only list element. For empty state labels this doe...
bool operator!=(const state_label_empty &other) const
state_label_empty operator+(const state_label_empty &) const
An operator to concatenate two state labels.
This class contains state labels for the fsm format.
Definition lts_fsm.h:38
state_label_fsm(const state_label_fsm &)=default
Copy constructor.
state_label_fsm & operator=(const state_label_fsm &)=default
Copy assignment.
static state_label_fsm number_to_label(const std::size_t n)
Create a state label consisting of a number as the only list element.
Definition lts_fsm.h:70
state_label_fsm()
Default constructor. The label becomes an empty vector.
Definition lts_fsm.h:42
state_label_fsm(const std::vector< std::size_t > &v)
Default constructor. The label is set to the vector v.
Definition lts_fsm.h:53
state_label_fsm operator+(const state_label_fsm &l) const
An operator to concatenate two state labels. Fsm labels cannot be concatenated. Therefore,...
Definition lts_fsm.h:59
This class contains state labels for an labelled transition system in .lts format.
Definition lts_lts.h:40
state_label_lts()
Default constructor.
Definition lts_lts.h:46
state_label_lts(const state_label_lts &)=default
Copy constructor.
state_label_lts operator+(const state_label_lts &l) const
An operator to concatenate two state labels.
Definition lts_lts.h:81
state_label_lts(const super &l)
Construct a state label out of list of balanced trees of data expressions, representing a state label...
Definition lts_lts.h:73
atermpp::term_list< lps::state > super
Definition lts_lts.h:42
state_label_lts(const lps::state &l)
Construct a state label out of a balanced tree of data expressions, representing a state label.
Definition lts_lts.h:66
state_label_lts & operator=(const state_label_lts &)=default
Copy assignment.
static state_label_lts number_to_label(const std::size_t n)
Create a state label consisting of a number as the only list element.
Definition lts_lts.h:96
state_label_lts(const CONTAINER &l)
Construct a single state label out of the elements in a container.
Definition lts_lts.h:58
A class containing triples, source label and target representing transitions.
Definition transition.h:48
void set_label(const size_type label)
Set the label of the transition.
Definition transition.h:116
transition & operator=(const transition &t)=default
Assignment.
void set_to(const size_type to)
Set the target of the transition.
Definition transition.h:123
bool operator<(const transition &t) const
Standard lexicographic ordering on transitions.
Definition transition.h:147
transition(const std::size_t f, const std::size_t l, const std::size_t t)
Constructor (there is no default constructor).
Definition transition.h:67
size_type from() const
The source of the transition.
Definition transition.h:89
transition & operator=(transition &&t)=default
Move assignment.
bool operator!=(const transition &t) const
Standard inequality on transitions.
Definition transition.h:137
size_type label() const
The label of the transition.
Definition transition.h:95
size_type to() const
The target of the transition.
Definition transition.h:102
void set_from(const size_type from)
Set the source of the transition.
Definition transition.h:109
transition(transition &&t)=default
Move constructor.
transition(const transition &t)=default
Copy constructor.
std::size_t size_type
The type of the elements in a transition.
Definition transition.h:51
bool operator==(const transition &t) const
Standard equality on transitions.
Definition transition.h:130
\brief An action label
action_label(const core::identifier_string &name, const data::sort_expression_list &sorts)
\brief Constructor Z12.
action(const action_label &label, const data::data_expression_list &arguments)
\brief Constructor Z14.
Process specification consisting of a data specification, action labels, a sequence of process equati...
\brief An untyped multi action or data application
\brief The alt operator for regular formulas
alt(const atermpp::aterm &term)
alt()
\brief Default constructor X3.
alt & operator=(alt &&) noexcept=default
const regular_formula & right() const
alt(const regular_formula &left, const regular_formula &right)
\brief Constructor Z14.
alt(const alt &) noexcept=default
Move semantics.
alt(alt &&) noexcept=default
alt & operator=(const alt &) noexcept=default
const regular_formula & left() const
regular_formula()
\brief Default constructor X3.
regular_formula(const action_formulas::action_formula &x)
\brief Constructor Z6.
regular_formula(const atermpp::aterm &term)
regular_formula(const regular_formula &) noexcept=default
Move semantics.
regular_formula(const data::data_expression &x)
\brief Constructor Z6.
regular_formula & operator=(const regular_formula &) noexcept=default
regular_formula(regular_formula &&) noexcept=default
regular_formula & operator=(regular_formula &&) noexcept=default
\brief The seq operator for regular formulas
seq(const regular_formula &left, const regular_formula &right)
\brief Constructor Z14.
const regular_formula & right() const
seq & operator=(const seq &) noexcept=default
seq(const seq &) noexcept=default
Move semantics.
const regular_formula & left() const
seq(seq &&) noexcept=default
seq()
\brief Default constructor X3.
seq & operator=(seq &&) noexcept=default
seq(const atermpp::aterm &term)
\brief The 'trans or nil' operator for regular formulas
trans_or_nil & operator=(trans_or_nil &&) noexcept=default
trans_or_nil & operator=(const trans_or_nil &) noexcept=default
trans_or_nil(const trans_or_nil &) noexcept=default
Move semantics.
trans_or_nil(const regular_formula &operand)
\brief Constructor Z14.
trans_or_nil()
\brief Default constructor X3.
trans_or_nil(trans_or_nil &&) noexcept=default
trans_or_nil(const atermpp::aterm &term)
const regular_formula & operand() const
\brief The trans operator for regular formulas
trans(const atermpp::aterm &term)
trans(trans &&) noexcept=default
const regular_formula & operand() const
trans & operator=(const trans &) noexcept=default
trans & operator=(trans &&) noexcept=default
trans()
\brief Default constructor X3.
trans(const trans &) noexcept=default
Move semantics.
trans(const regular_formula &operand)
\brief Constructor Z14.
\brief An untyped regular formula or action formula
untyped_regular_formula()
\brief Default constructor X3.
untyped_regular_formula & operator=(untyped_regular_formula &&) noexcept=default
untyped_regular_formula & operator=(const untyped_regular_formula &) noexcept=default
untyped_regular_formula(const std::string &name, const regular_formula &left, const regular_formula &right)
\brief Constructor Z2.
untyped_regular_formula(const core::identifier_string &name, const regular_formula &left, const regular_formula &right)
\brief Constructor Z14.
const core::identifier_string & name() const
untyped_regular_formula(const untyped_regular_formula &) noexcept=default
Move semantics.
untyped_regular_formula(untyped_regular_formula &&) noexcept=default
Standard exception class for reporting runtime errors.
Definition exception.h:27
\brief The and operator for state formulas
and_(and_ &&) noexcept=default
const state_formula & right() const
and_(const atermpp::aterm &term)
and_(const and_ &) noexcept=default
Move semantics.
and_(const state_formula &left, const state_formula &right)
\brief Constructor Z14.
and_ & operator=(const and_ &) noexcept=default
and_()
\brief Default constructor X3.
and_ & operator=(and_ &&) noexcept=default
const state_formula & left() const
\brief The multiply operator for state formulas with values
const_multiply_alt & operator=(const const_multiply_alt &) noexcept=default
const state_formula & left() const
const_multiply_alt(const state_formula &left, const data::data_expression &right)
\brief Constructor Z14.
const_multiply_alt(const const_multiply_alt &) noexcept=default
Move semantics.
const_multiply_alt(const_multiply_alt &&) noexcept=default
const data::data_expression & right() const
const_multiply_alt(const atermpp::aterm &term)
const_multiply_alt & operator=(const_multiply_alt &&) noexcept=default
const_multiply_alt()
\brief Default constructor X3.
\brief The multiply operator for state formulas with values
const data::data_expression & left() const
const_multiply(const const_multiply &) noexcept=default
Move semantics.
const_multiply(const data::data_expression &left, const state_formula &right)
\brief Constructor Z14.
const_multiply()
\brief Default constructor X3.
const_multiply(const_multiply &&) noexcept=default
const_multiply & operator=(const const_multiply &) noexcept=default
const_multiply & operator=(const_multiply &&) noexcept=default
const_multiply(const atermpp::aterm &term)
const state_formula & right() const
\brief The timed delay operator for state formulas
delay_timed(const atermpp::aterm &term)
delay_timed()
\brief Default constructor X3.
delay_timed & operator=(const delay_timed &) noexcept=default
const data::data_expression & time_stamp() const
delay_timed(const data::data_expression &time_stamp)
\brief Constructor Z14.
delay_timed(const delay_timed &) noexcept=default
Move semantics.
delay_timed(delay_timed &&) noexcept=default
delay_timed & operator=(delay_timed &&) noexcept=default
\brief The delay operator for state formulas
delay & operator=(delay &&) noexcept=default
delay()
\brief Default constructor X3.
delay(const delay &) noexcept=default
Move semantics.
delay(delay &&) noexcept=default
delay(const atermpp::aterm &term)
delay & operator=(const delay &) noexcept=default
\brief The existential quantification operator for state formulas
exists(const data::variable_list &variables, const state_formula &body)
\brief Constructor Z14.
const state_formula & body() const
exists(const exists &) noexcept=default
Move semantics.
exists(exists &&) noexcept=default
exists & operator=(const exists &) noexcept=default
exists & operator=(exists &&) noexcept=default
exists()
\brief Default constructor X3.
exists(const atermpp::aterm &term)
const data::variable_list & variables() const
\brief The value false for state formulas
false_(false_ &&) noexcept=default
false_ & operator=(const false_ &) noexcept=default
false_ & operator=(false_ &&) noexcept=default
false_(const atermpp::aterm &term)
false_(const false_ &) noexcept=default
Move semantics.
false_()
\brief Default constructor X3.
\brief The universal quantification operator for state formulas
const state_formula & body() const
forall(const atermpp::aterm &term)
const data::variable_list & variables() const
forall & operator=(const forall &) noexcept=default
forall & operator=(forall &&) noexcept=default
forall(const forall &) noexcept=default
Move semantics.
forall(const data::variable_list &variables, const state_formula &body)
\brief Constructor Z14.
forall(forall &&) noexcept=default
forall()
\brief Default constructor X3.
\brief The implication operator for state formulas
imp()
\brief Default constructor X3.
imp(imp &&) noexcept=default
imp(const state_formula &left, const state_formula &right)
\brief Constructor Z14.
imp & operator=(const imp &) noexcept=default
const state_formula & left() const
const state_formula & right() const
imp(const atermpp::aterm &term)
imp(const imp &) noexcept=default
Move semantics.
imp & operator=(imp &&) noexcept=default
\brief The infimum over a data type for state formulas
infimum(const infimum &) noexcept=default
Move semantics.
infimum()
\brief Default constructor X3.
infimum(const data::variable_list &variables, const state_formula &body)
\brief Constructor Z14.
infimum & operator=(infimum &&) noexcept=default
const data::variable_list & variables() const
const state_formula & body() const
infimum(const atermpp::aterm &term)
infimum(infimum &&) noexcept=default
infimum & operator=(const infimum &) noexcept=default
\brief The may operator for state formulas
const state_formula & operand() const
may()
\brief Default constructor X3.
const regular_formulas::regular_formula & formula() const
may & operator=(const may &) noexcept=default
may & operator=(may &&) noexcept=default
may(const regular_formulas::regular_formula &formula, const state_formula &operand)
\brief Constructor Z14.
may(may &&) noexcept=default
may(const atermpp::aterm &term)
may(const may &) noexcept=default
Move semantics.
\brief The minus operator for state formulas
minus & operator=(minus &&) noexcept=default
minus(minus &&) noexcept=default
minus(const minus &) noexcept=default
Move semantics.
minus(const atermpp::aterm &term)
minus(const state_formula &operand)
\brief Constructor Z14.
const state_formula & operand() const
minus & operator=(const minus &) noexcept=default
minus()
\brief Default constructor X3.
\brief The mu operator for state formulas
const core::identifier_string & name() const
const data::assignment_list & assignments() const
mu(const mu &) noexcept=default
Move semantics.
mu(const std::string &name, const data::assignment_list &assignments, const state_formula &operand)
\brief Constructor Z2.
mu(const core::identifier_string &name, const data::assignment_list &assignments, const state_formula &operand)
\brief Constructor Z14.
mu & operator=(const mu &) noexcept=default
mu(mu &&) noexcept=default
mu & operator=(mu &&) noexcept=default
mu(const atermpp::aterm &term)
mu()
\brief Default constructor X3.
const state_formula & operand() const
\brief The must operator for state formulas
must(must &&) noexcept=default
must & operator=(must &&) noexcept=default
must(const atermpp::aterm &term)
must(const regular_formulas::regular_formula &formula, const state_formula &operand)
\brief Constructor Z14.
const regular_formulas::regular_formula & formula() const
must(const must &) noexcept=default
Move semantics.
const state_formula & operand() const
must()
\brief Default constructor X3.
must & operator=(const must &) noexcept=default
\brief The not operator for state formulas
not_(not_ &&) noexcept=default
not_(const not_ &) noexcept=default
Move semantics.
not_ & operator=(const not_ &) noexcept=default
not_ & operator=(not_ &&) noexcept=default
not_()
\brief Default constructor X3.
not_(const atermpp::aterm &term)
const state_formula & operand() const
not_(const state_formula &operand)
\brief Constructor Z14.
\brief The nu operator for state formulas
nu(const atermpp::aterm &term)
nu(nu &&) noexcept=default
nu(const core::identifier_string &name, const data::assignment_list &assignments, const state_formula &operand)
\brief Constructor Z14.
nu()
\brief Default constructor X3.
nu & operator=(const nu &) noexcept=default
nu & operator=(nu &&) noexcept=default
const core::identifier_string & name() const
nu(const std::string &name, const data::assignment_list &assignments, const state_formula &operand)
\brief Constructor Z2.
const state_formula & operand() const
nu(const nu &) noexcept=default
Move semantics.
const data::assignment_list & assignments() const
\brief The or operator for state formulas
or_(or_ &&) noexcept=default
or_()
\brief Default constructor X3.
or_(const or_ &) noexcept=default
Move semantics.
or_(const state_formula &left, const state_formula &right)
\brief Constructor Z14.
or_ & operator=(const or_ &) noexcept=default
const state_formula & right() const
or_ & operator=(or_ &&) noexcept=default
or_(const atermpp::aterm &term)
const state_formula & left() const
\brief The plus operator for state formulas with values
plus & operator=(plus &&) noexcept=default
plus & operator=(const plus &) noexcept=default
plus(const plus &) noexcept=default
Move semantics.
const state_formula & left() const
plus(const atermpp::aterm &term)
plus()
\brief Default constructor X3.
const state_formula & right() const
plus(plus &&) noexcept=default
plus(const state_formula &left, const state_formula &right)
\brief Constructor Z14.
state_formula(const state_formula &) noexcept=default
Move semantics.
state_formula()
\brief Default constructor X3.
state_formula(state_formula &&) noexcept=default
bool has_time() const
Returns true if the formula is timed.
state_formula(const data::untyped_data_parameter &x)
\brief Constructor Z6.
state_formula & operator=(state_formula &&) noexcept=default
state_formula(const data::data_expression &x)
\brief Constructor Z6.
state_formula(const atermpp::aterm &term)
state_formula & operator=(const state_formula &) noexcept=default
\brief The sum over a data type for state formulas
sum(const sum &) noexcept=default
Move semantics.
sum(sum &&) noexcept=default
sum(const atermpp::aterm &term)
sum(const data::variable_list &variables, const state_formula &body)
\brief Constructor Z14.
sum & operator=(sum &&) noexcept=default
sum()
\brief Default constructor X3.
const data::variable_list & variables() const
const state_formula & body() const
sum & operator=(const sum &) noexcept=default
\brief The supremum over a data type for state formulas
supremum & operator=(supremum &&) noexcept=default
supremum(supremum &&) noexcept=default
supremum(const atermpp::aterm &term)
supremum()
\brief Default constructor X3.
supremum(const supremum &) noexcept=default
Move semantics.
supremum & operator=(const supremum &) noexcept=default
const state_formula & body() const
const data::variable_list & variables() const
supremum(const data::variable_list &variables, const state_formula &body)
\brief Constructor Z14.
\brief The value true for state formulas
true_()
\brief Default constructor X3.
true_ & operator=(const true_ &) noexcept=default
true_(true_ &&) noexcept=default
true_(const true_ &) noexcept=default
Move semantics.
true_(const atermpp::aterm &term)
true_ & operator=(true_ &&) noexcept=default
\brief The state formula variable
variable & operator=(const variable &) noexcept=default
variable(const core::identifier_string &name, const data::data_expression_list &arguments)
\brief Constructor Z14.
variable(const variable &) noexcept=default
Move semantics.
variable(const std::string &name, const data::data_expression_list &arguments)
\brief Constructor Z2.
variable()
\brief Default constructor X3.
variable & operator=(variable &&) noexcept=default
const core::identifier_string & name() const
const data::data_expression_list & arguments() const
variable(variable &&) noexcept=default
variable(const atermpp::aterm &term)
\brief The timed yaled operator for state formulas
yaled_timed(yaled_timed &&) noexcept=default
yaled_timed & operator=(const yaled_timed &) noexcept=default
yaled_timed()
\brief Default constructor X3.
yaled_timed & operator=(yaled_timed &&) noexcept=default
yaled_timed(const yaled_timed &) noexcept=default
Move semantics.
yaled_timed(const data::data_expression &time_stamp)
\brief Constructor Z14.
yaled_timed(const atermpp::aterm &term)
const data::data_expression & time_stamp() const
\brief The yaled operator for state formulas
yaled()
\brief Default constructor X3.
yaled(const atermpp::aterm &term)
yaled & operator=(const yaled &) noexcept=default
yaled(const yaled &) noexcept=default
Move semantics.
yaled(yaled &&) noexcept=default
yaled & operator=(yaled &&) noexcept=default
void div_mod(const big_natural_number &other, big_natural_number &result, big_natural_number &remainder, big_natural_number &calculation_buffer_divisor) const
bool is_number(std::size_t n) const
Returns whether this number equals a number of std::size_t.
big_natural_number(const std::size_t n)
big_natural_number operator*(const big_natural_number &other) const
operator std::size_t() const
Transforms this number to a std::size_t, provided it is sufficiently small. If not an mcrl2::runtime_...
bool operator>=(const big_natural_number &other) const
std::size_t operator[](const std::size_t n) const
Give the n-th digit where the most significant digit is positioned last.
void add(const big_natural_number &other)
std::vector< std::size_t > m_number
big_natural_number operator+(const big_natural_number &other) const
bool operator==(const big_natural_number &other) const
std::size_t divide_by(std::size_t n)
big_natural_number operator%(const big_natural_number &other) const
std::size_t size() const
Give the number of digits in this big number.
big_natural_number operator-(const big_natural_number &other) const
friend void swap(big_natural_number &x, big_natural_number &y)
Standard overload of swap.
bool operator<=(const big_natural_number &other) const
big_natural_number operator/(const big_natural_number &other) const
void clear()
Sets the number to zero.
bool operator!=(const big_natural_number &other) const
bool is_zero() const
Returns whether this number equals zero.
void multiply(const big_natural_number &other, big_natural_number &result, big_natural_number &calculation_buffer_for_multiplicand) const
void push_back(const std::size_t n)
bool operator<(const big_natural_number &other) const
void subtract(const big_natural_number &other)
bool operator>(const big_natural_number &other) const
void multiply_by(std::size_t n, std::size_t carry)
This class contains labels for probabilistic transistions, consisting of a numerator and a denominato...
probabilistic_arbitrary_precision_fraction operator*(const probabilistic_arbitrary_precision_fraction &other) const
static void greatest_common_divisor_destructive(utilities::big_natural_number &x, utilities::big_natural_number &y, utilities::big_natural_number &buffer_divide, utilities::big_natural_number &buffer_remainder, utilities::big_natural_number &buffer)
bool operator>=(const probabilistic_arbitrary_precision_fraction &other) const
static void remove_common_factors(utilities::big_natural_number &enumerator, utilities::big_natural_number &denominator)
bool operator!=(const probabilistic_arbitrary_precision_fraction &other) const
probabilistic_arbitrary_precision_fraction operator+(const probabilistic_arbitrary_precision_fraction &other) const
bool operator<(const probabilistic_arbitrary_precision_fraction &other) const
bool operator>(const probabilistic_arbitrary_precision_fraction &other) const
static probabilistic_arbitrary_precision_fraction & one()
Constant one.
static utilities::big_natural_number greatest_common_divisor(utilities::big_natural_number x, utilities::big_natural_number y)
probabilistic_arbitrary_precision_fraction operator-(const probabilistic_arbitrary_precision_fraction &other) const
static probabilistic_arbitrary_precision_fraction & zero()
Constant zero.
probabilistic_arbitrary_precision_fraction operator/(const probabilistic_arbitrary_precision_fraction &other) const
bool operator<=(const probabilistic_arbitrary_precision_fraction &other) const
probabilistic_arbitrary_precision_fraction(const utilities::big_natural_number &enumerator, const utilities::big_natural_number &denominator)
bool operator==(const probabilistic_arbitrary_precision_fraction &other) const
#define ABORT_THIS_COROUTINE()
indicates that this coroutine gives up control to the other one
Definition coroutine.h:363
#define _coroutine_ENUMDEF(lblseq)
Definition coroutine.h:118
#define _coroutine_ENUMDEF_1(r, data, label)
Definition coroutine.h:120
#define END_COROUTINE
Ends the definition of code for a coroutine.
Definition coroutine.h:200
#define ABORT_OTHER_COROUTINE()
indicates that the other coroutine should give up control
Definition coroutine.h:378
#define COROUTINE_FOR(location, init, condition, update)
a for loop where every iteration incurs one unit of work
Definition coroutine.h:271
#define COROUTINE_WHILE(location, condition)
a while loop where every iteration incurs one unit of work
Definition coroutine.h:227
#define COROUTINES_SECTION
begin a section with two coroutines
Definition coroutine.h:142
#define COROUTINE_DO_WHILE(location, condition)
a do { } while loop where every iteration incurs one unit of work
Definition coroutine.h:314
#define END_COROUTINES_SECTION
Close a section containing coroutines.
Definition coroutine.h:208
#define COROUTINE
Define the code for a coroutine.
Definition coroutine.h:192
#define END_COROUTINE_WHILE
ends a loop started with COROUTINE_WHILE
Definition coroutine.h:252
#define END_COROUTINE_FOR
ends a loop started with COROUTINE_FOR
Definition coroutine.h:297
#define COROUTINE_LABELS(locations)
Declare the interrupt locations for the coroutines.
Definition coroutine.h:161
#define END_COROUTINE_DO_WHILE
ends a loop started with COROUTINE_DO_WHILE
Definition coroutine.h:336
#define TERMINATE_COROUTINE_SUCCESSFULLY()
terminate the pair of coroutines successfully
Definition coroutine.h:348
bool bisimulation_compare_gjkw(const LTS_TYPE &l1, const LTS_TYPE &l2, bool branching=false, bool preserve_divergence=false)
Checks whether the two initial states of two LTSs are strong or branching bisimilar.
void bisimulation_reduce_gjkw(LTS_TYPE &l, bool branching=false, bool preserve_divergence=false)
Reduce transition system l with respect to strong or (divergence preserving) branching bisimulation.
bool bisimulation_compare_dnj(const LTS_TYPE &l1, const LTS_TYPE &l2, bool const branching=false, bool const preserve_divergence=false)
Checks whether the two initial states of two LTSs are strong or (divergence-preserving) branching bis...
bool destructive_bisimulation_compare_dnj(LTS_TYPE &l1, LTS_TYPE &l2, bool const branching=false, bool const preserve_divergence=false, bool const generate_counter_examples=false, const std::string &="", bool=false)
Checks whether the two initial states of two LTSs are strong or (divergence-preserving) branching bis...
bool destructive_bisimulation_compare_gjkw(LTS_TYPE &l1, LTS_TYPE &l2, bool branching=false, bool preserve_divergence=false, bool generate_counter_examples=false)
Checks whether the two initial states of two LTSs are strong or branching bisimilar.
void bisimulation_reduce_dnj(LTS_TYPE &l, bool const branching=false, bool const preserve_divergence=false)
Reduce transition system l with respect to strong or (divergence-preserving) branching bisimulation.
bool destructive_bisimulation_compare_gjkw(LTS_TYPE &l1, LTS_TYPE &l2, bool branching, bool preserve_divergence, bool generate_counter_examples, const std::string &, bool)
std::string debug_id() const
print a B_to_C slice identification for debugging
std::string debug_id() const
print a constellation identification for debugging
std::string debug_id() const
print a block identification for debugging
bisim_partitioner_gjkw(LTS_TYPE &l, bool branching=false, bool preserve_divergence=false)
check_complexity::trans_counter_t work_counter
succ_iter_t change_to_C(pred_iter_t pred_iter, ONLY_IF_DEBUG(constln_t *SpC, constln_t *NewC,) bool first_transition_of_state, bool first_transition_of_block)
transition target is moved to a new constellation
block_t * refinable_next
next block in the list of refinable blocks
static permutation_const_iter_t permutation_begin()
provide an iterator to the beginning of the permutation array
permutation_const_iter_t end() const
iterator past the last state in the block
void split_inert_to_C(block_t *B)
handle the transitions from the splitter to its own constellation
void set_inert_begin(B_to_C_iter_t new_inert_begin)
void replace_transition_system(bool branching, bool preserve_divergence)
void assert_stability(const part_state_t &part_st) const
assert that the data structure is consistent and stable
bisim_gjkw::bisim_partitioner_gjkw_initialise_helper< LTS_TYPE > init_helper
const constln_t * to_constln() const
compute the goal constellation of the transitions in this slice
static state_type nr_of_blocks
total number of blocks with unique sequence number allocated
state_type unmarked_bottom_size() const
provides the number of unmarked bottom states in the block
void replace_transition_system(const part_state_t &part_st, ONLY_IF_DEBUG(bool branching,) bool preserve_divergence)
Replaces the transition relation of the current LTS by the transitions of the bisimulation-reduced tr...
bool split_s_inert_out(state_info_ptr s ONLY_IF_DEBUG(, constln_t *OldC))
Split outgoing transitions of a state in the splitter.
void set_marked_bottom_begin(permutation_iter_t new_marked_bottom_begin)
void SetFromRed(B_to_C_desc_iter_t new_fromred)
set FromRed to an existing element in to_constln
void make_nontrivial()
makes a constellation non-trivial (i. e. inserts it into the respective list)
permutation_const_iter_t nonbottom_begin() const
iterator to the first non-bottom state in the block
pred_const_iter_t inert_pred_end() const
iterator one past the last inert incoming transition
const block_t * from_block() const
compute the source block of the transitions in this slice
bisim_gjkw::block_t * refine(bisim_gjkw::block_t *RfnB, const bisim_gjkw::constln_t *SpC, const bisim_gjkw::B_to_C_descriptor *FromRed, bool postprocessing, const bisim_gjkw::constln_t *NewC=nullptr)
refine a block into the part that can reach SpC and the part that cannot
block_t * split_off_small_block()
split off a single block from the constellation
bisim_gjkw::block_t * postprocess_new_bottom(bisim_gjkw::block_t *RedB)
Split a block with new bottom states as needed.
B_to_C_iter_t postprocess_begin
iterator to the first transition into this constellation that needs postprocessing
bool add_work_to_bottom_transns(enum check_complexity::counter_type ctr, unsigned max_value)
bool operator>(const constln_t &other) const
const constln_t * constln() const
get constellation where the state belongs
permutation_const_iter_t begin() const
iterator to the first state in the block
void make_trivial()
makes a constellation trivial (i. e. removes it from the respective list)
void swap_B_to_C(succ_iter_t const pos1, succ_iter_t const pos2)
succ_iter_t state_inert_out_end
iterator past the last inert outgoing transition
B_to_C_descriptor(B_to_C_iter_t begin_, B_to_C_iter_t end_)
bool surely_has_no_transition_to(const constln_t *SpC) const
bool needs_postprocessing() const
returns true iff the slice is marked for postprocessing
void set_begin(permutation_iter_t new_begin)
permutation_const_iter_t marked_nonbottom_begin() const
iterator to the first marked non-bottom state in the block
permutation_iter_t pos
position of the state in the permutation array
state_type get_eq_class(state_type s) const
static constln_t * nontrivial_first
first constellation in the list of non-trivial constellations
bool operator>=(const constln_t &other) const
permutation_const_iter_t end() const
constant iterator past the last state in the constellation
permutation_const_iter_t unmarked_bottom_begin() const
iterator to the first unmarked bottom state in the block
void set_inert_begin_and_end(B_to_C_iter_t new_inert_begin, B_to_C_iter_t new_inert_end)
B_to_C_const_iter_t inert_begin() const
iterator to the first inert transition of the block
void make_nonrefinable()
makes a block non-refinable (i. e. removes it from the respective list)
permutation_const_iter_t marked_bottom_begin() const
iterator to the first marked bottom state in the block
pred_const_iter_t noninert_pred_begin() const
iterator to first non-inert incoming transition
bool mark_nonbottom(state_info_ptr s)
mark a non-bottom state
permutation_const_iter_t bottom_begin() const
iterator to the first bottom state in the block
std::string debug_id_short() const
print a short state identification for debugging
permutation_iter_t int_marked_bottom_begin
iterator to the first marked bottom state of the block
void swap_out(pred_iter_t const pos1, pred_iter_t const pos2)
state_type size() const
provides the number of states in the block
void init_transitions(part_state_t &part_st, part_trans_t &part_tr, bool branching, bool preserve_divergence)
initialise the state in part_st and the transitions in part_tr
permutation_iter_t int_begin
iterator to the first state in the constellation
succ_iter_t int_current_constln
iterator to first outgoing transition to the constellation of interest
block_t * split_off_blue(permutation_iter_t blue_nonbottom_end)
refine the block (the blue subblock is smaller)
permutation_iter_t int_bottom_begin
iterator to the first bottom state of the block
permutation_const_iter_t marked_bottom_end() const
iterator past the last marked bottom state in the block
void set_slice_begin_or_before_end(succ_iter_t new_value)
state_type notblue
number of inert transitions to non-blue states
permutation_const_iter_t marked_nonbottom_end() const
iterator one past the last marked non-bottom state in the block
check_complexity::state_counter_t work_counter
const state_type sort_key
sort key to order constellation-related information
state_type marked_bottom_size() const
provides the number of marked bottom states in the block
bool is_trivial() const
returns true iff the constellation is trivial
permutation_iter_t int_marked_nonbottom_begin
iterator to the first marked non-bottom state of the block
void make_noninert(succ_iter_t const succ_iter)
permutation_iter_t int_end
iterator past the last state of the block
B_to_C_desc_list to_constln
list of B_to_C with transitions from this block
state_type get_nr_of_states() const
provides the number of states in the Kripke structure
static block_t * get_some_refinable()
provides an arbitrary refinable block
static succ_iter_t slice_end(succ_iter_t this_)
block_t * block
block where the state belongs
void create_initial_partition_gjkw(bool branching, bool preserve_divergence)
const constln_t * get_nontrivial_next() const
provides the next non-trivial constellation
void set_constln(constln_t *new_constln)
void set_marked_nonbottom_begin(permutation_iter_t new_marked_nonbottom_begin)
#define BLOCK_NO_SEQNR
static permutation_const_iter_t perm_begin
bool operator<(const constln_t &other) const
compares two constellations for ordering them
bool make_refinable()
makes a block refinable (i. e. inserts it into the respective list)
fixed_vector< state_info_entry > state_info
array with all other information about states
state_type state_size() const
provide size of state space
state_type size() const
returns number of states in the constellation
B_to_C_const_iter_t inert_end() const
iterator past the last inert transition of the block
const constln_t * constln() const
constellation where the block belongs to
constln_t * int_constln
constellation to which the block belongs
permutation_const_iter_t bottom_end() const
iterator past the last bottom state in the block
static block_t * refinable_first
first block in the list of refinable blocks
static void slice_add_work_to_transns(succ_const_iter_t this_, enum check_complexity::counter_type ctr, unsigned max_value)
void swap_in(B_to_C_iter_t const pos1, B_to_C_iter_t const pos2)
state_type int_seqnr
unique sequence number of this block
succ_const_iter_t succ_begin() const
iterator to first outgoing transition
bool operator<=(const constln_t &other) const
void new_red_block_created(block_t *OldB, block_t *NewB, bool postprocessing)
handle B_to_C slices after a new red block has been created
void set_end(permutation_iter_t new_end)
void print_trans() const
print all transitions
bool is_refinable() const
checks whether the block is refinable
block_t * split_off_red(permutation_iter_t red_nonbottom_begin)
refine the block (the red subblock is smaller)
succ_iter_t int_slice_begin_or_before_end
points to the last or the first transition to the same constellation
succ_const_iter_t inert_succ_begin() const
iterator to first inert outgoing transition
permutation_const_iter_t begin() const
constant iterator to the first state in the constellation
pred_iter_t state_in_begin
iterator to first incoming transition
permutation_iter_t int_begin
iterator to the first state of the block
pred_iter_t state_inert_in_begin
iterator to first inert incoming transition
void assign_seqnr()
assigns a unique sequence number
std::unordered_map< Key, state_type, KeyHasher > extra_kripke_states
void new_blue_block_created(block_t *OldB, block_t *NewB)
handle B_to_C slices after a new blue block has been created
permutation_iter_t begin()
iterator to the first state in the constellation
static state_info_const_ptr s_i_begin
pointer at the first entry in the state_info array
check_complexity::B_to_C_counter_t work_counter
static constln_t * get_some_nontrivial()
provides an arbitrary non-trivial constellation
permutation_const_iter_t unmarked_bottom_end() const
iterator past the last unmarked bottom state in the block
bool operator<(const block_t &other) const
compares two blocks for ordering them
void set_bottom_begin(permutation_iter_t new_bottom_begin)
void set_nonbottom_end(permutation_iter_t new_nonbottom_end)
std::string debug_id() const
print a state identification for debugging
void set_inert_pred_begin(pred_iter_t new_inert_in_begin)
void clear()
deallocates constellations and blocks
constln_t(state_type sort_key_, permutation_iter_t begin_, permutation_iter_t end_, B_to_C_iter_t postprocess_none)
constructor
void set_inert_succ_begin_and_end(succ_iter_t new_inert_out_begin, succ_iter_t new_inert_out_end)
void swap3_B_to_C(succ_iter_t const pos1, succ_iter_t const pos2, succ_iter_t const pos3)
block_t(constln_t *const constln_, permutation_iter_t const begin_, permutation_iter_t const end_)
constructor
const block_t * block(state_type s) const
find block of a state
succ_const_iter_t inert_succ_end() const
iterator past the last inert outgoing transition
permutation_iter_t end()
iterator past the last state in the constellation
succ_const_iter_t slice_begin_or_before_end() const
check_complexity::block_counter_t work_counter
bisim_partitioner_gjkw_initialise_helper(LTS_TYPE &l, bool branching, bool preserve_divergence)
constructor of the helper class
succ_iter_t state_out_begin
iterator to first outgoing transition
pred_const_iter_t inert_pred_begin() const
iterator to first inert incoming transition
std::string debug_id() const
print a transition identification for debugging
B_to_C_iter_t int_inert_begin
iterator to the first inert transition of the block
void set_unmarked_bottom_end(permutation_iter_t new_unmarked_bottom_end)
pred_const_iter_t noninert_pred_end() const
iterator past the last non-inert incoming transition
void set_inert_end(B_to_C_iter_t new_inert_end)
pred_const_iter_t pred_end() const
iterator past the last incoming transition
constln_t * nontrivial_next
next constellation in the list of non-trivial constellations
bool in_same_class(state_type s, state_type t) const
B_to_C_iter_t int_inert_end
iterator past the last inert transition of the block
static state_info_const_ptr s_i_end
pointer past the last actual entry in the state_info array
permutation_const_iter_t unmarked_nonbottom_begin() const
iterator to the first unmarked non-bottom state in the block
void set_end(permutation_iter_t new_end)
set the iterator past the last state in the constellation
permutation_const_iter_t nonbottom_end() const
iterator past the last non-bottom state in the block
succ_const_iter_t succ_end() const
iterator past the last outgoing transition
void set_unmarked_nonbottom_end(permutation_iter_t new_unmarked_nonbottom_end)
B_to_C_descriptor * FromRed(const constln_t *SpC)
read FromRed
std::string debug_id_short() const
print a short transition identification for debugging
permutation_const_iter_t unmarked_nonbottom_end() const
iterator past the last unmarked non-bottom state in the block
void print_block(const char *message, const block_t *B, permutation_const_iter_t begin, permutation_const_iter_t end) const
print a slice of the partition (typically a block)
state_type marked_size() const
provides the number of marked states in the block
B_to_C_iter_t postprocess_end
iterator past the last transition into this constellation that needs postprocessing
trans_type get_nr_of_transitions() const
provides the number of transitions in the Kripke structure
void print_part(const part_trans_t &part_tr) const
print the partition as a tree (per constellation and block)
permutation_iter_t int_end
iterator past the last state in the constellation
void set_current_constln(succ_iter_t const new_current_constln)
void set_inert_succ_begin(succ_iter_t const new_inert_out_begin)
bool mark(state_info_ptr s)
mark a state
succ_iter_t state_inert_out_begin
iterator to first inert outgoing transition
pred_const_iter_t pred_begin() const
iterator to first incoming transition
bool surely_has_transition_to(const constln_t *SpC) const
void set_begin(permutation_iter_t new_begin)
set the iterator to the first state in the constellation
fixed_vector< permutation_entry > permutation_t
iterator_or_null_t< block_bunch_slice_t > block_bunch_slice_iter_or_null_t
simple_list< block_bunch_slice_t >::iterator block_bunch_slice_iter_t
simple_list< block_bunch_slice_t >::const_iterator block_bunch_slice_const_iter_t
bunch_t * split_off_small_action_block_slice(part_trans_t &part_tr)
split off a single action_block-slice from the bunch
succ_entry * out_slice_begin(ONLY_IF_DEBUG(const fixed_vector< succ_entry > &succ))
find the beginning of the out-slice
block_t * split_off_block(enum new_block_mode_t new_block_mode, ONLY_IF_DEBUG(const bisim_partitioner_dnj< LTS_TYPE > &partitioner,) state_type new_seqnr)
refine a block
static void add_work_to_out_slice(const bisim_partitioner_dnj< LTS_TYPE > &partitioner, const succ_entry *out_slice_begin, enum check_complexity::counter_type ctr, unsigned max_value)
assign work to the transitions in an out-slice (i.e. the transitions from one state in a specific bun...
bunch_t * bunch() const
find the bunch of the transition
#define PRINT_SG_PL(counter, sg_string, pl_string)
#define ONLY_IF_DEBUG(...)
include something in Debug mode
#define PRINT_INT_PERCENTAGE(num, denom)
#define INIT_WITHOUT_BLC_SETS
#define min_above_pivot
#define abort_if_non_bottom_size_too_large_NewBotSt(i)
#define bottom_size(coroutine)
#define linked_list
#define new_start_bottom_states(idx)
#define new_end_bottom_states(idx)
#define abort_if_size_too_large(coroutine, i)
#define non_bottom_states_NewBotSt
#define new_end_bottom_states_NewBotSt
#define abort_if_bottom_size_too_large(coroutine)
#define max_below_pivot
#define bottom_and_non_bottom_size(coroutine)
#define LIST_END
Definition liblts_sim.h:157
#define UNIVERSAL_PART
Definition liblts_sim.h:158
#define mCRL2log(LEVEL)
mCRL2log(LEVEL) provides the stream used to log.
Definition logger.h:391
#define BRANCH_BIS_EXPERIMENT_JFG
global_function_symbol g_tree_node("@node@", 2)
global_function_symbol g_empty("@empty@", 0)
global_function_symbol g_single_tree_node("@single_node@", 1)
The main namespace for the aterm++ library.
Definition algorithm.h:21
term_balanced_tree< aterm > aterm_balanced_tree
A term_balanced_tree with elements of type aterm.
void make_term_balanced_tree(term_balanced_tree< Term > &result, ForwardTraversalIterator p, const std::size_t size, Transformer transformer)
bool is_aterm_balanced_tree(const aterm &t)
void make_exists(atermpp::aterm &t, const ARGUMENTS &... args)
std::vector< action_formula > action_formula_vector
\brief vector of action_formulas
bool is_at(const atermpp::aterm &x)
void swap(multi_action &t1, multi_action &t2)
\brief swap overload
atermpp::term_list< action_formula > action_formula_list
\brief list of action_formulas
void swap(true_ &t1, true_ &t2)
\brief swap overload
std::string pp(const action_formulas::action_formula &x)
void swap(false_ &t1, false_ &t2)
\brief swap overload
void make_not_(atermpp::aterm &t, const ARGUMENTS &... args)
std::string pp(const action_formulas::exists &x)
void swap(action_formula &t1, action_formula &t2)
\brief swap overload
std::string pp(const action_formulas::and_ &x)
std::set< data::variable > find_all_variables(const action_formulas::action_formula &x)
std::string pp(const action_formulas::at &x)
void swap(not_ &t1, not_ &t2)
\brief swap overload
bool is_or(const atermpp::aterm &x)
void swap(exists &t1, exists &t2)
\brief swap overload
bool is_true(const atermpp::aterm &x)
bool is_forall(const atermpp::aterm &x)
std::string pp(const action_formulas::imp &x)
void make_and_(atermpp::aterm &t, const ARGUMENTS &... args)
bool is_false(const atermpp::aterm &x)
bool is_not(const atermpp::aterm &x)
std::string pp(const action_formulas::multi_action &x)
std::string pp(const action_formulas::or_ &x)
void make_imp(atermpp::aterm &t, const ARGUMENTS &... args)
std::string pp(const action_formulas::forall &x)
bool is_imp(const atermpp::aterm &x)
bool is_and(const atermpp::aterm &x)
void make_forall(atermpp::aterm &t, const ARGUMENTS &... args)
void swap(at &t1, at &t2)
\brief swap overload
void swap(imp &t1, imp &t2)
\brief swap overload
void make_or_(atermpp::aterm &t, const ARGUMENTS &... args)
void swap(forall &t1, forall &t2)
\brief swap overload
std::string pp(const action_formulas::not_ &x)
std::string pp(const action_formulas::false_ &x)
void make_multi_action(atermpp::aterm &t, const ARGUMENTS &... args)
void swap(or_ &t1, or_ &t2)
\brief swap overload
bool is_multi_action(const atermpp::aterm &x)
void swap(and_ &t1, and_ &t2)
\brief swap overload
std::string pp(const action_formulas::true_ &x)
void make_at(atermpp::aterm &t, const ARGUMENTS &... args)
bool is_exists(const atermpp::aterm &x)
bool is_action_formula(const atermpp::aterm &x)
const atermpp::function_symbol & function_symbol_StateImp()
const atermpp::function_symbol & function_symbol_StateMinus()
const atermpp::function_symbol & function_symbol_ActForall()
const atermpp::function_symbol & function_symbol_StateForall()
const atermpp::function_symbol & function_symbol_StateYaledTimed()
const atermpp::function_symbol & function_symbol_RegSeq()
const atermpp::function_symbol & function_symbol_StateNu()
const atermpp::function_symbol & function_symbol_StateConstantMultiplyAlt()
const atermpp::function_symbol & function_symbol_StateExists()
const atermpp::function_symbol & function_symbol_StateVar()
const atermpp::function_symbol & function_symbol_ActMultAct()
const atermpp::function_symbol & function_symbol_StateNot()
const atermpp::function_symbol & function_symbol_ActImp()
const atermpp::function_symbol & function_symbol_StateSum()
const atermpp::function_symbol & function_symbol_ActAt()
const atermpp::function_symbol & function_symbol_StateMu()
const atermpp::function_symbol & function_symbol_RegTransOrNil()
const atermpp::function_symbol & function_symbol_StateMay()
const atermpp::function_symbol & function_symbol_StatePlus()
const atermpp::function_symbol & function_symbol_RegTrans()
const atermpp::function_symbol & function_symbol_RegAlt()
const atermpp::function_symbol & function_symbol_ActAnd()
const atermpp::function_symbol & function_symbol_StateDelayTimed()
const atermpp::function_symbol & function_symbol_StateConstantMultiply()
const atermpp::function_symbol & function_symbol_StateOr()
const atermpp::function_symbol & function_symbol_ActOr()
const atermpp::function_symbol & function_symbol_StateAnd()
const atermpp::function_symbol & function_symbol_StateInfimum()
const atermpp::function_symbol & function_symbol_ActNot()
const atermpp::function_symbol & function_symbol_ActExists()
const atermpp::function_symbol & function_symbol_UntypedRegFrm()
const atermpp::function_symbol & function_symbol_StateSupremum()
const atermpp::function_symbol & function_symbol_StateMust()
atermpp::aterm_string identifier_string
String type of the LPS library. Identifier strings are represented internally as ATerms.
static data_specification const & default_specification()
Definition parse.h:31
Namespace for system defined sort bool_.
Definition bool.h:32
const function_symbol & false_()
Constructor for function symbol false.
Definition bool.h:109
const function_symbol & true_()
Constructor for function symbol true.
Definition bool.h:77
Namespace for system defined sort int_.
application cint(const data_expression &arg0)
Application of function symbol @cInt.
Definition int1.h:104
const basic_sort & int_()
Constructor for sort expression Int.
Definition int1.h:47
Namespace for system defined sort nat.
const basic_sort & nat()
Constructor for sort expression Nat.
Definition nat1.h:46
application cnat(const data_expression &arg0)
Application of function symbol @cNat.
Definition nat1.h:164
data_expression nat(const std::string &n)
Constructs expression of type Nat from a string.
Namespace for system defined sort pos.
const function_symbol & c1()
Constructor for function symbol @c1.
Definition pos1.h:78
data_expression pos(const std::string &n)
Constructs expression of type Pos from a string.
const basic_sort & pos()
Constructor for sort expression Pos.
Definition pos1.h:45
Namespace for system defined sort real_.
data_expression & real_one()
application creal(const data_expression &arg0, const data_expression &arg1)
Application of function symbol @cReal.
Definition real1.h:132
data_expression & real_zero()
const basic_sort & real_()
Constructor for sort expression Real.
Definition real1.h:48
application plus(const data_expression &arg0, const data_expression &arg1)
Application of function symbol +.
Definition real1.h:1115
application minus(const data_expression &arg0, const data_expression &arg1)
Application of function symbol -.
Definition real1.h:1200
Namespace for all data library functionality.
Definition data.cpp:22
bool is_data_expression(const atermpp::aterm &x)
Test for a data_expression expression.
application less(const data_expression &arg0, const data_expression &arg1)
Application of function symbol <.
Definition standard.h:258
atermpp::term_list< data_expression > data_expression_list
\brief list of data_expressions
bool is_untyped_data_parameter(const atermpp::aterm &x)
atermpp::term_list< variable > variable_list
\brief list of variables
atermpp::term_list< assignment > assignment_list
\brief list of assignments
Definition assignment.h:146
application equal_to(const data_expression &arg0, const data_expression &arg1)
Application of function symbol ==.
Definition standard.h:144
@ warning
Definition logger.h:34
@ verbose
Definition logger.h:37
bool mCRL2logEnabled(const log_level_t level)
Definition logger.h:383
multi_action complete_multi_action(process::untyped_multi_action &x, const process::action_label_list &action_decls, const data::data_specification &data_spec=data::detail::default_specification())
Definition lps.cpp:132
void remove_common_divisor(std::size_t &enumerator, std::size_t &denominator)
void complete_action_rename_specification(action_rename_specification &x, const lps::stochastic_specification &spec)
Definition lps.cpp:150
multi_action complete_multi_action(process::untyped_multi_action &x, multi_action_type_checker &typechecker, const data::data_specification &data_spec=data::detail::default_specification())
Definition lps.cpp:124
std::size_t greatest_common_divisor(std::size_t x, std::size_t y)
The main namespace for the LPS library.
Definition constelm.h:21
void complete_data_specification(stochastic_specification &spec)
Adds all sorts that appear in the process of l to the data specification of l.
void parse_lps(std::istream &, Specification &)
Definition parse.h:159
void complete_data_specification(specification &spec)
Adds all sorts that appear in the process of l to the data specification of l.
atermpp::term_balanced_tree< data::data_expression > state
Definition state.h:24
std::string pp(const probabilistic_data_expression &l)
multi_action parse_multi_action(std::stringstream &in, multi_action_type_checker &typechecker, const data::data_specification &data_spec=data::detail::default_specification())
Parses a multi_action from an input stream.
Definition parse.h:56
action_rename_specification parse_action_rename_specification(std::istream &in, const lps::stochastic_specification &spec)
Parses a process specification from an input stream.
Definition parse.h:94
multi_action parse_multi_action(std::stringstream &in, const process::action_label_list &action_decls, const data::data_specification &data_spec=data::detail::default_specification())
Parses a multi_action from an input stream.
Definition parse.h:42
void parse_lps< specification >(std::istream &from, specification &result)
Definition parse.h:166
void make_state(state &result, ForwardTraversalIterator p, const std::size_t size)
Definition state.h:37
void parse_lps< stochastic_specification >(std::istream &from, stochastic_specification &result)
Parses a stochastic linear process specification from an input stream.
Definition parse.h:183
std::string pp(const lps::state &x)
Definition state.h:49
specification parse_linear_process_specification(std::istream &spec_stream)
Parses a linear process specification from an input stream.
Definition parse.h:128
void make_state(state &result, ForwardTraversalIterator p, const std::size_t size, Transformer transformer)
Definition state.h:27
static void finalise_U_is_smaller(const block_t *const block_U, const block_t *const block_R, const bisim_partitioner_dnj< LTS_TYPE > &partitioner)
moves temporary work counters to normal ones if the U-block is smaller
static void finalise_R_is_smaller(const block_t *const block_U, const block_t *const block_R, const bisim_partitioner_dnj< LTS_TYPE > &partitioner)
moves temporary work counters to normal ones if the R-block is smaller
const state_info_entry * state_info_const_ptr
fixed_vector< pred_entry >::iterator pred_iter_t
fixed_vector< succ_entry >::const_iterator succ_const_iter_t
permutation_t::iterator permutation_iter_t
fixed_vector< pred_entry >::const_iterator pred_const_iter_t
fixed_vector< state_info_ptr > permutation_t
permutation_t::const_iterator permutation_const_iter_t
std::list< B_to_C_descriptor > B_to_C_desc_list
B_to_C_desc_list::const_iterator B_to_C_desc_const_iter_t
B_to_C_desc_list::iterator B_to_C_desc_iter_t
fixed_vector< B_to_C_entry >::iterator B_to_C_iter_t
fixed_vector< succ_entry >::iterator succ_iter_t
fixed_vector< B_to_C_entry >::const_iterator B_to_C_const_iter_t
static void swap_permutation(permutation_iter_t s1, permutation_iter_t s2)
swap two permutations
constexpr constellation_type * null_constellation
constexpr transition_index undefined
default counter value if the counter field of a state is not in use currently
fixed_vector< outgoing_transition_type >::const_iterator outgoing_transitions_const_it
fixed_vector< outgoing_transition_type >::iterator outgoing_transitions_it
constexpr transition_index marked_NewBotSt
counter value to indicate that a state is in the NewBotSt subset
const transition_index * BLC_list_const_iterator
constexpr transition_index marked_range
the number of counter values that can be used for one subblock
static void clear(CONTAINER &c)
static constexpr bool is_in_marked_range_of(transition_index counter, enum subblocks subblock)
checks whether a counter value is a marking for a given subblock
constexpr transition_index null_transition
constexpr transition_index marked_HitSmall
static constexpr transition_index marked(enum subblocks subblock)
base marking value for a subblock
A base class for the lts_dot labelled transition system.
bool bisimulation_compare(const LTS_TYPE &l1, const LTS_TYPE &l2, const bool branching=false, const bool preserve_divergences=false, const bool generate_counter_examples=false, const std::string &counter_example_file="", const bool structured_output=false)
Checks whether the two initial states of two lts's are strong or branching bisimilar.
void merge(LTS_TYPE &l1, const LTS_TYPE &l2)
std::string supported_lts_formats_text(lts_type default_format, const std::set< lts_type > &supported)
Gives a textual list describing supported LTS formats.
Definition liblts.cpp:153
bool destructive_branching_bisimulation_compare_minimal_depth(LTS_TYPE &l1, LTS_TYPE &l2, const std::string &counter_example_file)
static std::string mime_type_strings[]
Definition liblts.cpp:85
std::string supported_lts_formats_text(const std::set< lts_type > &supported)
Gives a textual list describing supported LTS formats.
Definition liblts.cpp:185
void weak_bisimulation_reduce(LTS_TYPE &l, const bool preserve_divergences=false)
Reduce LTS l with respect to (divergence-preserving) weak bisimulation.
bool destructive_bisimulation_compare_minimal_depth(LTS_TYPE &l1, LTS_TYPE &l2, const std::string &counter_example_file)
std::size_t state_type
type used to store state (numbers and) counts
void bisimulation_reduce(LTS_TYPE &l, const bool branching=false, const bool preserve_divergences=false)
Reduce transition system l with respect to strong or (divergence preserving) branching bisimulation.
std::string extension_for_type(const lts_type type)
Gives the filename extension associated with an LTS format.
Definition liblts.cpp:118
void unmark_explicit_divergence_transitions(LTS_TYPE &l, const std::size_t divergent_transition_label)
bool bisimulation_compare_gj(const LTS_TYPE &l1, const LTS_TYPE &l2, const bool branching=false, const bool preserve_divergence=false)
Checks whether the two initial states of two LTSs are strong or (divergence-preserving) branching bis...
std::map< std::size_t, std::set< typename lts< STATE_LABEL_T, ACTION_LABEL_T, LTS_BASE_CLASS >::states_size_type > > calculate_non_reflexive_transitive_tau_closure(lts< STATE_LABEL_T, ACTION_LABEL_T, LTS_BASE_CLASS > &l, const bool forward)
This procedure calculates the transitive tau closure as a separate vector of transitions,...
std::string string_for_type(const lts_type type)
Gives a string representation of an LTS format.
Definition liblts.cpp:113
bool weak_bisimulation_compare(const LTS_TYPE &l1, const LTS_TYPE &l2, const bool preserve_divergences=false)
Checks whether the initial states of two LTSs are weakly bisimilar.
lts_type parse_format(std::string const &s)
Determines the LTS format from a format specification string.
Definition liblts.cpp:92
bool destructive_bisimulation_compare(LTS_TYPE &l1, LTS_TYPE &l2, const bool branching=false, const bool preserve_divergences=false, const bool generate_counter_examples=false, const std::string &counter_example_file="", const bool structured_output=false)
Checks whether the two initial states of two lts's are strong or branching bisimilar.
static std::string type_desc_strings[]
Definition liblts.cpp:75
void add_an_action_loop_to_each_state(LTS_TYPE &l, std::size_t action)
LABEL_TYPE make_divergence_label(const std::string &s)
const std::set< lts_type > & supported_lts_formats()
Gives the set of all supported LTS formats.
Definition liblts.cpp:140
bool destructive_bisimulation_compare_gj(LTS_TYPE &l1, LTS_TYPE &l2, const bool branching=false, const bool preserve_divergence=false, const bool generate_counter_examples=false, const std::string &="", bool=false)
Checks whether the two initial states of two LTSs are strong or (divergence-preserving) branching bis...
std::size_t label_type
type used to store label numbers and counts
std::size_t trans_type
type used to store transition (numbers and) counts
std::string lts_extensions_as_string(const std::set< lts_type > &supported)
Gives a list of extensions for supported LTS formats.
Definition liblts.cpp:220
static const std::string type_strings[]
Definition liblts.cpp:71
bool lts_named_cmp(const std::string N[], T a, T b)
Definition liblts.cpp:148
std::string lts_extensions_as_string(const std::string &sep, const std::set< lts_type > &supported)
Gives a list of extensions for supported LTS formats.
Definition liblts.cpp:190
std::size_t mark_explicit_divergence_transitions(LTS_TYPE &l)
lts_type guess_format(std::string const &s, const bool be_verbose)
Determines the LTS format from a filename by its extension.
Definition liblts.cpp:26
bool destructive_weak_bisimulation_compare(LTS_TYPE &l1, LTS_TYPE &l2, const bool preserve_divergences=false)
Checks whether the initial states of two LTSs are weakly bisimilar.
void remove_redundant_transitions(lts< STATE_LABEL_T, ACTION_LABEL_T, LTS_BASE_CLASS > &l)
Removes each transition s-a->s' if also transitions s-a->-tau->s' or s-tau->-a->s' are present....
void bisimulation_reduce_gj(LTS_TYPE &l, const bool branching=false, const bool preserve_divergence=false)
nonmember functions serving as interface with the rest of mCRL2
void reflexive_transitive_tau_closure(lts< STATE_LABEL_T, ACTION_LABEL_T, LTS_BASE_CLASS > &l)
static const std::string extension_strings[]
Definition liblts.cpp:73
void get_trans(const outgoing_transitions_per_state_t &begin, tree_set_store &tss, std::size_t d, std::vector< transition > &d_trans, LTS_TYPE &aut)
std::size_t apply_hidden_labels(const std::size_t n, const std::set< std::size_t > &hidden_action_set)
Definition transition.h:25
void tau_star_reduce(lts< STATE_LABEL_T, ACTION_LABEL_T, LTS_BASE_CLASS > &l)
std::string mime_type_for_type(const lts_type type)
Gives the MIME type associated with an LTS format.
Definition liblts.cpp:123
static const std::set< lts_type > & initialise_supported_lts_formats()
Definition liblts.cpp:128
The main LTS namespace.
std::size_t label(const outgoing_transitions_per_state_action_t::const_iterator &i)
Label of an iterator exploring transitions per outgoing state and action.
std::string pp(const state_label_dot &l)
Pretty print function for a state_label_dot. Only prints the label field.
Definition lts_dot.h:101
lts_equivalence
LTS equivalence relations.
@ lts_eq_branching_bisim_sigref
@ lts_eq_divergence_preserving_weak_bisim
@ lts_eq_branching_bisim_gjkw
@ lts_eq_branching_bisim_gv
@ lts_eq_divergence_preserving_branching_bisim_sigref
@ lts_eq_divergence_preserving_branching_bisim
@ lts_eq_branching_bisim_gj
@ lts_eq_divergence_preserving_branching_bisim_gjkw
@ lts_eq_divergence_preserving_branching_bisim_gv
@ lts_eq_divergence_preserving_branching_bisim_gj
std::string pp(const state_label_lts &label)
Pretty print a state value of this LTS.
Definition lts_lts.h:108
bool is_deterministic(const LTS_TYPE &l)
Checks whether this LTS is deterministic.
lts_type
The enumerated type lts_type contains an index for every type type of labelled transition system that...
Definition lts_type.h:37
@ lts_fsm_probabilistic
Definition lts_type.h:45
@ lts_type_min
Definition lts_type.h:46
@ lts_lts_probabilistic
Definition lts_type.h:43
@ lts_aut_probabilistic
Definition lts_type.h:44
@ lts_type_max
Definition lts_type.h:47
bool destructive_compare(LTS_TYPE &l1, LTS_TYPE &l2, const lts_preorder pre, const bool generate_counter_example, const std::string &counter_example_file="", const bool structured_output=false, const lps::exploration_strategy strategy=lps::es_breadth, const bool preprocess=true)
Checks whether this LTS is smaller than another LTS according to a preorder.
transition_sort_style
Transition sort styles.
Definition transition.h:35
std::multimap< std::pair< transition::size_type, transition::size_type >, transition::size_type > outgoing_transitions_per_state_action_t
Type for exploring transitions per state and action.
std::string pp(const state_label_empty &)
outgoing_transitions_per_state_action_t transitions_per_outgoing_state_action_pair_reversed(const std::vector< transition > &trans)
Provide the transitions as a multimap accessible per from state and label, ordered backwardly.
lts_preorder
LTS preorder relations.
void group_transitions_on_label_tgt(std::vector< transition > &transitions, const std::size_t number_of_labels, const std::size_t tau_label_index, const std::size_t number_of_states)
static std::vector< std::size_t > bogus_todo_stack
void group_transitions_on_label(std::vector< transition > &transitions, std::function< std::size_t(const transition &)> get_label, const std::size_t number_of_labels, const std::size_t tau_label_index)
std::size_t to(const outgoing_pair_t &p)
Target state of a label state pair.
std::string pp(const state_label_fsm &label)
Pretty print an fsm state label.
Definition lts_fsm.h:78
outgoing_transitions_per_state_action_t transitions_per_outgoing_state_action_pair(const std::vector< transition > &trans)
Provide the transitions as a multimap accessible per from state and label.
std::size_t to(const outgoing_transitions_per_state_action_t::const_iterator &i)
To state of an iterator exploring transitions per outgoing state and action.
void sort_transitions(std::vector< transition > &transitions, const std::set< transition::size_type > &hidden_label_set, transition_sort_style ts=src_lbl_tgt)
Sorts the transitions using a sort style.
void sort_transitions(std::vector< transition > &transitions, transition_sort_style ts=src_lbl_tgt)
Sorts the transitions using a sort style.
void determinise(LTS_TYPE &l)
Determinises this LTS.
void group_transitions_on_tgt_label(std::vector< transition > &transitions, const std::size_t number_of_labels, const std::size_t tau_label_index, const std::size_t number_of_states)
std::string pp(const probabilistic_state< STATE, PROBABILITY > &l)
void reduce(LTS_TYPE &l, lts_equivalence eq)
Applies a reduction algorithm to this LTS.
detail::indexed_sorted_vector_for_transitions< outgoing_pair_t > outgoing_transitions_per_state_t
void group_transitions_on_tgt_label(LTS_TYPE &aut)
outgoing_transitions_per_state_action_t transitions_per_outgoing_state_action_pair_reversed(const std::vector< transition > &trans, const std::set< transition::size_type > &hide_label_set)
Provide the transitions as a multimap accessible per from state and label, ordered backwardly.
bool destructive_compare(LTS_TYPE &l1, LTS_TYPE &l2, const lts_equivalence eq, const bool generate_counter_examples=false, const std::string &counter_example_file=std::string(), const bool structured_output=false)
Checks whether this LTS is equivalent to another LTS.
std::string ptr(const transition t)
Sorts the transitions on labels. Action with the tau label are put first.
std::string pp(const action_label_lts &l)
Print the action label to string.
Definition lts_lts.h:202
outgoing_transitions_per_state_action_t transitions_per_outgoing_state_action_pair(const std::vector< transition > &trans, const std::set< transition::size_type > &hide_label_set)
Provide the transitions as a multimap accessible per from state and label.
void merge(LTS_TYPE &l1, const LTS_TYPE &l2)
Merge the second lts into the first lts.
bool reachability_check(lts< SL, AL, BASE > &l, bool remove_unreachable=false)
Checks whether all states in this LTS are reachable from the initial state and remove unreachable sta...
std::size_t label(const outgoing_pair_t &p)
Label of a pair of a label and target state.
std::size_t from(const outgoing_transitions_per_state_action_t::const_iterator &i)
From state of an iterator exploring transitions per outgoing state and action.
void scc_reduce(LTS_TYPE &l, const bool preserve_divergence_loops=false)
Definition liblts_scc.h:394
void group_transitions_on_label(const std::vector< transition >::iterator begin, const std::vector< transition >::iterator end, std::function< std::size_t(const transition &)> get_label, std::vector< std::pair< std::size_t, std::size_t > > &count_sum_transitions_per_action, const std::size_t tau_label_index=0, std::vector< std::size_t > &todo_stack=bogus_todo_stack)
static const std::size_t const_tau_label_index
Definition transition.h:28
bool reachability_check(probabilistic_lts< SL, AL, PROBABILISTIC_STATE, BASE > &l, bool remove_unreachable=false)
Checks whether all states in a probabilistic LTS are reachable from the initial state and remove unre...
std::pair< transition::size_type, transition::size_type > outgoing_pair_t
Type for exploring transitions per state.
bool compare(const LTS_TYPE &l1, const LTS_TYPE &l2, const lts_preorder pre, const bool generate_counter_example, const std::string &counter_example_file="", const bool structured_output=false, const lps::exploration_strategy strategy=lps::es_breadth, const bool preprocess=true)
Checks whether this LTS is smaller than another LTS according to a preorder.
std::string pp(const action_label_string &l)
bool compare(const LTS_TYPE &l1, const LTS_TYPE &l2, const lts_equivalence eq, const bool generate_counter_examples=false, const std::string &counter_example_file="", const bool structured_output=false)
Checks whether this LTS is equivalent to another LTS.
The main namespace for the Process library.
bool is_linear(const process_specification &p, bool verbose=false)
Returns true if the process specification is linear.
Definition is_linear.h:347
atermpp::term_list< action_label > action_label_list
\brief list of action_labels
std::vector< action > action_vector
\brief vector of actions
atermpp::term_list< action > action_list
\brief list of actions
bool is_untyped_multi_action(const atermpp::aterm &x)
process_specification parse_process_specification(std::istream &in)
Parses a process specification from an input stream.
Definition parse.h:43
std::string pp(const regular_formulas::regular_formula &x)
bool is_alt(const atermpp::aterm &x)
bool is_untyped_regular_formula(const atermpp::aterm &x)
void make_trans(atermpp::aterm &t, const ARGUMENTS &... args)
void make_seq(atermpp::aterm &t, const ARGUMENTS &... args)
void make_trans_or_nil(atermpp::aterm &t, const ARGUMENTS &... args)
bool is_trans(const atermpp::aterm &x)
void swap(alt &t1, alt &t2)
\brief swap overload
std::string pp(const regular_formulas::seq &x)
void make_alt(atermpp::aterm &t, const ARGUMENTS &... args)
void make_untyped_regular_formula(atermpp::aterm &t, const ARGUMENTS &... args)
bool is_trans_or_nil(const atermpp::aterm &x)
bool is_regular_formula(const atermpp::aterm &x)
void swap(trans &t1, trans &t2)
\brief swap overload
bool is_seq(const atermpp::aterm &x)
std::string pp(const regular_formulas::alt &x)
std::vector< regular_formula > regular_formula_vector
\brief vector of regular_formulas
void swap(untyped_regular_formula &t1, untyped_regular_formula &t2)
\brief swap overload
std::string pp(const regular_formulas::untyped_regular_formula &x)
atermpp::term_list< regular_formula > regular_formula_list
\brief list of regular_formulas
void swap(seq &t1, seq &t2)
\brief swap overload
std::string pp(const regular_formulas::trans_or_nil &x)
void swap(regular_formula &t1, regular_formula &t2)
\brief swap overload
std::string pp(const regular_formulas::trans &x)
void swap(trans_or_nil &t1, trans_or_nil &t2)
\brief swap overload
bool is_timed(const state_formula &x)
bool is_infimum(const atermpp::aterm &x)
std::string pp(const state_formulas::or_ &x)
std::string pp(const state_formulas::plus &x)
void swap(nu &t1, nu &t2)
\brief swap overload
bool is_and(const atermpp::aterm &x)
std::string pp(const state_formulas::yaled_timed &x)
std::string pp(const state_formulas::may &x)
bool is_delay_timed(const atermpp::aterm &x)
bool is_const_multiply(const atermpp::aterm &x)
std::string pp(const state_formulas::must &x)
void swap(const_multiply &t1, const_multiply &t2)
\brief swap overload
bool is_minus(const atermpp::aterm &x)
std::string pp(const state_formulas::not_ &x)
void make_imp(atermpp::aterm &t, const ARGUMENTS &... args)
atermpp::term_list< state_formula > state_formula_list
\brief list of state_formulas
bool is_exists(const atermpp::aterm &x)
std::string pp(const state_formulas::delay &x)
bool is_not(const atermpp::aterm &x)
void swap(and_ &t1, and_ &t2)
\brief swap overload
bool is_state_formula(const atermpp::aterm &x)
void make_const_multiply(atermpp::aterm &t, const ARGUMENTS &... args)
void make_exists(atermpp::aterm &t, const ARGUMENTS &... args)
void swap(yaled_timed &t1, yaled_timed &t2)
\brief swap overload
bool is_supremum(const atermpp::aterm &x)
bool is_must(const atermpp::aterm &x)
std::set< data::variable > find_all_variables(const state_formulas::state_formula &x)
bool is_yaled(const atermpp::aterm &x)
std::string pp(const state_formulas::const_multiply &x)
void swap(infimum &t1, infimum &t2)
\brief swap overload
void make_and_(atermpp::aterm &t, const ARGUMENTS &... args)
std::string pp(const state_formulas::exists &x)
std::string pp(const state_formulas::const_multiply_alt &x)
std::set< data::variable > find_free_variables(const state_formulas::state_formula &x)
void swap(imp &t1, imp &t2)
\brief swap overload
bool is_true(const atermpp::aterm &x)
void swap(minus &t1, minus &t2)
\brief swap overload
std::string pp(const state_formulas::and_ &x)
void swap(may &t1, may &t2)
\brief swap overload
std::string pp(const state_formulas::state_formula &x)
void swap(exists &t1, exists &t2)
\brief swap overload
void swap(plus &t1, plus &t2)
\brief swap overload
std::string pp(const state_formulas::infimum &x)
void swap(mu &t1, mu &t2)
\brief swap overload
void make_plus(atermpp::aterm &t, const ARGUMENTS &... args)
std::string pp(const state_formulas::minus &x)
bool is_variable(const atermpp::aterm &x)
void make_not_(atermpp::aterm &t, const ARGUMENTS &... args)
void swap(variable &t1, variable &t2)
\brief swap overload
void swap(supremum &t1, supremum &t2)
\brief swap overload
void make_infimum(atermpp::aterm &t, const ARGUMENTS &... args)
void swap(true_ &t1, true_ &t2)
\brief swap overload
bool is_may(const atermpp::aterm &x)
bool is_yaled_timed(const atermpp::aterm &x)
bool is_imp(const atermpp::aterm &x)
void make_delay_timed(atermpp::aterm &t, const ARGUMENTS &... args)
std::string pp(const state_formulas::forall &x)
std::string pp(const state_formulas::imp &x)
std::string pp(const state_formulas::yaled &x)
std::vector< state_formula > state_formula_vector
\brief vector of state_formulas
void make_const_multiply_alt(atermpp::aterm &t, const ARGUMENTS &... args)
std::string pp(const state_formulas::sum &x)
void make_may(atermpp::aterm &t, const ARGUMENTS &... args)
void swap(const_multiply_alt &t1, const_multiply_alt &t2)
\brief swap overload
bool is_sum(const atermpp::aterm &x)
void swap(or_ &t1, or_ &t2)
\brief swap overload
std::string pp(const state_formulas::delay_timed &x)
void swap(delay_timed &t1, delay_timed &t2)
\brief swap overload
state_formulas::state_formula translate_user_notation(const state_formulas::state_formula &x)
void make_must(atermpp::aterm &t, const ARGUMENTS &... args)
state_formulas::state_formula normalize_sorts(const state_formulas::state_formula &x, const data::sort_specification &sortspec)
std::string pp(const state_formulas::false_ &x)
void swap(must &t1, must &t2)
\brief swap overload
bool is_nu(const atermpp::aterm &x)
void swap(not_ &t1, not_ &t2)
\brief swap overload
bool is_delay(const atermpp::aterm &x)
std::string pp(const state_formulas::true_ &x)
std::string pp(const state_formulas::mu &x)
std::string pp(const state_formulas::supremum &x)
bool is_false(const atermpp::aterm &x)
void make_variable(atermpp::aterm &t, const ARGUMENTS &... args)
void make_nu(atermpp::aterm &t, const ARGUMENTS &... args)
void make_supremum(atermpp::aterm &t, const ARGUMENTS &... args)
void make_sum(atermpp::aterm &t, const ARGUMENTS &... args)
bool is_plus(const atermpp::aterm &x)
void swap(state_formula &t1, state_formula &t2)
\brief swap overload
void swap(false_ &t1, false_ &t2)
\brief swap overload
void swap(sum &t1, sum &t2)
\brief swap overload
void make_forall(atermpp::aterm &t, const ARGUMENTS &... args)
bool is_mu(const atermpp::aterm &x)
void swap(yaled &t1, yaled &t2)
\brief swap overload
bool is_forall(const atermpp::aterm &x)
void swap(delay &t1, delay &t2)
\brief swap overload
void make_minus(atermpp::aterm &t, const ARGUMENTS &... args)
std::string pp(const state_formulas::nu &x)
bool is_const_multiply_alt(const atermpp::aterm &x)
bool is_or(const atermpp::aterm &x)
void make_or_(atermpp::aterm &t, const ARGUMENTS &... args)
void swap(forall &t1, forall &t2)
\brief swap overload
void make_yaled_timed(atermpp::aterm &t, const ARGUMENTS &... args)
std::string pp(const state_formulas::variable &x)
std::set< data::sort_expression > find_sort_expressions(const state_formulas::state_formula &x)
bool find_nil(const state_formulas::state_formula &x)
std::set< process::action_label > find_action_labels(const state_formulas::state_formula &x)
void make_mu(atermpp::aterm &t, const ARGUMENTS &... args)
std::set< core::identifier_string > find_identifiers(const state_formulas::state_formula &x)
void remove_common_divisor(std::size_t &p, std::size_t &q)
std::size_t hash_combine(const std::size_t h1, const std::size_t h2)
std::size_t multiply_single_number(const std::size_t n1, const std::size_t n2, std::size_t &multiplication_carry)
Definition big_numbers.h:95
std::size_t divide_single_number(const std::size_t p, const std::size_t q, std::size_t &remainder)
std::size_t add_single_number(const std::size_t n1, const std::size_t n2, std::size_t &carry)
Definition big_numbers.h:49
std::size_t greatest_common_divisor(std::size_t p, std::size_t q)
std::size_t subtract_single_number(const std::size_t n1, const std::size_t n2, std::size_t &carry)
Definition big_numbers.h:72
std::string pp(const probabilistic_arbitrary_precision_fraction &l)
std::string pp(const big_natural_number &l)
A class that takes a linear process specification and checks all tau-summands of that LPS for conflue...
void swap(atermpp::term_balanced_tree< T > &t1, atermpp::term_balanced_tree< T > &t2)
Swaps two balanced trees.
#define USE_SIMPLE_LIST
Definition simple_list.h:60
#define USE_POOL_ALLOCATOR
Definition simple_list.h:66
static const atermpp::aterm StateMay
static const atermpp::aterm StateOr
static const atermpp::aterm UntypedRegFrm
static const atermpp::aterm StateFrm
static const atermpp::aterm StateYaled
static const atermpp::aterm RegAlt
static const atermpp::aterm ActNot
static const atermpp::aterm ActImp
static const atermpp::aterm ActTrue
static const atermpp::aterm StateInfimum
static const atermpp::aterm StateAnd
static const atermpp::aterm StateExists
static const atermpp::aterm RegTrans
static const atermpp::aterm ActOr
static const atermpp::aterm StateConstantMultiplyAlt
static const atermpp::aterm ActFrm
static const atermpp::aterm ActForall
static const atermpp::aterm StateYaledTimed
static const atermpp::aterm ActFalse
static const atermpp::aterm StateFalse
static const atermpp::aterm RegFrm
static const atermpp::aterm StateDelay
static const atermpp::aterm StatePlus
static const atermpp::aterm StateMinus
static const atermpp::aterm StateNu
static const atermpp::aterm ActAnd
static const atermpp::aterm StateDelayTimed
static const atermpp::aterm StateSupremum
static const atermpp::aterm StateSum
static const atermpp::aterm ActAt
static const atermpp::aterm ActExists
static const atermpp::aterm StateMu
static const atermpp::aterm RegTransOrNil
static const atermpp::aterm StateVar
static const atermpp::aterm StateImp
static const atermpp::aterm RegSeq
static const atermpp::aterm StateTrue
static const atermpp::aterm StateForall
static const atermpp::aterm StateMust
static const atermpp::aterm StateNot
static const atermpp::aterm ActMultAct
static const atermpp::aterm StateConstantMultiply
static const atermpp::function_symbol UntypedRegFrm
static const atermpp::function_symbol StateMu
static const atermpp::function_symbol ActMultAct
static const atermpp::function_symbol RegSeq
static const atermpp::function_symbol StateConstantMultiply
static const atermpp::function_symbol ActNot
static const atermpp::function_symbol StateSum
static const atermpp::function_symbol ActAnd
static const atermpp::function_symbol StateConstantMultiplyAlt
static const atermpp::function_symbol StateForall
static const atermpp::function_symbol StateOr
static const atermpp::function_symbol ActFalse
static const atermpp::function_symbol RegTransOrNil
static const atermpp::function_symbol StateYaledTimed
static const atermpp::function_symbol StateExists
static const atermpp::function_symbol ActExists
static const atermpp::function_symbol StateVar
static const atermpp::function_symbol StateTrue
static const atermpp::function_symbol StateFalse
static const atermpp::function_symbol StateImp
static const atermpp::function_symbol RegAlt
static const atermpp::function_symbol RegTrans
static const atermpp::function_symbol StateMinus
static const atermpp::function_symbol StateNot
static const atermpp::function_symbol StateInfimum
static const atermpp::function_symbol StateDelay
static const atermpp::function_symbol StateYaled
static const atermpp::function_symbol ActAt
static const atermpp::function_symbol StateMay
static const atermpp::function_symbol StateDelayTimed
static const atermpp::function_symbol ActImp
static const atermpp::function_symbol ActTrue
static const atermpp::function_symbol ActForall
static const atermpp::function_symbol StatePlus
static const atermpp::function_symbol StateMust
static const atermpp::function_symbol StateNu
static const atermpp::function_symbol StateAnd
static const atermpp::function_symbol ActOr
static const atermpp::function_symbol StateSupremum
std::vector< transition > non_inert_transitions
std::vector< non_bottom_state > non_bottom_states
non_bottom_state(const state_type s, const std::vector< state_type > &it)
std::set< std::pair< label_type, block_index_type > > outgoing_observations
bool operator!=(const BLC_indicators &other) const
std::string debug_id(const bisim_partitioner_gj< LTS_TYPE > &partitioner, const block_type *from_block=nullptr) const
print a B_to_C slice identification for debugging
BLC_indicators(BLC_list_iterator start, BLC_list_iterator end, bool is_stable)
bool operator==(const BLC_indicators &other) const
check_complexity::BLC_gj_counter_t work_counter
std::string debug_id(const bisim_partitioner_gj< LTS_TYPE > &partitioner) const
print a block identification for debugging
state_in_block_pointer * end_states
pointer past the last state in the block
block_type(state_in_block_pointer *start_bottom, state_in_block_pointer *start_non_bottom, state_in_block_pointer *end, constellation_type *new_c)
constructor
check_complexity::block_gj_counter_t work_counter
bool contains_new_bottom_states
a boolean that is true iff the block contains new bottom states
block_type(const block_type &other)
copy constructor. Required by MSCV.
constellation_type(state_in_block_pointer *const new_start, state_in_block_pointer *const new_end)
state_in_block_pointer * end_const_states
points past the last state in m_states_in_blocks
std::string debug_id(const bisim_partitioner_gj< LTS_TYPE > &partitioner) const
print a constellation identification for debugging
state_in_block_pointer * start_const_states
points to the first state in m_states_in_blocks
information about a transition stored in m_outgoing_transitions
outgoing_transition_type(const outgoing_transitions_it sssaC)
a pointer to a state, i.e. a reference to a state
bool operator!=(const state_in_block_pointer &other) const
bool operator==(const state_in_block_pointer &other) const
state_in_block_pointer(fixed_vector< state_type_gj >::iterator new_ref_state)
transition_index no_of_outgoing_block_inert_transitions
number of outgoing block-inert transitions
std::vector< transition >::iterator start_incoming_transitions
first incoming transition
check_complexity::state_gj_counter_t work_counter
state_in_block_pointer * ref_states_in_blocks
pointer to the corresponding entry in m_states_in_blocks
std::string debug_id(const bisim_partitioner_gj< LTS_TYPE > &partitioner) const
print a state identification for debugging
std::string debug_id_short(const bisim_partitioner_gj< LTS_TYPE > &partitioner) const
print a short state identification for debugging
outgoing_transitions_it start_outgoing_transitions
first outgoing transition
check_complexity::trans_gj_counter_t work_counter
std::string debug_id(const bisim_partitioner_gj< LTS_TYPE > &partitioner) const
print a transition identification for debugging
linked_list< BLC_indicators >::iterator transitions_per_block_to_constellation
std::string debug_id_short(const bisim_partitioner_gj< LTS_TYPE > &partitioner) const
print a short transition identification for debugging
Converts a process expression into linear process format. Use the convert member functions for this.
lps::specification convert(const process_specification &p)
Converts a process_specification into a specification. Throws non_linear_process if a non-linear sub-...
Converts a process expression into linear process format. Use the convert member functions for this.
lps::stochastic_specification convert(const process_specification &p)
Converts a process_specification into a stochastic_specification. Throws non_linear_process if a non-...
std::size_t operator()(const atermpp::aterm &t) const
Definition aterm.h:483
std::size_t operator()(const atermpp::detail::reference_aterm< T > &t) const
std::size_t operator()(const atermpp::term_balanced_tree< T > &t) const
std::size_t operator()(const mcrl2::lps::multi_action &ma) const
std::size_t operator()(const mcrl2::lps::probabilistic_data_expression &p) const
std::size_t operator()(const mcrl2::lps::state_probability_pair< STATE, PROBABILITY > &p) const
std::size_t operator()(const mcrl2::lts::action_label_lts &as) const
Definition lts_lts.h:440
std::size_t operator()(const mcrl2::lts::action_label_string &as) const
std::size_t operator()(const mcrl2::lts::probabilistic_state< STATE, PROBABILITY > &p) const
std::size_t operator()(const mcrl2::lts::transition &t) const
Definition transition.h:164
std::size_t operator()(const mcrl2::utilities::big_natural_number &n) const
std::size_t operator()(const mcrl2::utilities::probabilistic_arbitrary_precision_fraction &p) const
pointer to next non-trivial bunch (in the single-linked list) or label
bunch_t * next_nontrivial
pointer to the next non-trivial bunch in the single-linked list
union: either iterator or counter (for initialisation)
iterator_or_counter()
Construct the object as a counter.
trans_type count
counter (used during initialisation)
Iterator begin
iterator (used during main part of the algorithm)
~iterator_or_counter()
Destruct the object as an iterator.
void convert_to_iterator(const Iterator other)
Convert the object from counter to iterator.
block where the state belongs
block_t * ock
pred_entry * ed_noninert_end
linked_list< BLC_indicators > to_constellation
list of descriptors of all BLC sets that contain transitions starting in the block
std::vector< state_in_block_pointer > * R
used during initialisation for a pointer to a vector of marked states
static bool if_R_is_nullptr_then_to_constellation_is_empty_list()
indicates whether the default values of the union members agree
state_in_block_pointer * first_unmarked_bottom_state
used during initialisation for the first unmarked bottom state
state_index te_in_reduced_LTS
used during finalizing for the state index in the reduced LTS
BLC_list_iterator BLC_transitions
pointer to the corresponding entry in m_BLC_transitions (used during main part of the algorithm)
transition_index transitions
transition index (used during initialisation)
void convert_to_iterator(const BLC_list_iterator other)
Convert the object from counter to iterator.