Skip to content
Snippets Groups Projects
Commit 6fc23102 authored by chihebabid's avatar chihebabid
Browse files

Fix use of SafeDequeue

parent 1244caa2
No related branches found
No related tags found
1 merge request!6Feature/ufscc emptiness check
Pipeline #5026 passed
......@@ -49,8 +49,6 @@ add_executable(pmc-sog main.cpp
LDDState.cpp
LDDState.h
TransSylvan.cpp
algorithm/CNDFS.h
algorithm/CNDFS.cpp
SpotSogState.cpp
SpotSogState.h
SpotSogIterator.cpp
......@@ -99,7 +97,10 @@ add_executable(pmc-sog main.cpp
Hybrid/MCHybridReq/MCHybridSOGReq.h
Hybrid/MCHybridReqPOR/MCHybridSOGReqPOR.cpp
Hybrid/MCHybridReqPOR/MCHybridSOGReqPOR.h
misc/md5_hash.h Hybrid/MCHybridPOR/MCHybridSOGPOR.cpp Hybrid/MCHybridPOR/MCHybridSOGPOR.h)
misc/md5_hash.h Hybrid/MCHybridPOR/MCHybridSOGPOR.cpp Hybrid/MCHybridPOR/MCHybridSOGPOR.h
algorithm/CNDFS.h
algorithm/CNDFS.cpp
)
target_include_directories(pmc-sog PUBLIC "${PROJECT_BINARY_DIR}/src")
......
......@@ -107,4 +107,5 @@ template class SafeDequeue<couple_th>;
template class SafeDequeue<coupleSuccessor>;
template class SafeDequeue<spot::formula>;
//typedef pair<struct myState*, int> coupleSuccessor;
template class SafeDequeue<struct myState*>;
......@@ -20,7 +20,6 @@
#define SAFEDEQUEUE_H
#include <memory>
#include "LDDState.h"
#include "algorithm/CNDFS.h"
#include <queue>
#include <mutex>
#include <functional>
......
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