Skip to content

Reduce scope of `read_from_file` to `read_from_ascii'

Loic Huder requested to merge reader-scope into main

Baby refactoring

read_from_file is only used to read from ASCII files. This means we can:

  • Rename the function to read_from_ascii
  • Make the columns names parameter mandatory since they are needed to parse the ASCII files

As discussed, I also removed the getters/setters from InputInformation since we can simply expose the class members.

Merge request reports