Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gmsh
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
Model registry
Operate
Environments
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Larry Price
gmsh
Commits
b993322a
Commit
b993322a
authored
11 years ago
by
Amaury Johnen
Browse files
Options
Downloads
Patches
Plain Diff
debug clique search
parent
84e48283
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Mesh/meshGFaceRecombine.cpp
+63
-114
63 additions, 114 deletions
Mesh/meshGFaceRecombine.cpp
Mesh/meshGFaceRecombine.h
+2
-0
2 additions, 0 deletions
Mesh/meshGFaceRecombine.h
with
65 additions
and
114 deletions
Mesh/meshGFaceRecombine.cpp
+
63
−
114
View file @
b993322a
...
@@ -2888,11 +2888,8 @@ void Rec2DTwoTri2Quad::color(int a, int b, int c) const
...
@@ -2888,11 +2888,8 @@ void Rec2DTwoTri2Quad::color(int a, int b, int c) const
#endif
#endif
}
}
void
Rec2DTwoTri2Quad
::
getIncompatible
(
std
::
vector
<
Rec2DAction
*>
&
vect
)
void
Rec2DTwoTri2Quad
::
getIncompatible
(
std
::
vector
<
Rec2DAction
*>
&
vect
)
{
{
Msg
::
Info
(
"Entering getIncompatible..."
);
Msg
::
Info
(
"> I'm %d, my incompatible are:"
,
this
);
vect
.
clear
();
vect
.
clear
();
Rec2DDataChange
*
rdc
=
new
Rec2DDataChange
();
Rec2DDataChange
*
rdc
=
new
Rec2DDataChange
();
std
::
vector
<
Rec2DAction
*>
*
v
=
NULL
;
std
::
vector
<
Rec2DAction
*>
*
v
=
NULL
;
...
@@ -2902,9 +2899,8 @@ void Rec2DTwoTri2Quad::getIncompatible(std::vector<Rec2DAction*> &vect)
...
@@ -2902,9 +2899,8 @@ void Rec2DTwoTri2Quad::getIncompatible(std::vector<Rec2DAction*> &vect)
if
(
vect
[
i
]
==
this
)
{
if
(
vect
[
i
]
==
this
)
{
vect
[
i
]
=
vect
.
back
();
vect
[
i
]
=
vect
.
back
();
vect
.
pop_back
();
vect
.
pop_back
();
for
(
unsigned
int
i
=
0
;
i
<
vect
.
size
();
++
i
)
{
rdc
->
revert
();
Msg
::
Info
(
" %d"
,
vect
[
i
]);
delete
rdc
;
}
return
;
return
;
}
}
}
}
...
@@ -3510,7 +3506,7 @@ Rec2DEdge::Rec2DEdge(Rec2DVertex *rv0, Rec2DVertex *rv1)
...
@@ -3510,7 +3506,7 @@ Rec2DEdge::Rec2DEdge(Rec2DVertex *rv0, Rec2DVertex *rv1)
+
2
*
Recombine2D
::
getWeightEdgeQuad
()),
+
2
*
Recombine2D
::
getWeightEdgeQuad
()),
_lastUpdate
(
-
1
),
_pos
(
-
1
)
_lastUpdate
(
-
1
),
_pos
(
-
1
)
{
{
_computeQual
();
_qual
=
-
999999999
;
// FIXME //
_computeQual();
reveal
();
reveal
();
}
}
...
@@ -5105,7 +5101,7 @@ bool setParam(int horiz, int code)
...
@@ -5105,7 +5101,7 @@ bool setParam(int horiz, int code)
// plus_std_srch = code_tree>>3;
// plus_std_srch = code_tree>>3;
// for try_Clique
// for try_Clique
plus_std_srch
=
(
code_tree
>>
3
)
%
7
;
plus_std_srch
=
(
code_tree
>>
3
)
%
7
;
try_
C
lique
=
code_tree
>>
3
>
6
;
try_
c
lique
=
code_tree
>>
3
>
6
;
return
paramOK
();
return
paramOK
();
}
}
...
@@ -5165,7 +5161,7 @@ namespace data {
...
@@ -5165,7 +5161,7 @@ namespace data {
Node
*
quadOk
=
NULL
;
Node
*
quadOk
=
NULL
;
std
::
vector
<
Node
*>
sequence
;
std
::
vector
<
Node
*>
sequence
;
bool
try_
C
lique
=
false
;
bool
try_
c
lique
=
false
;
}
}
namespace
func
{
namespace
func
{
...
@@ -5452,6 +5448,8 @@ namespace func {
...
@@ -5452,6 +5448,8 @@ namespace func {
intersection
(
incompI
,
otherIncompatible
);
intersection
(
incompI
,
otherIncompatible
);
}
}
if
(
otherIncompatible
.
empty
())
return
;
// Compute incompatibilities & Search a maximum
// Compute incompatibilities & Search a maximum
// clique among those other actions:
// clique among those other actions:
std
::
vector
<
Ra2Incomp
*>
incompatibilities
;
std
::
vector
<
Ra2Incomp
*>
incompatibilities
;
...
@@ -5464,81 +5462,84 @@ namespace func {
...
@@ -5464,81 +5462,84 @@ namespace func {
}
}
findMaximumClique
(
incompatibilities
);
findMaximumClique
(
incompatibilities
);
//actions.insert(actions.end(), incompatibilities.begin(), incompatibilities.end());
for
(
unsigned
int
i
=
0
;
i
<
incompatibilities
.
size
();
++
i
)
{
for
(
unsigned
int
i
=
0
;
i
<
incompatibilities
.
size
();
++
i
)
{
actions
.
push_back
(
incompatibilities
[
i
]
->
first
);
delete
incompatibilities
[
i
];
delete
incompatibilities
[
i
];
}
}
}
}
void
findMaximumClique
(
std
::
vector
<
Ra2Incomp
*>
&
truc
)
void
findMaximumClique
(
std
::
vector
<
Ra2Incomp
*>
&
truc
)
{
{
if
(
truc
.
size
()
<=
2
)
{
if
(
truc
.
empty
())
{
if
(
truc
.
size
()
==
2
&&
(
truc
[
0
]
->
second
.
size
()
!=
1
||
truc
[
1
]
->
second
.
size
()
!=
1
))
Msg
::
Error
(
"error2 here"
);
Msg
::
Error
(
"error here"
);
if
(
truc
.
size
()
==
1
&&
truc
[
0
]
->
second
.
size
()
!=
0
)
Msg
::
Error
(
"error2 here"
);
return
;
return
;
}
}
std
::
vector
<
Ra2Incomp
*>
candidate
,
ans
;
std
::
vector
<
Ra2Incomp
*>
candidate
,
ans
;
Ra2Incomp
*
remember
;
Ra2Incomp
*
remember
;
std
::
make_heap
(
truc
.
begin
(),
truc
.
end
(),
CompareIncomp
());
while
(
truc
.
size
())
{
while
(
truc
.
size
())
{
std
::
make_heap
(
truc
.
begin
(),
truc
.
end
(),
CompareIncomp
());
while
(
truc
.
front
()
->
second
.
size
()
+
1
<
ans
.
size
())
{
// remove all actions that can not lead to better clique than ans
while
(
truc
.
size
()
&&
truc
.
front
()
->
second
.
size
()
<
ans
.
size
())
{
while
(
truc
.
front
()
->
second
.
size
())
{
while
(
truc
.
front
()
->
second
.
size
())
{
removeLinkIncompatibilities
(
truc
,
truc
.
front
()
->
first
,
removeLinkIncompatibilities
(
truc
,
truc
.
front
()
->
first
,
truc
.
front
()
->
second
.
front
());
truc
.
front
()
->
second
.
front
());
}
}
std
::
pop_heap
(
truc
.
begin
(),
truc
.
end
(),
CompareIncomp
());
std
::
pop_heap
(
truc
.
begin
(),
truc
.
end
(),
CompareIncomp
());
delete
truc
.
back
();
truc
.
pop_back
();
truc
.
pop_back
();
std
::
make_heap
(
truc
.
begin
(),
truc
.
end
(),
CompareIncomp
());
std
::
make_heap
(
truc
.
begin
(),
truc
.
end
(),
CompareIncomp
());
}
}
if
(
truc
.
empty
())
break
;
// take action A with less incompatible and one action B that is
if
(
truc
[
0
]
->
second
.
empty
())
{
// incompatible with A. Then compute common incompatibles
std
::
vector
<
Rec2DAction
*>
actions
(
1
,
truc
.
front
()
->
first
);
std
::
vector
<
Rec2DAction
*>
actions
=
truc
.
front
()
->
second
;
subsetIncompatibilities
(
truc
,
actions
,
ans
);
unsigned
i
=
0
;
while
(
i
<
truc
.
size
())
{
if
(
truc
[
i
]
->
first
==
truc
.
front
()
->
second
.
front
())
{
remember
=
truc
[
i
];
intersection
(
truc
[
i
]
->
second
,
actions
);
break
;
}
++
i
;
}
}
if
(
i
==
truc
.
size
())
Msg
::
Error
(
"error3 here"
);
else
{
// take action A which has the least incompatible
// and action B which is the first incompatible with A.
// Then find common incompatibles
std
::
vector
<
Rec2DAction
*>
actions
=
truc
.
front
()
->
second
;
// A
unsigned
i
=
0
;
while
(
i
<
truc
.
size
())
{
if
(
truc
[
i
]
->
first
==
truc
.
front
()
->
second
.
front
())
{
remember
=
truc
[
i
];
intersection
(
truc
[
i
]
->
second
,
actions
);
// B
break
;
}
++
i
;
}
if
(
i
==
truc
.
size
())
Msg
::
Error
(
"error3 here"
);
// create incompatibilities vector & findMaximumClique
// create incompatibilities vector & findMaximumClique
subsetIncompatibilities
(
truc
,
actions
,
candidate
);
subsetIncompatibilities
(
truc
,
actions
,
candidate
);
findMaximumClique
(
candidate
);
if
(
candidate
.
size
())
findMaximumClique
(
candidate
);
// copy candidate if better
// copy candidate if better
if
(
candidate
.
size
()
+
2
>
ans
.
size
())
{
if
(
candidate
.
size
()
+
2
>
ans
.
size
())
{
actions
.
clear
();
actions
.
clear
();
actions
.
push_back
(
truc
.
front
()
->
first
);
actions
.
push_back
(
truc
.
front
()
->
first
);
// A
actions
.
push_back
(
truc
.
front
()
->
second
.
front
());
actions
.
push_back
(
truc
.
front
()
->
second
.
front
());
// B
for
(
unsigned
int
i
=
0
;
i
<
candidate
.
size
();
++
i
)
{
for
(
unsigned
int
i
=
0
;
i
<
candidate
.
size
();
++
i
)
{
actions
.
push_back
(
candidate
[
i
]
->
first
);
actions
.
push_back
(
candidate
[
i
]
->
first
);
}
subsetIncompatibilities
(
truc
,
actions
,
ans
);
}
}
subsetIncompatibilities
(
truc
,
actions
,
ans
);
}
// remove incomp link between A & B and start again
// remove incomp link between A & B and start again
removeLinkIncompatibilities
(
truc
,
truc
.
front
()
->
first
,
removeLinkIncompatibilities
(
truc
,
truc
.
front
()
->
first
,
truc
.
front
()
->
second
.
front
());
truc
.
front
()
->
second
.
front
());
}
std
::
make_heap
(
truc
.
begin
(),
truc
.
end
(),
CompareIncomp
());
}
for
(
unsigned
int
i
=
0
;
i
<
candidate
.
size
();
++
i
)
{
delete
candidate
[
i
];
}
}
candidate
.
clear
();
for
(
unsigned
int
i
=
0
;
i
<
truc
.
size
();
++
i
)
{
for
(
unsigned
int
i
=
0
;
i
<
candidate
.
size
();
++
i
)
delete
candidate
[
i
];
delete
truc
[
i
];
for
(
unsigned
int
i
=
0
;
i
<
truc
.
size
();
++
i
)
delete
truc
[
i
];
}
truc
=
ans
;
truc
=
ans
;
}
}
...
@@ -5569,10 +5570,11 @@ namespace func {
...
@@ -5569,10 +5570,11 @@ namespace func {
void
removeLinkIncompatibilities
(
std
::
vector
<
Ra2Incomp
*>
&
set
,
void
removeLinkIncompatibilities
(
std
::
vector
<
Ra2Incomp
*>
&
set
,
const
Rec2DAction
*
a
,
const
Rec2DAction
*
b
)
const
Rec2DAction
*
a
,
const
Rec2DAction
*
b
)
{
{
if
(
a
==
NULL
||
b
==
NULL
)
Msg
::
Error
(
"gneeeeeeeeeeeee"
);
bool
aOK
=
false
,
bOK
=
false
;
bool
aOK
=
false
,
bOK
=
false
;
const
Rec2DAction
*
other
=
NULL
;
unsigned
int
i
=
0
;
unsigned
int
i
=
0
;
while
(
i
<
set
.
size
())
{
while
(
i
<
set
.
size
())
{
const
Rec2DAction
*
other
=
NULL
;
if
(
set
[
i
]
->
first
==
a
)
{
if
(
set
[
i
]
->
first
==
a
)
{
aOK
=
true
;
aOK
=
true
;
other
=
b
;
other
=
b
;
...
@@ -5587,14 +5589,14 @@ namespace func {
...
@@ -5587,14 +5589,14 @@ namespace func {
if
(
set
[
i
]
->
second
[
j
]
==
other
)
{
if
(
set
[
i
]
->
second
[
j
]
==
other
)
{
set
[
i
]
->
second
[
j
]
=
set
[
i
]
->
second
.
back
();
set
[
i
]
->
second
[
j
]
=
set
[
i
]
->
second
.
back
();
set
[
i
]
->
second
.
pop_back
();
set
[
i
]
->
second
.
pop_back
();
--
j
;
break
;
break
;
}
}
++
i
;
++
j
;
}
}
if
(
j
==
set
[
i
]
->
second
.
size
())
Msg
::
Error
(
"error7 here"
);
if
(
j
==
set
[
i
]
->
second
.
size
())
Msg
::
Error
(
"error7 here"
);
if
(
aOK
&&
bOK
)
return
;
other
=
NULL
;
}
}
if
(
aOK
&&
bOK
)
return
;
++
i
;
++
i
;
}
}
Msg
::
Error
(
"error6 here"
);
Msg
::
Error
(
"error6 here"
);
...
@@ -5603,15 +5605,6 @@ namespace func {
...
@@ -5603,15 +5605,6 @@ namespace func {
void
relativeComplement
(
const
std
::
vector
<
Rec2DAction
*>
&
vA
,
void
relativeComplement
(
const
std
::
vector
<
Rec2DAction
*>
&
vA
,
std
::
vector
<
Rec2DAction
*>
&
vB
)
std
::
vector
<
Rec2DAction
*>
&
vB
)
{
{
Msg
::
Info
(
"Entering relativeComplement..."
);
Msg
::
Info
(
"> vA"
);
for
(
unsigned
int
j
=
0
;
j
<
vA
.
size
();
++
j
)
{
Msg
::
Info
(
" %d"
,
vA
[
j
]);
}
Msg
::
Info
(
"> vB"
);
for
(
unsigned
int
j
=
0
;
j
<
vB
.
size
();
++
j
)
{
Msg
::
Info
(
" %d"
,
vB
[
j
]);
}
unsigned
int
i
=
0
;
unsigned
int
i
=
0
;
while
(
i
<
vB
.
size
())
{
while
(
i
<
vB
.
size
())
{
for
(
unsigned
int
j
=
0
;
j
<
vA
.
size
();
++
j
)
{
for
(
unsigned
int
j
=
0
;
j
<
vA
.
size
();
++
j
)
{
...
@@ -5619,35 +5612,21 @@ namespace func {
...
@@ -5619,35 +5612,21 @@ namespace func {
vB
[
i
]
=
vB
.
back
();
vB
[
i
]
=
vB
.
back
();
vB
.
pop_back
();
vB
.
pop_back
();
--
i
;
--
i
;
continue
;
break
;
}
}
}
}
++
i
;
++
i
;
}
}
Msg
::
Info
(
"Returning..."
);
Msg
::
Info
(
"> vB"
);
for
(
unsigned
int
j
=
0
;
j
<
vB
.
size
();
++
j
)
{
Msg
::
Info
(
" %d"
,
vB
[
j
]);
}
}
}
void
intersection
(
const
std
::
vector
<
Rec2DAction
*>
&
vA
,
void
intersection
(
const
std
::
vector
<
Rec2DAction
*>
&
vA
,
std
::
vector
<
Rec2DAction
*>
&
vB
)
std
::
vector
<
Rec2DAction
*>
&
vB
)
{
{
Msg
::
Info
(
"Entering intersection..."
);
Msg
::
Info
(
"> vA"
);
for
(
unsigned
int
j
=
0
;
j
<
vA
.
size
();
++
j
)
{
Msg
::
Info
(
" %d"
,
vA
[
j
]);
}
Msg
::
Info
(
"> vB"
);
for
(
unsigned
int
j
=
0
;
j
<
vB
.
size
();
++
j
)
{
Msg
::
Info
(
" %d"
,
vB
[
j
]);
}
unsigned
int
i
=
0
;
unsigned
int
i
=
0
;
while
(
i
<
vB
.
size
())
{
while
(
i
<
vB
.
size
())
{
unsigned
int
j
=
0
;
unsigned
int
j
=
0
;
while
(
j
<
vA
.
size
())
{
while
(
j
<
vA
.
size
())
{
if
(
vB
[
i
]
==
vA
[
j
])
continue
;
if
(
vB
[
i
]
==
vA
[
j
])
break
;
++
j
;
++
j
;
}
}
if
(
j
==
vA
.
size
())
{
if
(
j
==
vA
.
size
())
{
...
@@ -5656,37 +5635,7 @@ namespace func {
...
@@ -5656,37 +5635,7 @@ namespace func {
}
}
else
++
i
;
else
++
i
;
}
}
Msg
::
Info
(
"Returning..."
);
Msg
::
Info
(
"> vB"
);
for
(
unsigned
int
j
=
0
;
j
<
vB
.
size
();
++
j
)
{
Msg
::
Info
(
" %d"
,
vB
[
j
]);
}
}
/*void insertUnique(std::vector<Rec2DElement*> &from,
std::vector<Rec2DElement*> &to)
{
for (unsigned int i = 0; i < from.size(); ++i) {
unsigned int j = 0;
while (j < to.size() && from[i] != to[j]) ++j;
if (j == to.size()) {
to.push_back(from[i]);
}
}
}
}
void removeCommon(std::vector<Rec2DAction*> &from,
std::vector<Rec2DAction*> &to)
{
for (unsigned int i = 0; i < from.size(); ++i) {
unsigned int j = 0;
while (j < to.size() && from[i] != to[j]) ++j;
if (j < to.size()) {
to[j] = to.back();
to.pop_back();
}
}
}*/
}
}
Node
::
Node
()
:
_ra
(
NULL
),
_dataChange
(
NULL
),
_createdActions
(
NULL
)
Node
::
Node
()
:
_ra
(
NULL
),
_dataChange
(
NULL
),
_createdActions
(
NULL
)
...
@@ -5885,7 +5834,7 @@ void Node::branch_root()
...
@@ -5885,7 +5834,7 @@ void Node::branch_root()
rt
->
getActions
(
actions
);
rt
->
getActions
(
actions
);
// 2b) Find maximum clique if asked
// 2b) Find maximum clique if asked
if
(
try_
C
lique
)
{
if
(
try_
c
lique
)
{
int
num
=
actions
.
size
();
int
num
=
actions
.
size
();
findMaximalClique
(
actions
);
findMaximalClique
(
actions
);
static
int
more
=
0
,
same
=
0
;
static
int
more
=
0
,
same
=
0
;
...
@@ -5987,14 +5936,14 @@ void Node::branch(int depth)
...
@@ -5987,14 +5936,14 @@ void Node::branch(int depth)
rt
->
getActions
(
actions
);
rt
->
getActions
(
actions
);
// 2b) Find maximum clique if asked
// 2b) Find maximum clique if asked
if
(
try_
C
lique
)
{
if
(
try_
c
lique
)
{
int
num
=
actions
.
size
();
int
num
=
actions
.
size
();
findMaximalClique
(
actions
);
findMaximalClique
(
actions
);
static
int
more
=
0
,
same
=
0
;
static
int
more
=
0
,
same
=
0
;
if
(
actions
.
size
()
>
num
)
++
more
;
if
(
actions
.
size
()
>
num
)
++
more
;
else
if
(
actions
.
size
()
==
num
)
++
same
;
else
if
(
actions
.
size
()
==
num
)
++
same
;
else
Msg
::
Fatal
(
"You've got to be kidding me. -_-"
);
else
Msg
::
Fatal
(
"You've got to be kidding me. -_-"
);
Msg
::
Info
(
"same - more : %d - %d"
,
same
,
more
);
//
Msg::Info("same - more : %d - %d", same, more);
}
}
// 3) branch on the actions
// 3) branch on the actions
...
...
This diff is collapsed.
Click to expand it.
Mesh/meshGFaceRecombine.h
+
2
−
0
View file @
b993322a
...
@@ -1137,6 +1137,8 @@ namespace Rec2DAlgo {
...
@@ -1137,6 +1137,8 @@ namespace Rec2DAlgo {
extern
Node
*
current
;
extern
Node
*
current
;
extern
Node
*
quadOk
;
extern
Node
*
quadOk
;
extern
std
::
vector
<
Node
*>
sequence
;
extern
std
::
vector
<
Node
*>
sequence
;
extern
bool
try_clique
;
}
}
namespace
func
{
namespace
func
{
...
...
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