From 280127d67cd58035afd2fc1ac4d3cb4925bffa76 Mon Sep 17 00:00:00 2001
From: Ibtissem Benchikh LeHocine <ibtissem.benchikh@gmail.com>
Date: Tue, 23 May 2017 18:36:02 +0200
Subject: [PATCH] code final

---
 maca_morpho/src/fplm2train_test.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/maca_morpho/src/fplm2train_test.c b/maca_morpho/src/fplm2train_test.c
index ba6b4bc..20c202c 100644
--- a/maca_morpho/src/fplm2train_test.c
+++ b/maca_morpho/src/fplm2train_test.c
@@ -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");
-- 
GitLab