diff --git a/maca_trans_parser/src/simple_decoder.c b/maca_trans_parser/src/simple_decoder.c
index c585a7f330eff7661574185393d237c8912e5f89..6225f31797ffdc89e9e1a3e7b419acfa0430cfee 100644
--- a/maca_trans_parser/src/simple_decoder.c
+++ b/maca_trans_parser/src/simple_decoder.c
@@ -18,7 +18,7 @@ void simple_decoder_buffer(context *ctx, FILE *f, feature_table *ft, int root_la
   int mvt_label;
   float max;
   feat_vec *fv = feat_vec_new(feature_types_nb);
-  config *c = config_initial(f, ctx->mcd_struct, 1000, 0);
+  config *c = config_initial(f, ctx->mcd_struct, 10000, 0);
   
   /* read a sentence and put it in the buffer */
   while(queue_read_sentence(c->bf, f, ctx->mcd_struct)){
diff --git a/maca_trans_parser/src/simple_decoder_tagger.c b/maca_trans_parser/src/simple_decoder_tagger.c
index 6066fc3c9539511567a8c7658ade094274d231cd..4065b9681b35b10362b24edc5df5be8b7140c7ec 100644
--- a/maca_trans_parser/src/simple_decoder_tagger.c
+++ b/maca_trans_parser/src/simple_decoder_tagger.c
@@ -31,7 +31,7 @@ void simple_decoder_buffer(context *ctx)
   int i;
   word *w = NULL;
   FILE *f = (ctx->input_filename)? myfopen(ctx->input_filename, "r") : stdin;
-  config *c = config_initial(f, ctx->mcd_struct, 1000, 0);
+  config *c = config_initial(f, ctx->mcd_struct, 10000, 0);
 
   /* read a sentence and put it in the buffer */
   while(queue_read_sentence(c->bf, f, ctx->mcd_struct)){