This repository was archived by the owner on Apr 16, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPrfData.h
2149 lines (1797 loc) · 86.4 KB
/
PrfData.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/****************************************************************************/
/* */
/* But: Definition des donnees d'une matrice de profil. */
/* */
/****************************************************************************/
/* */
/* Resume: */
/* */
/*==========================================================================*/
/* Donnees: | Routines */
/*==========================================================================*/
/* TNbrAc | Free_NbrAc */
/* | Str_To_NbrAc */
/* | Print_NbrAc */
/* | Out_NbrAc */
/*--------------------------------------------------------------------------*/
/* TTopo | Print_Topo */
/*--------------------------------------------------------------------------*/
/* TGenSpecPtr | I_GenSpec */
/* | Free_GenSpec */
/* | GenSpec_Alph */
/* | GenSpec_Topo */
/* | Print_GenSpec */
/*--------------------------------------------------------------------------*/
/* TDisjointDef | Print_DisjointDef */
/*--------------------------------------------------------------------------*/
/* TDisjointPar | Print_DisjointPar */
/*--------------------------------------------------------------------------*/
/* TDisjointParIndex | - */
/*--------------------------------------------------------------------------*/
/* TDisjointPtr | I_Disjoint */
/* | Free_Disjoint */
/* | Disjoint_Def */
/* | Disjoint_ParList */
/* | Print_Disjoint */
/*--------------------------------------------------------------------------*/
/* TNormFct | Print_NormFct */
/*--------------------------------------------------------------------------*/
/* TNormPrty | Print_NormPrty */
/*--------------------------------------------------------------------------*/
/* TNormPar | Print_NormPar */
/*--------------------------------------------------------------------------*/
/* TNormParIndex | - */
/*--------------------------------------------------------------------------*/
/* TNormPtr | I_Norm */
/* | Free_Norm */
/* | Norm_Fct */
/* | Norm_Prty */
/* | Norm_ParNth */
/* | ParNbr */
/* | Norm_Text */
/* | Print_Norm */
/*--------------------------------------------------------------------------*/
/* TNormIndex | Print_NormIndex */
/*--------------------------------------------------------------------------*/
/* TNormListPtr | I_NormList */
/* | Free_NormList */
/* | Resize_NormList */
/* | NormList_AddNorm */
/* | NormList_NormNth */
/* | NormList_NormNbr */
/* | NormList_MaxNormNbr */
/* | NormList_Complete */
/* | NormList_PrtyComplete */
/* | Print_NormList */
/*--------------------------------------------------------------------------*/
/* TScore | Score_Plus */
/* | Score_Add */
/* | Score_Reset */
/* | Print_Score */
/* | Out_Score */
/*--------------------------------------------------------------------------*/
/* TNScore | Print_NScore */
/*--------------------------------------------------------------------------*/
/* TNScoreIndex | - */
/*--------------------------------------------------------------------------*/
/* TCutOffLevel | Print_CutOffLevel */
/*--------------------------------------------------------------------------*/
/* TCutOffPtr | I_CutOff */
/* | Free_CutOff */
/* | CutOff_PutLevel */
/* | CutOff_PutScore */
/* | CutOff_Score */
/* | CutOff_Level */
/* | CutOff_Text */
/* | CutOff_NScoreNth */
/* | CutOff_ModeNth */
/* | CutOff_NScoreNbr */
/* | Print_CutOff */
/*--------------------------------------------------------------------------*/
/* TCutOffIndex | Print_CutOffIndex */
/* | Out_CutOffIndex */
/*--------------------------------------------------------------------------*/
/* TCutOffListPtr | I_CutOffList */
/* | Free_CutOffList */
/* | Resize_CutOffList */
/* | CutOffList_AddCutOff */
/* | CutOffList_CutOffNth */
/* | CutOffList_CutOffNbr */
/* | CutOffList_MaxCutOffNbr */
/* | CutOffList_Test */
/* | Print_CutOffList */
/*--------------------------------------------------------------------------*/
/* TSymb | Print_Symb */
/*--------------------------------------------------------------------------*/
/* TInsPosPtr | I_InsPos */
/* | Clone_InsPos */
/* | Free_InsPos */
/* | InsPos_Symb */
/* | InsPos_B0 */
/* | InsPos_B1 */
/* | InsPos_E0 */
/* | InsPos_E1 */
/* | InsPos_BM */
/* | InsPos_BI */
/* | InsPos_BD */
/* | InsPos_BE */
/* | InsPos_MM */
/* | InsPos_MI */
/* | InsPos_MD */
/* | InsPos_ME */
/* | InsPos_IM */
/* | InsPos_II */
/* | InsPos_ID */
/* | InsPos_IE */
/* | InsPos_DM */
/* | InsPos_DI */
/* | InsPos_DD */
/* | InsPos_DE */
/* | InsPos_I */
/* | InsPos_I0 */
/* | InsPos_IV */
/* | Print_InsPos */
/*--------------------------------------------------------------------------*/
/* TMatchPosPtr | I_MatchPos */
/* | Clone_MatchPos */
/* | Free_MatchPos */
/* | MatchPos_Symb */
/* | MatchPos_M */
/* | MatchPos_M0 */
/* | MatchPos_MV */
/* | MatchPos_D */
/* | Print_MatchPos */
/*--------------------------------------------------------------------------*/
/* TPosIndex | Print_PosIndex */
/*--------------------------------------------------------------------------*/
/* TPrfMatrixPtr | I_PrfMatrix */
/* | Free_PrfMatrix */
/* | Resize_PrfMatrix */
/* | PrfMatrix_AddPos */
/* | PrfMatrix_AddLastPos */
/* | PrfMatrix_InsPosList */
/* | InsPosList_PosNth */
/* | PrfMatrix_MatchPosList */
/* | MatchPosList_PosNth */
/* | PrfMatrix_InsPosNth */
/* | PrfMatrix_MatchPosNth */
/* | PrfMatrix_PosNbr */
/* | PrfMatrix_LastPos */
/* | PrfMatrix_Full */
/* | Print_PrfMatrix */
/*--------------------------------------------------------------------------*/
/* TPrfDataPtr | I_PrfData */
/* | Free_PrfData */
/* | PrfData_Id */
/* | PrfData_De */
/* | PrfData_NbrAc */
/* | PrfData_GenSpec */
/* | PrfData_Disjoint */
/* | PrfData_NormList */
/* | PrfData_CutOffList */
/* | PrfData_PrfMatrix */
/* | Print_PrfData */
/****************************************************************************/
#ifndef _PRFDATA_
#define _PRFDATA_
#include <stddef.h>
#include "error.h"
#include "GeneralTypes.h"
#include "Alphabet.h"
#include <limits.h>
/*****************************/
/* DEFINITION DES CONSTANTES */
/*****************************/
/*=========*/
/* Erreurs */
/*=========*/
#define PD_NO_ERROR 0 /* Pas d'erreur */
#define PD_MEM_ERR 1 /* Allocation memoire */
#define PD_OUT_PRTY 2 /* Priorite hors rangee */
#define PD_DBL_PRTY 3 /* Priorite deja existante */
#define PD_PRTY_MISS 4 /* Priorite manquante */
#define PD_DBL_LEVEL 5 /* Niveau de coupure a double */
#define PD_LEVEL_MISS 6 /* Niveau de coupure manquant */
#define PD_ZERO_LEVEL_MISS 7 /* Niveau zero manquant */
/*===================*/
/* Index de position */
/*===================*/
#define PD_POS_IDX_NOT_DEF UINT_MAX
/*============*/
/* Topologies */
/*============*/
#define PD_TOPO_LINEAR 1
#define PD_TOPO_CIRCULAR 2
/*============*/
/* Exclusions */
/*============*/
#define PD_UNIQUE 1
#define PD_PROTECT 2
/*================*/
/* Normalisations */
/*================*/
#define PD_NORM_LINEAR 1
#define PD_NORM_GRIB 2
/*========*/
/* Scores */
/*========*/
#define PD_INFINITE SHRT_MIN
/************************/
/* DEFINITION DES TYPES */
/************************/
/*==========================*/
/* Type d'un nombre Prosite */
/*==========================*/
typedef TCharStr TNbrAc;
/*======================*/
/* Type d'une topologie */
/*======================*/
typedef unsigned char TTopo;
/*=============================*/
/* Type d'un index de position */
/*=============================*/
typedef unsigned int TPosIndex;
/*========================================*/
/* Structure des specifications generales */
/*========================================*/
typedef struct TGenSpec {
TAlphPtr AlphPtr; /* Alphabet */
TTopo Topo; /* Topologie */
TPosIndex PosNbr; /* Nombre de positions match */
} TGenSpec;
typedef TGenSpec *TGenSpecPtr;
/*===================================*/
/* Type d'une definition d'exclusion */
/*===================================*/
typedef unsigned char TDisjointDef;
/*=================================*/
/* Type d'un parametre d'exclusion */
/*=================================*/
typedef unsigned int TDisjointPar;
/*==========================================*/
/* Type d'un index de parametre d'exclusion */
/*==========================================*/
typedef unsigned int TDisjointParIndex;
/*=================================================*/
/* Structure d'une liste de parametres d'exclusion */
/*=================================================*/
typedef struct TDisjointParList {
TDisjointPar *List; /* Liste */
TDisjointParIndex ParNbr; /* Nombre de parametres */
} TDisjointParList;
typedef TDisjointParList *TDisjointParListPtr;
/*==========================*/
/* Structure d'un exclusion */
/*==========================*/
typedef struct TDisjoint {
TDisjointDef Def; /* Definition */
TDisjointParListPtr ParListPtr; /* Liste des parametres */
} TDisjoint;
typedef TDisjoint *TDisjointPtr;
/*======================================*/
/* Type d'une fonction de normalisation */
/*======================================*/
typedef unsigned char TNormFct;
/*=====================================*/
/* Type d'un priorite de normalisation */
/*=====================================*/
typedef unsigned char TNormPrty;
/*======================================*/
/* Type d'un parametre de normalisation */
/*======================================*/
typedef double TNormPar;
/*===============================================*/
/* Type d'un index de parametre de normalisation */
/*===============================================*/
typedef unsigned int TNormParIndex;
/*======================================================*/
/* Structure d'une liste de parametres de normalisation */
/*======================================================*/
typedef struct TNormParList {
TNormPar *List; /* Liste */
TNormParIndex ParNbr; /* Nombre de parametres */
} TNormParList;
typedef TNormParList *TNormParListPtr;
/*===============================*/
/* Structure d'une normalisation */
/*===============================*/
typedef struct TNorm {
TNormFct Fct; /* Fonction de normalisation */
TNormPrty Prty; /* Priorite de la normalisation */
TNormParListPtr ParListPtr; /* Parametres de normalisation */
TText Text; /* Texte */
} TNorm;
typedef TNorm *TNormPtr;
/*==================================*/
/* Type d'un index de normalisation */
/*==================================*/
typedef TPtrIndex TNormIndex;
/*====================================*/
/* Type d'une liste de normalisations */
/*====================================*/
typedef TListPtr TNormListPtr;
/*=================*/
/* Type d'un score */
/*=================*/
typedef short TScore;
/*========================================*/
/* Type de la valeur d'un score normalise */
/*========================================*/
typedef double TNScoreVal;
/*================================*/
/* Structure d'un score normalise */
/*================================*/
typedef struct TNScore {
TNScoreVal Val; /* Valeur */
TNormIndex Mode; /* Mode */
} TNScore;
/*====================================*/
/* Type d'un index de score normalise */
/*====================================*/
typedef unsigned int TNScoreIndex;
/*============================================*/
/* Structure d'une liste de scores normalises */
/*============================================*/
typedef struct TNScoreList {
TNScore *List; /* Liste de scores */
TNScoreIndex NScoreNbr; /* Nombre de scores */
} TNScoreList;
typedef TNScoreList *TNScoreListPtr;
/*=======================================*/
/* Type d'un niveau de valeur de coupure */
/*=======================================*/
typedef int TCutOffLevel;
/*===================================*/
/* Structure d'une valeur de coupure */
/*===================================*/
typedef struct TCutOff {
TCutOffLevel Level; /* Niveau de la valeur de coupure */
TScore Score; /* Score de la valeur de coupure */
TText Text; /* Texte */
TNScoreListPtr NScoreListPtr; /* Liste de scoree normalises */
} TCutOff;
typedef TCutOff *TCutOffPtr;
/*======================================*/
/* Type d'un index de valeur de coupure */
/*======================================*/
typedef TPtrIndex TCutOffIndex;
/*========================================*/
/* Type d'une liste de valeurs de coupure */
/*========================================*/
typedef TListPtr TCutOffListPtr;
/*==================*/
/* Type d'un symbol */
/*==================*/
typedef char TSymb;
/*=============================*/
/* Type d'un vecteur de scores */
/*=============================*/
typedef TScore *TScoreVect;
/*======================================*/
/* Structure d'une position d'insertion */
/*======================================*/
typedef struct TInsPos {
TSymb Symb;
TScore B0;
TScore B1;
TScore E0;
TScore E1;
TScore BM;
TScore BI;
TScore BD;
TScore BE;
TScore MM;
TScore MI;
TScore MD;
TScore ME;
TScore IM;
TScore II;
TScore ID;
TScore IE;
TScore DM;
TScore DI;
TScore DD;
TScore DE;
TScoreVect I;
} TInsPos;
typedef TInsPos *TInsPosPtr;
/*================================*/
/* Structure d'une position match */
/*================================*/
typedef struct TMatchPos {
TSymb Symb;
TScoreVect M;
TScore D;
} TMatchPos;
typedef TMatchPos *TMatchPosPtr;
/*===================================*/
/* Structure d'une matrice de profil */
/*===================================*/
typedef struct TPrfMatrix {
TInsPosPtr *InsPosList; /* Positions d'insertion */
TMatchPosPtr *MatchPosList; /* Positions match */
TPosIndex PosNbr; /* Taille de la matrice */
TPosIndex MaxPosNbr; /* Taille maximum de la matrice */
TBoolean LastPos; /* Flg de pres. de la drn. pos. */
} TPrfMatrix;
typedef TPrfMatrix *TPrfMatrixPtr;
/*===================================*/
/* Structure des donnees d'un profil */
/*===================================*/
typedef struct TPrfData {
TId Id; /* ID du profil */
TDe De; /* Description du profil */
TNbrAc NbrAc; /* Nombre prosite du profil */
TGenSpecPtr GenSpecPtr; /* Specifications generales */
TDisjointPtr DisjointPtr; /* Definition de l'exclusion */
TNormListPtr NormListPtr; /* Liste de normalisations */
TCutOffListPtr CutOffListPtr; /* Liste des valeurs de coupure */
TPrfMatrixPtr PrfMatrixPtr; /* Matrice de positions */
} TPrfData;
typedef TPrfData *TPrfDataPtr;
/***************************/
/* DEFINITION DES ROUTINES */
/***************************/
/*==================================*/
/* Manipulation des nombres Prosite */
/*==================================*/
/*--------------------------------------------------------------------------*/
/* Macro de destruction d'un nombre AC */
/*--------------------------------------------------------------------------*/
#define Free_NbrAc(NbrAc)\
Free_CharStr((TCharStr)NbrAc)
/*--------------------------------------------------------------------------*/
/* Macro de construction d'un nombre AC */
/*--------------------------------------------------------------------------*/
#define Str_To_NbrAc(Str)\
((TNbrAc)(Str_To_CharStr(Str)))
/*------------*/
/* Selecteurs */
/*------------*/
/*--------------------------------------------------------------------------*/
/* Macro d'impression d'un nombre Prosite */
/*--------------------------------------------------------------------------*/
#define Print_NbrAc(NbrAc)\
printf("%-7s", (char*)NbrAc)
/*--------------------------------------------------------------------------*/
/* Macro d'envoi d'un nombre Prosite */
/*--------------------------------------------------------------------------*/
#define Out_NbrAc(OutputFile, NbrAc)\
fprintf(OutputFile,"%-7s", (char*)NbrAc)
/*=============================*/
/* Manipulation des topologies */
/*=============================*/
/*------------*/
/* Selecteurs */
/*------------*/
/*--------------------------------------------------------------------------*/
/* Impression d'une topologie */
/*--------------------------------------------------------------------------*/
/* Entree: | Topo | Topologie */
/* Sortie: | - | - */
/* Erreur: | - | - */
/*--------------------------------------------------------------------------*/
void Print_Topo(TTopo Topo);
/*===========================================*/
/* Manipulation des specifications generales */
/*===========================================*/
/*-----------------*/
/* Gestion memoire */
/*-----------------*/
/*--------------------------------------------------------------------------*/
/* Construction d'une specification generale */
/*--------------------------------------------------------------------------*/
/* Entree: | AlphPtr | Alphabet */
/* Sortie: | I_GenSpec | Specification generale */
/* Erreur: | I_GenSpec=NULL | Allocation memoire */
/*--------------------------------------------------------------------------*/
TGenSpecPtr I_GenSpec(TAlphPtr AlphPtr);
/*--------------------------------------------------------------------------*/
/* Destruction d'une specification generale */
/*--------------------------------------------------------------------------*/
/* Entree: | GenSpecPtr | Specification generale */
/* Sortie: | - | - */
/* Erreur: | - | - */
/*--------------------------------------------------------------------------*/
void Free_GenSpec(TGenSpecPtr GenSpecPtr);
/*---------------*/
/* Constructeurs */
/*---------------*/
/*--------------------------------------------------------------------------*/
/* Macro affectant la topologie */
/*--------------------------------------------------------------------------*/
#define GenSpec_PutTopo(GenSpecPtr, MyTopo)\
{(GenSpecPtr)->Topo = (MyTopo);}
/*--------------------------------------------------------------------------*/
/* Macro affectant le nombre de positions match du profil */
/*--------------------------------------------------------------------------*/
#define GenSpec_PutPosNbr(GenSpecPtr, MyPosNbr)\
{(GenSpecPtr)->PosNbr = MyPosNbr;}
/*------------*/
/* Selecteurs */
/*------------*/
/*--------------------------------------------------------------------------*/
/* Macro retournant l'alphabet */
/*--------------------------------------------------------------------------*/
#define GenSpec_Alph(GenSpecPtr)\
((GenSpecPtr)->AlphPtr)
/*--------------------------------------------------------------------------*/
/* Macro retournant la topologie */
/*--------------------------------------------------------------------------*/
#define GenSpec_Topo(GenSpecPtr)\
((GenSpecPtr)->Topo)
/*--------------------------------------------------------------------------*/
/* Macro retournant le nombre de positions match du profil */
/*--------------------------------------------------------------------------*/
#define GenSpec_PosNbr(GenSpecPtr)\
((GenSpecPtr)->PosNbr)
/*--------------------------------------------------------------------------*/
/* Impression d'une specification generale */
/*--------------------------------------------------------------------------*/
/* Entree: | GenSpecPtr | Specification generale */
/* Sortie: | - | - */
/* Erreur: | - | - */
/*--------------------------------------------------------------------------*/
void Print_GenSpec(TGenSpecPtr GenSpecPtr);
/*==========================================*/
/* Manipulation des definitions d'exclusion */
/*==========================================*/
/*------------*/
/* Selecteurs */
/*------------*/
/*--------------------------------------------------------------------------*/
/* Impression d'une definition d'exclusion */
/*--------------------------------------------------------------------------*/
/* Entree: | DisjointDef | Definition d'exclusion */
/* Sortie: | - | - */
/* Erreur: | - | - */
/*--------------------------------------------------------------------------*/
void Print_DisjointDef(TDisjointDef DisjointDef);
/*=========================================*/
/* Manipulation des parametres d'exclusion */
/*=========================================*/
/*------------*/
/* Selecteurs */
/*------------*/
/*--------------------------------------------------------------------------*/
/* Macro d'impression d'un parametre d'exclusion */
/*--------------------------------------------------------------------------*/
#define Print_DisjointPar(DisjointPar)\
printf("%d", DisjointPar)
/*==================================================*/
/* Manipulation des listes de parametres d'excusion */
/*==================================================*/
/*-----------------*/
/* Gestion memoire */
/*-----------------*/
/*--------------------------------------------------------------------------*/
/* Construction d'une liste de parametres */
/*--------------------------------------------------------------------------*/
/* Entree: | ParNbr | Nombre de parametres */
/* Sortie: | I_DisjointParList | Liste de parametres */
/* Erreur: | I_DisjointParList=NULL | Allocation memoire */
/*--------------------------------------------------------------------------*/
TDisjointParListPtr I_DisjointParList(TDisjointParIndex ParNbr);
/*--------------------------------------------------------------------------*/
/* Destruction d'une liste de parametres */
/*--------------------------------------------------------------------------*/
/* Entree: | DisjointParListPtr | Liste de parametres */
/* Sortie: | - | - */
/* Erreur: | - | - */
/*--------------------------------------------------------------------------*/
void Free_DisjointParList(TDisjointParListPtr DisjointParListPtr);
/*---------------*/
/* Constructeurs */
/*---------------*/
/*--------------------------------------------------------------------------*/
/* Macro d'ajout d'un parametre indexe a partir de 1 */
/*--------------------------------------------------------------------------*/
#define DisjointParList_AddPar(DisjointParListPtr, Par, ParIndex)\
{(DisjointParListPtr)->List[ParIndex - 1] = Par;}
/*------------*/
/* Selecteurs */
/*------------*/
/*--------------------------------------------------------------------------*/
/* Macro retournant un parametre indexe a partir de 1 */
/*--------------------------------------------------------------------------*/
#define DisjointParList_ParNth(DisjointParListPtr, ParIndex)\
((DisjointParListPtr)->List[ParIndex - 1])
/*--------------------------------------------------------------------------*/
/* Macro retournant le nombre de parametres */
/*--------------------------------------------------------------------------*/
#define DisjointParList_ParNbr(DisjointParListPtr)\
((DisjointParListPtr)->ParNbr)
/*--------------------------------------------------------------------------*/
/* Impression d'une liste de parametres */
/*--------------------------------------------------------------------------*/
/* Entree: | DisjointParListPtr | Liste de parametres */
/* Sortie: | - | - */
/* Erreur: | - | - */
/*--------------------------------------------------------------------------*/
void Print_DisjointParList(TDisjointParListPtr DisjointParListPtr);
/*=============================*/
/* Manipulation des exclusions */
/*=============================*/
/*-----------------*/
/* Gestion memoire */
/*-----------------*/
/*--------------------------------------------------------------------------*/
/* Construction d'une exclusion */
/*--------------------------------------------------------------------------*/
/* Entree: | DisjointParListPtr | Liste des parametres */
/* Sortie: | I_Disjoint | Exclusion */
/* Erreur: | I_Disjoint=NULL | Allocation memoire */
/*--------------------------------------------------------------------------*/
TDisjointPtr I_Disjoint(TDisjointParListPtr DisjointParListPtr);
/*--------------------------------------------------------------------------*/
/* Destruction d'une exclusion */
/*--------------------------------------------------------------------------*/
/* Entree: | DisjointPtr | Exclusion */
/* Sortie: | - | - */
/* Erreur: | - | - */
/*--------------------------------------------------------------------------*/
void Free_Disjoint(TDisjointPtr DisjointPtr);
/*---------------*/
/* Constructeurs */
/*---------------*/
/*--------------------------------------------------------------------------*/
/* Macro affectant la definition */
/*--------------------------------------------------------------------------*/
#define Disjoint_PutDef(DisjointPtr, MyDef)\
{(DisjointPtr)->Def = MyDef;}
/*------------*/
/* Selecteurs */
/*------------*/
/*--------------------------------------------------------------------------*/
/* Macro retournant la definition */
/*--------------------------------------------------------------------------*/
#define Disjoint_Def(DisjointPtr)\
((DisjointPtr)->Def)
/*--------------------------------------------------------------------------*/
/* Macro retournant la liste des parametres */
/*--------------------------------------------------------------------------*/
#define Disjoint_ParList(DisjointPtr)\
((DisjointPtr)->ParListPtr)
/*--------------------------------------------------------------------------*/
/* Impression d'une exclusion */
/*--------------------------------------------------------------------------*/
/* Entree: | DisjointPtr | Exclusion */
/* Sortie: | - | - */
/* Erreur: | - | - */
/*--------------------------------------------------------------------------*/
void Print_Disjoint(TDisjointPtr DisjointPtr);
/*==============================================*/
/* Manipulation des fonctions de normalisations */
/*==============================================*/
/*------------*/
/* Selecteurs */
/*------------*/
/*--------------------------------------------------------------------------*/
/* Impression d'une fonction de normalisation */
/*--------------------------------------------------------------------------*/
/* Entree: | NormFct | Fonction de normalisation */
/* Sortie: | - | - */
/* Erreur: | - | - */
/*--------------------------------------------------------------------------*/
void Print_NormFct(TNormFct NormFct);
/*=============================================*/
/* Manipulation des priorites de normalisation */
/*=============================================*/
/*------------*/
/* Selecteurs */
/*------------*/
/*--------------------------------------------------------------------------*/
/* Macro d'impression d'une priorite de normalisation */
/*--------------------------------------------------------------------------*/
#define Print_NormPrty(NormPrty)\
printf("%d\n", NormPrty)
/*==============================================*/
/* Manipulation des parametres de normalisation */
/*==============================================*/
/*------------*/
/* Selecteurs */
/*------------*/
/*--------------------------------------------------------------------------*/
/* Macro d'impression d'un parametre de normalisation */
/*--------------------------------------------------------------------------*/
#define Print_NormPar(NormPar)\
printf("%f", NormPar)
/*========================================================*/
/* Manipulation des listes de parametres de normalisation */
/*========================================================*/
/*-----------------*/
/* Gestion memoire */
/*-----------------*/
/*--------------------------------------------------------------------------*/
/* Construction d'une liste de parametres */
/*--------------------------------------------------------------------------*/
/* Entree: | ParNbr | Nombre de parametres */
/* Sortie: | I_NormParList | Liste de parametres */
/* Erreur: | I_NormParList=NULL | Allocation memoire */
/*--------------------------------------------------------------------------*/
TNormParListPtr I_NormParList(TNormParIndex ParNbr);
/*--------------------------------------------------------------------------*/
/* Destruction d'une liste de parametres */
/*--------------------------------------------------------------------------*/
/* Entree: | NormParListPtr | Liste de parametres */
/* Sortie: | - | - */
/* Erreur: | - | - */
/*--------------------------------------------------------------------------*/
void Free_NormParList(TNormParListPtr NormParListPtr);
/*---------------*/
/* Constructeurs */
/*---------------*/
/*--------------------------------------------------------------------------*/
/* Macro d'ajout d'un parametre indexe a partir de 1 */
/*--------------------------------------------------------------------------*/
#define NormParList_AddPar(NormParListPtr, Par, ParIndex)\
{(NormParListPtr)->List[(ParIndex) - 1] = Par;}
/*------------*/
/* Selecteurs */
/*------------*/
/*--------------------------------------------------------------------------*/
/* Macro retournant un parametre indexe a partir de 1 */
/*--------------------------------------------------------------------------*/
#define NormParList_ParNth(NormParListPtr, ParIndex)\
((NormParListPtr)->List[(ParIndex) - 1])
/*--------------------------------------------------------------------------*/
/* Macro retournant le nombre de parametres */
/*--------------------------------------------------------------------------*/
#define NormParList_ParNbr(NormParListPtr)\
((NormParListPtr)->ParNbr)
/*--------------------------------------------------------------------------*/
/* Impression d'une liste de parametres */
/*--------------------------------------------------------------------------*/
/* Entree: | NormParListPtr | Liste de parametres */
/* Sortie: | - | - */
/* Erreur: | - | - */
/*--------------------------------------------------------------------------*/
void Print_NormParList(TNormParListPtr NormParListPtr);
/*=================================*/
/* Manipulation des normalisations */
/*=================================*/
/*-----------------*/
/* Gestion memoire */
/*-----------------*/
/*--------------------------------------------------------------------------*/
/* Construction d'une normalisation */
/*--------------------------------------------------------------------------*/
/* Entree: | NormParListPtr | Liste de parametres */
/* | Text | Texte */
/* Sortie: | I_Norm | Normalisation */
/* Erreur: | I_Norm=NULL | Allocation memoire */
/*--------------------------------------------------------------------------*/
TNormPtr I_Norm(TNormParListPtr NormParListPtr, TText Text);
/*--------------------------------------------------------------------------*/
/* Destruction d'une normalisation */
/*--------------------------------------------------------------------------*/
/* Entree: | NormPtr | Normalisation */
/* Sortie: | - | - */
/* Erreur: | - | - */
/*--------------------------------------------------------------------------*/
void Free_Norm(TNormPtr NormPtr);
/*---------------*/
/* Constructeurs */
/*---------------*/
/*--------------------------------------------------------------------------*/
/* Macro affectant la fonction de normalisation */
/*--------------------------------------------------------------------------*/
#define Norm_PutFct(NormPtr, MyFct)\
{(NormPtr)->Fct = MyFct;}
/*--------------------------------------------------------------------------*/
/* Macro affectant la priorite de la normalisation */
/*--------------------------------------------------------------------------*/
#define Norm_PutPrty(NormPtr, MyPrty)\
{(NormPtr)->Prty = MyPrty;}
/*------------*/
/* Selecteurs */
/*------------*/
/*--------------------------------------------------------------------------*/
/* Macro retournant la fonction de normalisation */
/*--------------------------------------------------------------------------*/
#define Norm_Fct(NormPtr)\
((NormPtr)->Fct)
/*--------------------------------------------------------------------------*/
/* Macro retournant la priorite de la normalisation */
/*--------------------------------------------------------------------------*/
#define Norm_Prty(NormPtr)\
((NormPtr)->Prty)
/*--------------------------------------------------------------------------*/
/* Macro retournant la liste des parametres */
/*--------------------------------------------------------------------------*/
#define Norm_ParList(NormPtr)\
((NormPtr)->ParListPtr)
/*--------------------------------------------------------------------------*/
/* Macro retournant le texte de la normalisation */
/*--------------------------------------------------------------------------*/
#define Norm_Text(NormPtr)\
((NormPtr)->Text)
/*--------------------------------------------------------------------------*/
/* Impression d'une normalisation */
/*--------------------------------------------------------------------------*/
/* Entree: | NormPtr | Normalisation */
/* Sortie: | - | - */
/* Erreur: | - | - */
/*--------------------------------------------------------------------------*/
void Print_Norm(TNormPtr NormPtr);
/*=========================================*/
/* Manipulation des index de normalisation */
/*=========================================*/
/*------------*/
/* Selecteurs */
/*------------*/
/*--------------------------------------------------------------------------*/
/* Macro d'impression d'un index de normalisation */
/*--------------------------------------------------------------------------*/
#define Print_NormIndex(NormIndex)\
printf("%d", NormIndex)
/*===========================================*/
/* Manipulation des listes de normalisations */
/*===========================================*/
/*-----------------*/
/* Gestion memoire */
/*-----------------*/
/*--------------------------------------------------------------------------*/