Diff for /rpl/src/rpl.h between versions 1.251 and 1.252

version 1.251, 2014/10/05 19:53:16 version 1.252, 2014/10/13 07:12:54
Line 1706  typedef struct tableau Line 1706  typedef struct tableau
   
 typedef struct arbre  typedef struct arbre
 {  {
     struct_objet        *objet;      struct_objet        *feuille;
       logical1            inversion;
   
     unsigned long       nombre_feuilles;      integer8            nombre_branches;
     struct arbre        **feuilles;      struct arbre        **branches;
 } struct_arbre;  } struct_arbre;
   
   
Line 3526  struct_liste_variables_partagees *recher Line 3527  struct_liste_variables_partagees *recher
 #endif  #endif
   
 /*  /*
 --------------------------------------------------------------------------------  
   Fonctions gérant les arbres de simplification  
 --------------------------------------------------------------------------------  
 */  
   
 #ifndef RPLARGS  
 struct_arbre *creation_arbre(struct_processus *s_etat_processus,  
         struct_objet **t_objets, integer8 indice, integer8 indice_maximal);  
 void liberation_arbre(struct_processus *s_etat_processus,  
         struct_arbre *s_noeud);  
 void parcours_arbre(struct_processus *s_etat_processus, struct_arbre *s_noeud);  
 void simplification_arbre(struct_processus *s_etat_processus,  
         struct_arbre *s_noeud);  
 #endif  
   
 /*  
 --------------------------------------------------------------------------------  --------------------------------------------------------------------------------
   Fonctions gérant la complétion automatique    Fonctions gérant la complétion automatique
 --------------------------------------------------------------------------------  --------------------------------------------------------------------------------

Removed from v.1.251  
changed lines
  Added in v.1.252


CVSweb interface <joel.bertrand@systella.fr>