Skip to content
Snippets Groups Projects
Commit 2e025d64 authored by chihebabid's avatar chihebabid
Browse files

Fix some bugs

parent cf267ec5
No related branches found
No related tags found
1 merge request!6Feature/ufscc emptiness check
Pipeline #5095 passed
......@@ -201,7 +201,6 @@ void CNDFS::dfsBlue(myState_t *state, vector<myState_t *> &Rp, uint8_t idThread,
computeSuccessors(state, ap_sog);
for (const auto &succ: state->new_successors) {
// cout << "cyan " << succ.first->cyan[idThread] << endl;
if (!succ.first->blue && !succ.first->cyan[idThread]) {
dfsBlue(succ.first, Rp, idThread, ap_sog);
}
......
......@@ -18,7 +18,7 @@
using namespace std;
typedef pair<struct myState_t *, int> coupleSuccessor;
static constexpr uint8_t MAX_THREADS = 64;
static constexpr uint8_t MAX_THREADS = 128;
enum class SuccState {notyet,doing,done};
struct myState_t {
......
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