Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
vidjil
vidjil
Commits
dac673df
Commit
dac673df
authored
Aug 03, 2016
by
Mathieu Giraud
Browse files
vidjil.cpp: rename seldom used clustering option to '-='
parent
4e1af945
Changes
1
Hide whitespace changes
Inline
Side-by-side
algo/vidjil.cpp
View file @
dac673df
...
...
@@ -229,7 +229,7 @@ void usage(char *progname, bool advanced)
if
(
advanced
)
cerr
<<
"Additional clustering (experimental)"
<<
endl
<<
" -
E
<file> manual clustering -- a file used to force some specific edges"
<<
endl
<<
" -
=
<file> manual clustering -- a file used to force some specific edges"
<<
endl
<<
" -n <int> maximum distance between neighbors for automatic clustering (default "
<<
DEFAULT_EPSILON
<<
"). No automatic clusterisation if =0."
<<
endl
<<
" -N <int> minimum required neighbors for automatic clustering (default "
<<
DEFAULT_MINPTS
<<
")"
<<
endl
<<
" -S generate and save comparative matrix for clustering"
<<
endl
...
...
@@ -394,7 +394,7 @@ int main (int argc, char **argv)
//$$ options: getopt
while
((
c
=
getopt
(
argc
,
argv
,
"A!x:X:hHadiI124g:G:V:D:J:k:r:vw:e:C:f:W:l:Fc:m:N:s:b:Sn:o:L%:y:z:uUK3
E
:t:#:"
))
!=
EOF
)
while
((
c
=
getopt
(
argc
,
argv
,
"A!x:X:hHadiI124g:G:V:D:J:k:r:vw:e:C:f:W:l:Fc:m:N:s:b:Sn:o:L%:y:z:uUK3
=
:t:#:"
))
!=
EOF
)
switch
(
c
)
{
...
...
@@ -616,7 +616,7 @@ int main (int argc, char **argv)
// Clustering
case
'
E
'
:
case
'
=
'
:
forced_edges
=
optarg
;
break
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment