Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
mc-sog
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
PMC-SOG
mc-sog
Commits
2e025d64
Commit
2e025d64
authored
2 years ago
by
chihebabid
Browse files
Options
Downloads
Patches
Plain Diff
Fix some bugs
parent
cf267ec5
No related branches found
Branches containing commit
No related tags found
1 merge request
!6
Feature/ufscc emptiness check
Pipeline
#5095
passed
2 years ago
Stage: build
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/algorithm/CNDFS.cpp
+0
-1
0 additions, 1 deletion
src/algorithm/CNDFS.cpp
src/algorithm/CNDFS.h
+1
-1
1 addition, 1 deletion
src/algorithm/CNDFS.h
with
1 addition
and
2 deletions
src/algorithm/CNDFS.cpp
+
0
−
1
View file @
2e025d64
...
...
@@ -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
);
}
...
...
This diff is collapsed.
Click to expand it.
src/algorithm/CNDFS.h
+
1
−
1
View file @
2e025d64
...
...
@@ -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
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment