Skip to content
Snippets Groups Projects
Commit 280127d6 authored by Ibtissem Benchikh LeHocine's avatar Ibtissem Benchikh LeHocine
Browse files

code final

parent 022c8205
No related branches found
No related tags found
No related merge requests found
......@@ -58,13 +58,13 @@ void generate_train_test(context* ctx)
fplm = fopen(ctx->fplm_filename, "r");
line_nb = count_line_number_fplm(fplm);
train = fopen("../../Files/fplm_train.txt", "w");
train = fopen("fplm_train.txt", "w");
if(train==NULL)
{
fprintf(stderr,"Problem with the train file.\n");
exit(EXIT_FAILURE);
}
test = fopen("../../Files/fplm_test.txt","w");
test = fopen("fplm_test.txt","w");
if(test==NULL)
{
fprintf(stderr,"Problem with the test file.\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment