Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
LIN Julien
sho
Commits
747feb78
Commit
747feb78
authored
Nov 08, 2021
by
Julien Lin
Browse files
add new config
parent
15670aa3
Changes
1
Hide whitespace changes
Inline
Side-by-side
.vscode/launch.json
View file @
747feb78
...
...
@@ -4,41 +4,70 @@
//
For
more
information
,
visit:
https://go.microsoft.com/fwlink/?linkid=
830387
"version"
:
"0.2.0"
,
"configurations"
:
[
{
"name"
:
"Python: eaf"
,
"type"
:
"python"
,
"request"
:
"launch"
,
"module"
:
"eaf"
,
"args"
:
[
"--nb-run"
,
"20"
,
"--quality-threshold"
,
"660"
,
"--solver"
,
"num_greedy"
]
},
{
"name"
:
"Python: num_evolutionary"
,
"type"
:
"python"
,
"request"
:
"launch"
,
"module"
:
"snp"
,
"args"
:
[
"--solver"
,
"num_evolutionary"
,
"--nb-population"
,
"100"
,
"--nb-offspring"
,
"100"
,
"--nb-selected"
,
"10"
]
"args"
:
[
"--solver"
,
"num_evolutionary"
,
"--nb-population"
,
"100"
,
"--nb-offspring"
,
"100"
,
"--nb-selected"
,
"10"
]
},
{
"name"
:
"Python: num_random"
,
"type"
:
"python"
,
"request"
:
"launch"
,
"module"
:
"snp"
,
"args"
:
[
"--solver"
,
"num_random"
,
"--iters"
,
"2000"
,
"--steady-delta"
,
"500"
]
"args"
:
[
"--solver"
,
"num_random"
,
"--iters"
,
"2000"
,
"--steady-delta"
,
"500"
]
},
{
"name"
:
"Python: num_sim_anneal"
,
"type"
:
"python"
,
"request"
:
"launch"
,
"module"
:
"snp"
,
"args"
:
[
"--solver"
,
"num_sim_anneal"
,
"--iters"
,
"2000"
,
"--steady-delta"
,
"500"
]
"args"
:
[
"--solver"
,
"num_sim_anneal"
,
"--iters"
,
"2000"
,
"--steady-delta"
,
"500"
]
},
{
"name"
:
"Python: bit_sim_anneal"
,
"type"
:
"python"
,
"request"
:
"launch"
,
"module"
:
"snp"
,
"args"
:
[
"--solver"
,
"bit_sim_anneal"
]
"name"
:
"Python: bit_sim_anneal"
,
"type"
:
"python"
,
"request"
:
"launch"
,
"module"
:
"snp"
,
"args"
:
[
"--solver"
,
"bit_sim_anneal"
]
},
{
"name"
:
"Python: greedy"
,
"type"
:
"python"
,
"request"
:
"launch"
,
"module"
:
"snp"
,
}
"name"
:
"Python: greedy"
,
"type"
:
"python"
,
"request"
:
"launch"
,
"module"
:
"snp"
}
]
}
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment