From f9e1e76011236f05d6e2c3b62e2ae2969c64f808 Mon Sep 17 00:00:00 2001 From: admin Date: Sat, 24 May 2025 17:38:59 +0200 Subject: Adjusted files for cross-compilation on Linux --- src/tolsac.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/tolsac.c') 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 { -- cgit v1.2.3