Skip to content
Snippets Groups Projects
Commit c207d838 authored by Kais Klai's avatar Kais Klai
Browse files

ajout attribut weight dans aggregate

parent 7cc93817
No related branches found
No related tags found
No related merge requests found
Pipeline #9301 passed
......@@ -30,7 +30,8 @@ class Aggregate {
* BDD of the aggregate
*/
bdd state;
/* matrix representing the weights of the shortest paths inside the aggregate */
std::vector<std::vector<int>> weight;
/**
* Flag to indicate if the state loops using epsilon transitions
*/
......
......@@ -310,7 +310,7 @@ Paths PetriNetSOG::ObservablePaths(SOG &sog, map<int, int> trans_obs) const {
sog.set_initial_state(c);
sog.AddState(c);
sog.nb_marking += bdd_pathcount(c->state);
//sog.nb_marking += bdd_pathcount(c->state);
// TODO: What is the purpose of the old variable?
bool old = true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment