Skip to content
Snippets Groups Projects
Commit 3675dcf5 authored by Jaime Arias's avatar Jaime Arias
Browse files

refactor: remove nb_marking variable

parent c207d838
No related branches found
No related tags found
No related merge requests found
Pipeline #9303 passed
......@@ -310,7 +310,6 @@ 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);
// TODO: What is the purpose of the old variable?
bool old = true;
......
......@@ -46,7 +46,6 @@ int SOG::NbBddNode(Aggregate *state, size_t counter) {
void SOG::PrintCompleteInformation() {
std::cout << "\n\nGRAPH SIZE :";
std::cout << "\n\tNB MARKING : " << nb_marking;
std::cout << "\n\tNB NODES : " << nb_states;
std::cout << "\n\tNB ARCS : " << nb_edges << "\n";
......
......@@ -40,9 +40,6 @@ class SOG {
*/
size_t nb_edges{0};
// TODO: What is this variable? Is it well named or defined?
double nb_marking{0};
/**
* Set the initial state of this graph
* @param state the initial state
......
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