Diff for /rpl/src/generateurs_aleatoires.c between versions 1.2 and 1.39

version 1.2, 2010/01/27 22:22:10 version 1.39, 2012/12/19 09:58:23
Line 1 Line 1
 /*  /*
 ================================================================================  ================================================================================
   RPL/2 (R) version 4.0.10    RPL/2 (R) version 4.1.12
   Copyright (C) 1989-2010 Dr. BERTRAND Joël    Copyright (C) 1989-2012 Dr. BERTRAND Joël
   
   This file is part of RPL/2.    This file is part of RPL/2.
   
Line 20 Line 20
 */  */
   
   
 #include "rpl.conv.h"  #include "rpl-conv.h"
   
   
 void  void
Line 47  initialisation_generateur_aleatoire(stru Line 47  initialisation_generateur_aleatoire(stru
         gettimeofday(&horodatage, NULL);          gettimeofday(&horodatage, NULL);
   
         gsl_rng_set((*s_etat_processus).generateur_aleatoire,          gsl_rng_set((*s_etat_processus).generateur_aleatoire,
                 (unsigned long int) (horodatage.tv_usec | horodatage.tv_sec));                  (unsigned long int) (horodatage.tv_usec ^ horodatage.tv_sec));
     }      }
     else      else
     {      {

Removed from v.1.2  
changed lines
  Added in v.1.39


CVSweb interface <joel.bertrand@systella.fr>