1 | | Currently space is used as a delimiter for external input file. We should change it to standard delimiter i.e comma. But there might be issues with different locales e.g swedish. |
| 1 | Currently there seems to be 4 separate implementations for the csv files: |
| 2 | 1. input file externalInput.csv uses space as a delimiter |
| 3 | 2. input file for optimization uses space as a delimiter |
| 4 | 3. writing output results to the csv file is done using delimiter "," |
| 5 | 4. reading results from the results file uses comma as delimiter (libcsv.c) |
| 6 | |
| 7 | All these 4 different implementations should be based on libcsv.c which is the most configurable and one should be able to set the csv delimiter char and the quote char from command line. |