- 15 Mar, 2019 1 commit
-
-
Raphaël Bleuse authored
-
- 04 Jan, 2019 9 commits
-
-
Raphaël Bleuse authored
-
Raphaël Bleuse authored
-
Raphaël Bleuse authored
-
Raphaël Bleuse authored
-
Raphaël Bleuse authored
-
Raphaël Bleuse authored
-
Raphaël Bleuse authored
-
Raphaël Bleuse authored
-
Raphaël Bleuse authored
-
- 03 Jan, 2019 2 commits
-
-
Raphaël Bleuse authored
-
Raphaël Bleuse authored
-
- 25 Oct, 2018 1 commit
-
-
Raphaël Bleuse authored
-
- 24 Oct, 2018 1 commit
-
-
Raphaël Bleuse authored
-
- 15 Oct, 2018 7 commits
-
-
Raphaël Bleuse authored
-
Raphaël Bleuse authored
-
Raphaël Bleuse authored
-
Raphaël Bleuse authored
-
Raphaël Bleuse authored
-
Raphaël Bleuse authored
-
Raphaël Bleuse authored
-
- 01 Sep, 2018 4 commits
-
-
Raphaël Bleuse authored
-
Raphaël Bleuse authored
-
Raphaël Bleuse authored
-
Raphaël Bleuse authored
-
- 23 Aug, 2018 1 commit
-
-
Raphaël Bleuse authored
-
- 02 Aug, 2018 1 commit
-
-
Raphaël Bleuse authored
-
- 01 Aug, 2018 1 commit
-
-
Raphaël Bleuse authored
-
- 30 Jul, 2018 1 commit
-
-
Raphaël Bleuse authored
-
- 27 Jul, 2018 7 commits
-
-
Raphaël Bleuse authored
-
Raphaël Bleuse authored
-
Raphaël Bleuse authored
-
Raphaël Bleuse authored
-
Raphaël Bleuse authored
The I/O configuration was managed by enforcing the type of the arguments to be `argparse.FileType`. While this is a neat option for prototyping a CLI, it leads to annoying bugs. The main issues are due to the fact that the files are opened/created during the argument parsing stage. - First, this is undesirable as the output file is created too early: if the input is an invalid linking matrix, we still create an empty output file. - Second, the file is opened, forcing the developer to explicitly close it. It is better to manipulate files with context managers.
-
Martin Rosalie authored
-
Raphaël Bleuse authored
-
- 24 Jul, 2018 2 commits
-
-
Raphaël Bleuse authored
-
Raphaël Bleuse authored
The variable name `matrix` was polysemous. It was used to described both the Python object holding the linking matrix (i.e., a List[List[int]]), and the `.read()`-capable object representing the input file. The former keeps the name `matrix`, while the latter is now referenced as `fp`.
-
- 23 Jul, 2018 1 commit
-
-
Raphaël Bleuse authored
-
- 19 Jul, 2018 1 commit
-
-
Raphaël Bleuse authored
-