diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/tolsac.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tolsac.c b/src/tolsac.c index ee89921..7707a01 100644 --- a/src/tolsac.c +++ b/src/tolsac.c @@ -202,7 +202,7 @@ void display_help(void) { "50 is the number of iterations produced (not required for the "
"grid and sensitivity samplings)\n"
"-o Output.csv specifies the output path and filename.\n"
- "If not provided, output will be named Sampled_[Input.csv] in the current directory.\n"
+ "If not provided, output will be named sampled_[Input.csv] in the current directory.\n"
"If you are unsure how the input should look like, "
"run the program with the -e option to generate an example "
"input file.\n\n"
@@ -224,7 +224,7 @@ void display_help(void) { // Function to generate example file
void generate_example(void) {
- FILE *writefile = fopen("Example.csv", "w");
+ FILE *writefile = fopen("example.csv", "w");
if (!writefile) {
printf("Error creating example file!\n");
return;
@@ -239,7 +239,7 @@ void generate_example(void) { fprintf(writefile, "Standard Deviation, 0, 0, 1.3, 1.0\n");
fclose(writefile);
- printf("Example.csv file generated!\n");
+ printf("example.csv file generated!\n");
}
// Optimized LHS interval generation that transposes for better cache locality
@@ -357,7 +357,7 @@ i32 main(i32 argc, char *argv[]) { file_ptr = strrchr(rfilename, '/');
}
- strcpy(wfilename, "Sampled_");
+ strcpy(wfilename, "sampled_");
if (file_ptr) {
strcat(wfilename, file_ptr + 1);
} else {
|