Blame view

Giac_maj/giac-1.4.9/src/static_extern.h 76.9 KB
6663b6c9   adorian   projet complet av...
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
  #ifndef STATIC_EXTERN
  #define STATIC_EXTERN
  struct unary_function_ptr;
  namespace giac {
  extern const unary_function_ptr * const  at_PERCENT;
  extern const unary_function_ptr * const  at_PERCENTCHANGE;
  extern const unary_function_ptr * const  at_PERCENTTOTAL;
  extern const unary_function_ptr * const  at_ABS;
  extern const unary_function_ptr * const  at_ACOS;
  extern const unary_function_ptr * const  at_ACOSH;
  extern const unary_function_ptr * const  at_ACOT;
  extern const unary_function_ptr * const  at_ACSC;
  extern const unary_function_ptr * const  at_ADDCOL;
  extern const unary_function_ptr * const  at_ADDROW;
  extern const unary_function_ptr * const  at_ALOG;
  extern const unary_function_ptr * const  at_ARC;
  extern const unary_function_ptr * const  at_ARG;
  extern const unary_function_ptr * const  at_ASEC;
  extern const unary_function_ptr * const  at_ASIN;
  extern const unary_function_ptr * const  at_ASINH;
  extern const unary_function_ptr * const  at_ATAN;
  extern const unary_function_ptr * const  at_ATANH;
  extern const unary_function_ptr * const  at_Airy_Ai;
  extern const unary_function_ptr * const  at_Airy_Bi;
  extern const unary_function_ptr * const  at_Ans;
  extern const unary_function_ptr * const  at_Archive;
  extern const unary_function_ptr * const  at_BINOMIAL;
  extern const unary_function_ptr * const  at_BesselI;
  extern const unary_function_ptr * const  at_BesselJ;
  extern const unary_function_ptr * const  at_BesselK;
  extern const unary_function_ptr * const  at_BesselY;
  extern const unary_function_ptr * const  at_Beta;
  extern const unary_function_ptr * const  at_Bezier;
  extern const unary_function_ptr * const  at_BlockDiagonal;
  extern const unary_function_ptr * const  at_CEILING;
  extern const unary_function_ptr * const  at_CHOOSE;
  extern const unary_function_ptr * const  at_COLNORM;
  extern const unary_function_ptr * const  at_COMB;
  extern const unary_function_ptr * const  at_CONCAT;
  extern const unary_function_ptr * const  at_COND;
  extern const unary_function_ptr * const  at_CONJ;
  extern const unary_function_ptr * const  at_COS;
  extern const unary_function_ptr * const  at_COSH;
  extern const unary_function_ptr * const  at_COT;
  extern const unary_function_ptr * const  at_CROSS;
  extern const unary_function_ptr * const  at_CSC;
  extern const unary_function_ptr * const  at_Celsius2Fahrenheit;
  extern const unary_function_ptr * const  at_Ci;
  extern const unary_function_ptr * const  at_Ci0;
  extern const unary_function_ptr * const  at_Circle;
  extern const unary_function_ptr * const  at_ClrDraw;
  extern const unary_function_ptr * const  at_ClrGraph;
  extern const unary_function_ptr * const  at_ClrIO;
  extern const unary_function_ptr * const  at_CopyVar;
  extern const unary_function_ptr * const  at_CyclePic;
  extern const unary_function_ptr * const  at_DEGXRAD;
  extern const unary_function_ptr * const  at_DELCOL;
  extern const unary_function_ptr * const  at_DELROW;
  extern const unary_function_ptr * const  at_DET;
  extern const unary_function_ptr * const  at_DISP;
  extern const unary_function_ptr * const  at_DOT;
  extern const unary_function_ptr * const  at_DROP;
  extern const unary_function_ptr * const  at_DUP;
  extern const unary_function_ptr * const  at_DelFold;
  extern const unary_function_ptr * const  at_DelVar;
  extern const unary_function_ptr * const  at_Det;
  extern const unary_function_ptr * const  at_Dirac;
  extern const unary_function_ptr * const  at_DispG;
  extern const unary_function_ptr * const  at_DispHome;
  extern const unary_function_ptr * const  at_DrawFunc;
  extern const unary_function_ptr * const  at_DrawInv;
  extern const unary_function_ptr * const  at_DrawParm;
  extern const unary_function_ptr * const  at_DrawPol;
  extern const unary_function_ptr * const  at_DrawSlp;
  extern const unary_function_ptr * const  at_DrwCtour;
  extern const unary_function_ptr * const  at_EDITMAT;
  extern const unary_function_ptr * const  at_EIGENVAL;
  extern const unary_function_ptr * const  at_EIGENVV;
  extern const unary_function_ptr * const  at_EXP;
  extern const unary_function_ptr * const  at_EXPM1;
  extern const unary_function_ptr * const  at_EXPORT;
  extern const unary_function_ptr * const  at_Ei;
  extern const unary_function_ptr * const  at_Ei0;
  extern const unary_function_ptr * const  at_Ei_f;
  extern const unary_function_ptr * const  at_Eta;
  extern const unary_function_ptr * const  at_Exec;
  extern const unary_function_ptr * const  at_FLOOR;
  extern const unary_function_ptr * const  at_FNROOT;
  extern const unary_function_ptr * const  at_FP;
  extern const unary_function_ptr * const  at_Factor;
  extern const unary_function_ptr * const  at_Fahrenheit2Celsius;
  extern const unary_function_ptr * const  at_Fill;
  extern const unary_function_ptr * const  at_GETKEY;
  extern const unary_function_ptr * const  at_GF;
  extern const unary_function_ptr * const  at_Gamma;
  extern const unary_function_ptr * const  at_Gcd;
  extern const unary_function_ptr * const  at_Gcdex;
  extern const unary_function_ptr * const  at_Get;
  extern const unary_function_ptr * const  at_GetCalc;
  extern const unary_function_ptr * const  at_GetFold;
  extern const unary_function_ptr * const  at_Graph;
  extern const unary_function_ptr * const  at_HMSX;
  extern const unary_function_ptr * const  at_Heaviside;
  extern const unary_function_ptr * const  at_IDENMAT;
  extern const unary_function_ptr * const  at_IFTE;
  extern const unary_function_ptr * const  at_IM;
  extern const unary_function_ptr * const  at_INPUT;
  extern const unary_function_ptr * const  at_INTERSECT;
  extern const unary_function_ptr * const  at_INVERSE;
  extern const unary_function_ptr * const  at_IP;
  extern const unary_function_ptr * const  at_ISOLATE;
  extern const unary_function_ptr * const  at_ITERATE;
  extern const unary_function_ptr * const  at_Input;
  extern const unary_function_ptr * const  at_InputStr;
  extern const unary_function_ptr * const  at_Int;
  extern const unary_function_ptr * const  at_Inverse;
  extern const unary_function_ptr * const  at_JordanBlock;
  extern const unary_function_ptr * const  at_Kronecker;
  extern const unary_function_ptr * const  at_LINE;
  extern const unary_function_ptr * const  at_IS_LINEAR;
  extern const unary_function_ptr * const  at_LN;
  extern const unary_function_ptr * const  at_LNP1;
  extern const unary_function_ptr * const  at_LOG;
  extern const unary_function_ptr * const  at_LQ;
  extern const unary_function_ptr * const  at_LSQ;
  extern const unary_function_ptr * const  at_LU;
  extern const unary_function_ptr * const  at_Li;
  extern const unary_function_ptr * const  at_Line;
  extern const unary_function_ptr * const  at_LineHorz;
  extern const unary_function_ptr * const  at_LineTan;
  extern const unary_function_ptr * const  at_LineVert;
  extern const unary_function_ptr * const  at_MAKELIST;
  extern const unary_function_ptr * const  at_MAKEMAT;
  extern const unary_function_ptr * const  at_MANT;
  extern const unary_function_ptr * const  at_MAX;
  extern const unary_function_ptr * const  at_MAXREAL;
  extern const unary_function_ptr * const  at_MIN;
  extern const unary_function_ptr * const  at_MINREAL;
  extern const unary_function_ptr * const  at_MINUS;
  extern const unary_function_ptr * const  at_MOD;
  extern const unary_function_ptr * const  at_MSGBOX;
  extern const unary_function_ptr * const  at_NOP;
  extern const unary_function_ptr * const  at_NORMALD;
  extern const unary_function_ptr * const  at_NTHROOT;
  extern const unary_function_ptr * const  at_NewFold;
  extern const unary_function_ptr * const  at_NewPic;
  extern const unary_function_ptr * const  at_Nop;
  extern const unary_function_ptr * const  at_Nullspace;
  extern const unary_function_ptr * const  at_OVER;
  extern const unary_function_ptr * const  at_Output;
  extern const unary_function_ptr * const  at_Ox_2d_unit_vector;
  extern const unary_function_ptr * const  at_Ox_3d_unit_vector;
  extern const unary_function_ptr * const  at_Oy_2d_unit_vector;
  extern const unary_function_ptr * const  at_Oy_3d_unit_vector;
  extern const unary_function_ptr * const  at_Oz_3d_unit_vector;
  extern const unary_function_ptr * const  at_PERM;
  extern const unary_function_ptr * const  at_PICK;
  extern const unary_function_ptr * const  at_PIECEWISE;
  extern const unary_function_ptr * const  at_PIXOFF;
  extern const unary_function_ptr * const  at_PIXON;
  extern const unary_function_ptr * const  at_POISSON;
  extern const unary_function_ptr * const  at_POLYCOEF;
  extern const unary_function_ptr * const  at_POLYEVAL;
  extern const unary_function_ptr * const  at_POLYFORM;
  extern const unary_function_ptr * const  at_POLYROOT;
  extern const unary_function_ptr * const  at_POS;
  extern const unary_function_ptr * const  at_PRINT;
  extern const unary_function_ptr * const  at_Pause;
  extern const unary_function_ptr * const  at_Phi;
  extern const unary_function_ptr * const  at_Pictsize;
  extern const unary_function_ptr * const  at_PopUp;
  extern const unary_function_ptr * const  at_Prompt;
  extern const unary_function_ptr * const  at_Psi;
  extern const unary_function_ptr * const  at_Psi_minus_ln;
  extern const unary_function_ptr * const  at_PtOff;
  extern const unary_function_ptr * const  at_PtOn;
  extern const unary_function_ptr * const  at_PtText;
  extern const unary_function_ptr * const  at_PxlOff;
  extern const unary_function_ptr * const  at_PxlOn;
  extern const unary_function_ptr * const  at_QR;
  extern const unary_function_ptr * const  at_QUAD;
  extern const unary_function_ptr * const  at_QUOTE;
  extern const unary_function_ptr * const  at_Quo;
  extern const unary_function_ptr * const  at_RADXDEG;
  extern const unary_function_ptr * const  at_RANDMAT;
  extern const unary_function_ptr * const  at_RANDOM;
  extern const unary_function_ptr * const  at_RANDSEED;
  extern const unary_function_ptr * const  at_RANK;
  extern const unary_function_ptr * const  at_RCL;
  extern const unary_function_ptr * const  at_RE;
  extern const unary_function_ptr * const  at_RECT;
  extern const unary_function_ptr * const  at_RECURSE;
  extern const unary_function_ptr * const  at_REDIM;
  extern const unary_function_ptr * const  at_REPLACE;
  extern const unary_function_ptr * const  at_REVERSE;
  extern const unary_function_ptr * const  at_ROUND;
  extern const unary_function_ptr * const  at_ROWNORM;
  extern const unary_function_ptr * const  at_RPN_CASE;
  extern const unary_function_ptr * const  at_RPN_FOR;
  extern const unary_function_ptr * const  at_RPN_LOCAL;
  extern const unary_function_ptr * const  at_RPN_WHILE;
  extern const unary_function_ptr * const  at_RREF;
  extern const unary_function_ptr * const  at_RandSeed;
  extern const unary_function_ptr * const  at_Rank;
  extern const unary_function_ptr * const  at_RclPic;
  extern const unary_function_ptr * const  at_Rem;
  extern const unary_function_ptr * const  at_Resultant;
  extern const unary_function_ptr * const  at_RplcPic;
  extern const unary_function_ptr * const  at_Rref;
  extern const unary_function_ptr * const  at_SCALE;
  extern const unary_function_ptr * const  at_SCALEADD;
  extern const unary_function_ptr * const  at_SCHUR;
  extern const unary_function_ptr * const  at_SEC;
  extern const unary_function_ptr * const  at_SIGN;
  extern const unary_function_ptr * const  at_SIN;
  extern const unary_function_ptr * const  at_SINH;
  extern const unary_function_ptr * const  at_SIZE;
  extern const unary_function_ptr * const  at_SORT;
  extern const unary_function_ptr * const  at_SPECNORM;
  extern const unary_function_ptr * const  at_SPECRAD;
  extern const unary_function_ptr * const  at_SUB;
  extern const unary_function_ptr * const  at_SVD;
  extern const unary_function_ptr * const  at_SVL;
  extern const unary_function_ptr * const  at_SWAP;
  extern const unary_function_ptr * const  at_SWAPCOL;
  extern const unary_function_ptr * const  at_SWAPROW;
  extern const unary_function_ptr * const  at_SetFold;
  extern const unary_function_ptr * const  at_Si;
  extern const unary_function_ptr * const  at_SiCi_f;
  extern const unary_function_ptr * const  at_SiCi_g;
  extern const unary_function_ptr * const  at_SortA;
  extern const unary_function_ptr * const  at_SortD;
  extern const unary_function_ptr * const  at_StoPic;
  extern const unary_function_ptr * const  at_Store;
  extern const unary_function_ptr * const  at_Sum;
  extern const unary_function_ptr * const  at_TAN;
  extern const unary_function_ptr * const  at_TANH;
  extern const unary_function_ptr * const  at_TAYLOR;
  extern const unary_function_ptr * const  at_TRACE;
  extern const unary_function_ptr * const  at_TRN;
  extern const unary_function_ptr * const  at_TRUNCATE;
  extern const unary_function_ptr * const  at_TeX;
  extern const unary_function_ptr * const  at_UNION;
  extern const unary_function_ptr * const  at_UTPC;
  extern const unary_function_ptr * const  at_UTPF;
  extern const unary_function_ptr * const  at_UTPN;
  extern const unary_function_ptr * const  at_UTPT;
  extern const unary_function_ptr * const  at_Unarchiv;
  extern const unary_function_ptr * const  at_VAS;
  extern const unary_function_ptr * const  at_VAS_positive;
  extern const unary_function_ptr * const  at_VIEWS;
  extern const unary_function_ptr * const  at_WAIT;
  extern const unary_function_ptr * const  at_XHMS;
  extern const unary_function_ptr * const  at_XPON;
  extern const unary_function_ptr * const  at_Zeta;
  extern const unary_function_ptr * const  at_ZoomRcl;
  extern const unary_function_ptr * const  at_ZoomSto;
  extern const unary_function_ptr * const  at_a2q;
  extern const unary_function_ptr * const  at_abcuv;
  extern const unary_function_ptr * const  at_about;
  extern const unary_function_ptr * const  at_abs;
  extern const unary_function_ptr * const  at_abscissa;
  extern const unary_function_ptr * const  at_accumulate_head_tail;
  extern const unary_function_ptr * const  at_acos;
  extern const unary_function_ptr * const  at_acos2asin;
  extern const unary_function_ptr * const  at_acos2atan;
  extern const unary_function_ptr * const  at_acosh;
  extern const unary_function_ptr * const  at_acot;
  extern const unary_function_ptr * const  at_acoth;
  extern const unary_function_ptr * const  at_acsc;
  extern const unary_function_ptr * const  at_add;
  extern const unary_function_ptr * const  at_add_autosimplify;
  extern const unary_function_ptr * const  at_add_language;
  extern const unary_function_ptr * const  at_additionally;
  extern const unary_function_ptr * const  at_adjoint_matrix;
  extern const unary_function_ptr * const  at_affix;
  extern const unary_function_ptr * const  at_alg;
  extern const unary_function_ptr * const  at_algsubs;
  extern const unary_function_ptr * const  at_algvar;
  extern const unary_function_ptr * const  at_alog10;
  extern const unary_function_ptr * const  at_alors;
  extern const unary_function_ptr * const  at_altitude;
  extern const unary_function_ptr * const  at_and;
  extern const unary_function_ptr * const  at_angle;
  extern const unary_function_ptr * const  at_angleat;
  extern const unary_function_ptr * const  at_angleatraw;
  extern const unary_function_ptr * const  at_animate;
  extern const unary_function_ptr * const  at_animate3d;
  extern const unary_function_ptr * const  at_animation;
  extern const unary_function_ptr * const  at_ans;
  extern const unary_function_ptr * const  at_append;
  extern const unary_function_ptr * const  at_apply;
  extern const unary_function_ptr * const  at_approx;
  extern const unary_function_ptr * const  at_arc;
  extern const unary_function_ptr * const  at_arcLen;
  extern const unary_function_ptr * const  at_archive;
  extern const unary_function_ptr * const  at_arclen;
  extern const unary_function_ptr * const  at_area;
  extern const unary_function_ptr * const  at_areaat;
  extern const unary_function_ptr * const  at_areaatraw;
  extern const unary_function_ptr * const  at_areaplot;
  extern const unary_function_ptr * const  at_arg;
  extern const unary_function_ptr * const  at_array;
  extern const unary_function_ptr * const  at_array_sto;
  extern const unary_function_ptr * const  at_as_function_of;
  extern const unary_function_ptr * const  at_asc;
  extern const unary_function_ptr * const  at_asec;
  extern const unary_function_ptr * const  at_asin;
  extern const unary_function_ptr * const  at_asin2acos;
  extern const unary_function_ptr * const  at_asin2atan;
  extern const unary_function_ptr * const  at_asinh;
  extern const unary_function_ptr * const  at_assert;
  extern const unary_function_ptr * const  at_assign;
  extern const unary_function_ptr * const  at_assume;
  extern const unary_function_ptr * const  at_atan;
  extern const unary_function_ptr * const  at_atan2;
  extern const unary_function_ptr * const  at_atan2acos;
  extern const unary_function_ptr * const  at_atan2asin;
  extern const unary_function_ptr * const  at_atanh;
  extern const unary_function_ptr * const  at_atrig2ln;
  extern const unary_function_ptr * const  at_augment;
  extern const unary_function_ptr * const  at_autosimplify;
  extern const unary_function_ptr * const  at_avance;
  extern const unary_function_ptr * const  at_avgRC;
  extern const unary_function_ptr * const  at_back;
  extern const unary_function_ptr * const  at_background;
  extern const unary_function_ptr * const  at_baisse_crayon;
  extern const unary_function_ptr * const  at_bar_plot;
  extern const unary_function_ptr * const  at_barplot;
  extern const unary_function_ptr * const  at_barycenter;
  extern const unary_function_ptr * const  at_basis;
  extern const unary_function_ptr * const  at_batons;
  extern const unary_function_ptr * const  at_bernoulli;
  extern const unary_function_ptr * const  at_besselI;
  extern const unary_function_ptr * const  at_besselJ;
  extern const unary_function_ptr * const  at_besselK;
  extern const unary_function_ptr * const  at_besselY;
  extern const unary_function_ptr * const  at_betad;
  extern const unary_function_ptr * const  at_betad_cdf;
  extern const unary_function_ptr * const  at_betad_icdf;
  extern const unary_function_ptr * const  at_bezier;
  extern const unary_function_ptr * const  at_bezout_entiers;
  extern const unary_function_ptr * const  at_binomial;
  extern const unary_function_ptr * const  at_binomial_cdf;
  extern const unary_function_ptr * const  at_binomial_icdf;
  extern const unary_function_ptr * const  at_binprint;
  extern const unary_function_ptr * const  at_bisector;
  extern const unary_function_ptr * const  at_bitand;
  extern const unary_function_ptr * const  at_bitmap;
  extern const unary_function_ptr * const  at_bitor;
  extern const unary_function_ptr * const  at_bitxor;
  extern const unary_function_ptr * const  at_black;
  extern const unary_function_ptr * const  at_blockmatrix;
  extern const unary_function_ptr * const  at_blockmatrix_mult_size;
  extern const unary_function_ptr * const  at_blue;
  extern const unary_function_ptr * const  at_border;
  extern const unary_function_ptr * const  at_bounded_function;
  extern const unary_function_ptr * const  at_boxwhisker;
  extern const unary_function_ptr * const  at_break;
  extern const unary_function_ptr * const  at_breakpoint;
  extern const unary_function_ptr * const  at_c1oc2;
  extern const unary_function_ptr * const  at_c1op2;
  extern const unary_function_ptr * const  at_cFactor;
  extern const unary_function_ptr * const  at_cSolve;
  extern const unary_function_ptr * const  at_cZeros;
  extern const unary_function_ptr * const  at_cache_tortue;
  extern const unary_function_ptr * const  at_calc_mode;
  extern const unary_function_ptr * const  at_camembert;
  extern const unary_function_ptr * const  at_canonical_form;
  extern const unary_function_ptr * const  at_cap;
  extern const unary_function_ptr * const  at_cas_setup;
  extern const unary_function_ptr * const  at_caseval;
  extern const unary_function_ptr * const  at_cat;
  extern const unary_function_ptr * const  at_cauchy;
  extern const unary_function_ptr * const  at_cauchy_cdf;
  extern const unary_function_ptr * const  at_cauchy_icdf;
  extern const unary_function_ptr * const  at_cauchyd;
  extern const unary_function_ptr * const  at_cauchyd_cdf;
  extern const unary_function_ptr * const  at_cauchyd_icdf;
  extern const unary_function_ptr * const  at_cd;
  extern const unary_function_ptr * const  at_cdf;
  extern const unary_function_ptr * const  at_cdfplot;
  extern const unary_function_ptr * const  at_ceil;
  extern const unary_function_ptr * const  at_ceiling;
  extern const unary_function_ptr * const  at_cell;
  extern const unary_function_ptr * const  at_center;
  extern const unary_function_ptr * const  at_center2interval;
  extern const unary_function_ptr * const  at_centered_cube;
  extern const unary_function_ptr * const  at_centered_tetrahedron;
  extern const unary_function_ptr * const  at_cfactor;
  extern const unary_function_ptr * const  at_cfsolve;
  extern const unary_function_ptr * const  at_changebase;
  extern const unary_function_ptr * const  at_char;
  extern const unary_function_ptr * const  at_charpoly;
  extern const unary_function_ptr * const  at_chinrem;
  extern const unary_function_ptr * const  at_chisquare;
  extern const unary_function_ptr * const  at_chisquare_cdf;
  extern const unary_function_ptr * const  at_chisquare_icdf;
  extern const unary_function_ptr * const  at_chisquared;
  extern const unary_function_ptr * const  at_chisquared_cdf;
  extern const unary_function_ptr * const  at_chisquared_icdf;
  extern const unary_function_ptr * const  at_chisquaret;
  extern const unary_function_ptr * const  at_choice;
  extern const unary_function_ptr * const  at_cholesky;
  extern const unary_function_ptr * const  at_choosebox;
  extern const unary_function_ptr * const  at_chrem;
  extern const unary_function_ptr * const  at_circle;
  extern const unary_function_ptr * const  at_circumcircle;
  extern const unary_function_ptr * const  at_classes;
  extern const unary_function_ptr * const  at_click;
  extern const unary_function_ptr * const  at_close;
  extern const unary_function_ptr * const  at_coeff;
  extern const unary_function_ptr * const  at_coeffs;
  extern const unary_function_ptr * const  at_col;
  extern const unary_function_ptr * const  at_colDim;
  extern const unary_function_ptr * const  at_colNorm;
  extern const unary_function_ptr * const  at_colSwap;
  extern const unary_function_ptr * const  at_coldim;
  extern const unary_function_ptr * const  at_collect;
  extern const unary_function_ptr * const  at_colnorm;
  extern const unary_function_ptr * const  at_color;
  extern const unary_function_ptr * const  at_colspace;
  extern const unary_function_ptr * const  at_colswap;
  extern const unary_function_ptr * const  at_comDenom;
  extern const unary_function_ptr * const  at_comb;
  extern const unary_function_ptr * const  at_combine;
  extern const unary_function_ptr * const  at_comment;
  extern const unary_function_ptr * const  at_common_perpendicular;
  extern const unary_function_ptr * const  at_companion;
  extern const unary_function_ptr * const  at_compare;
  extern const unary_function_ptr * const  at_complexroot;
  extern const unary_function_ptr * const  at_concat;
  extern const unary_function_ptr * const  at_cond;
  extern const unary_function_ptr * const  at_cone;
  extern const unary_function_ptr * const  at_conic;
  extern const unary_function_ptr * const  at_conj;
  extern const unary_function_ptr * const  at_conjugate_gradient;
  extern const unary_function_ptr * const  at_cont;
  extern const unary_function_ptr * const  at_contains;
  extern const unary_function_ptr * const  at_content;
  extern const unary_function_ptr * const  at_contourplot;
  extern const unary_function_ptr * const  at_convert;
  extern const unary_function_ptr * const  at_convert3d;
  extern const unary_function_ptr * const  at_convertir;
  extern const unary_function_ptr * const  at_convexhull;
  extern const unary_function_ptr * const  at_coordinates;
  extern const unary_function_ptr * const  at_copy;
  extern const unary_function_ptr * const  at_correlation;
  extern const unary_function_ptr * const  at_cos;
  extern const unary_function_ptr * const  at_cos2sintan;
  extern const unary_function_ptr * const  at_cosh;
  extern const unary_function_ptr * const  at_cot;
  extern const unary_function_ptr * const  at_cote;
  extern const unary_function_ptr * const  at_coth;
  extern const unary_function_ptr * const  at_count;
  extern const unary_function_ptr * const  at_count_eq;
  extern const unary_function_ptr * const  at_count_inf;
  extern const unary_function_ptr * const  at_count_sup;
  extern const unary_function_ptr * const  at_courbe_parametrique;
  extern const unary_function_ptr * const  at_courbe_polaire;
  extern const unary_function_ptr * const  at_covariance;
  extern const unary_function_ptr * const  at_covariance_correlation;
  extern const unary_function_ptr * const  at_cpartfrac;
  extern const unary_function_ptr * const  at_cpp;
  extern const unary_function_ptr * const  at_cprint;
  extern const unary_function_ptr * const  at_crationalroot;
  extern const unary_function_ptr * const  at_crayon;
  extern const unary_function_ptr * const  at_critical;
  extern const unary_function_ptr * const  at_cross;
  extern const unary_function_ptr * const  at_crossP;
  extern const unary_function_ptr * const  at_cross_ratio;
  extern const unary_function_ptr * const  at_crossproduct;
  extern const unary_function_ptr * const  at_csc;
  extern const unary_function_ptr * const  at_csch;
  extern const unary_function_ptr * const  at_csolve;
  extern const unary_function_ptr * const  at_csv2gen;
  extern const unary_function_ptr * const  at_cube;
  extern const unary_function_ptr * const  at_cumSum;
  extern const unary_function_ptr * const  at_cumsum;
  extern const unary_function_ptr * const  at_cumulated_frequencies;
  extern const unary_function_ptr * const  at_curl;
  extern const unary_function_ptr * const  at_current_sheet;
  extern const unary_function_ptr * const  at_curvature;
  extern const unary_function_ptr * const  at_curve;
  extern const unary_function_ptr * const  at_cyan;
  extern const unary_function_ptr * const  at_cycle2perm;
  extern const unary_function_ptr * const  at_cycleinv;
  extern const unary_function_ptr * const  at_cycles2permu;
  extern const unary_function_ptr * const  at_cyclotomic;
  extern const unary_function_ptr * const  at_cylinder;
  extern const unary_function_ptr * const  at_czeros;
  extern const unary_function_ptr * const  at_dayofweek;
  extern const unary_function_ptr * const  at_de;
  extern const unary_function_ptr * const  at_deSolve;
  extern const unary_function_ptr * const  at_debug;
  extern const unary_function_ptr * const  at_debug_infolevel;
  extern const unary_function_ptr * const  at_debut_enregistrement;
  extern const unary_function_ptr * const  at_decrement;
  extern const unary_function_ptr * const  at_degree;
  extern const unary_function_ptr * const  at_delcols;
  extern const unary_function_ptr * const  at_delrows;
  extern const unary_function_ptr * const  at_deltalist;
  extern const unary_function_ptr * const  at_denom;
  extern const unary_function_ptr * const  at_densityplot;
  extern const unary_function_ptr * const  at_deriver;
  extern const unary_function_ptr * const  at_desolve;
  extern const unary_function_ptr * const  at_dessine_tortue;
  extern const unary_function_ptr * const  at_det;
  extern const unary_function_ptr * const  at_det_minor;
  extern const unary_function_ptr * const  at_developper;
  extern const unary_function_ptr * const  at_developper_transcendant;
  extern const unary_function_ptr * const  at_dfc;
  extern const unary_function_ptr * const  at_dfc2f;
  extern const unary_function_ptr * const  at_diag;
  extern const unary_function_ptr * const  at_diff;
  extern const unary_function_ptr * const  at_dim;
  extern const unary_function_ptr * const  at_display;
  extern const unary_function_ptr * const  at_disque;
  extern const unary_function_ptr * const  at_disque_centre;
  extern const unary_function_ptr * const  at_distance;
  extern const unary_function_ptr * const  at_distance2;
  extern const unary_function_ptr * const  at_distanceat;
  extern const unary_function_ptr * const  at_distanceatraw;
  extern const unary_function_ptr * const  at_div;
  extern const unary_function_ptr * const  at_divcrement;
  extern const unary_function_ptr * const  at_divergence;
  extern const unary_function_ptr * const  at_divide;
  extern const unary_function_ptr * const  at_divis;
  extern const unary_function_ptr * const  at_division_point;
  extern const unary_function_ptr * const  at_divisors;
  extern const unary_function_ptr * const  at_divpc;
  extern const unary_function_ptr * const  at_dodecahedron;
  extern const unary_function_ptr * const  at_domain;
  extern const unary_function_ptr * const  at_dot;
  extern const unary_function_ptr * const  at_dotP;
  extern const unary_function_ptr * const  at_dot_paper;
  extern const unary_function_ptr * const  at_dotprod;
  extern const unary_function_ptr * const  at_droit;
  extern const unary_function_ptr * const  at_droite_tangente;
  extern const unary_function_ptr * const  at_dsolve;
  extern const unary_function_ptr * const  at_e2r;
  extern const unary_function_ptr * const  at_ecart_type;
  extern const unary_function_ptr * const  at_ecart_type_population;
  extern const unary_function_ptr * const  at_ecris;
  extern const unary_function_ptr * const  at_efface;
  extern const unary_function_ptr * const  at_egcd;
  extern const unary_function_ptr * const  at_egv;
  extern const unary_function_ptr * const  at_egvl;
  extern const unary_function_ptr * const  at_eigVc;
  extern const unary_function_ptr * const  at_eigVl;
  extern const unary_function_ptr * const  at_eigenvals;
  extern const unary_function_ptr * const  at_eigenvalues;
  extern const unary_function_ptr * const  at_eigenvectors;
  extern const unary_function_ptr * const  at_eigenvects;
  extern const unary_function_ptr * const  at_element;
  extern const unary_function_ptr * const  at_eliminate;
  extern const unary_function_ptr * const  at_ellipse;
  extern const unary_function_ptr * const  at_entry;
  extern const unary_function_ptr * const  at_envelope;
  extern const unary_function_ptr * const  at_epsilon2zero;
  extern const unary_function_ptr * const  at_equal2diff;
  extern const unary_function_ptr * const  at_equal2list;
  extern const unary_function_ptr * const  at_equation;
  extern const unary_function_ptr * const  at_equilateral_triangle;
  extern const unary_function_ptr * const  at_erase3d;
  extern const unary_function_ptr * const  at_erf;
  extern const unary_function_ptr * const  at_erfc;
  extern const unary_function_ptr * const  at_erfs;
  extern const unary_function_ptr * const  at_et;
  extern const unary_function_ptr * const  at_euler;
  extern const unary_function_ptr * const  at_euler_mac_laurin;
  extern const unary_function_ptr * const  at_eval;
  extern const unary_function_ptr * const  at_eval_level;
  extern const unary_function_ptr * const  at_evala;
  extern const unary_function_ptr * const  at_evalb;
  extern const unary_function_ptr * const  at_evalc;
  extern const unary_function_ptr * const  at_evalf;
  extern const unary_function_ptr * const  at_evalfa;
  extern const unary_function_ptr * const  at_evalm;
  extern const unary_function_ptr * const  at_even;
  extern const unary_function_ptr * const  at_evolute;
  extern const unary_function_ptr * const  at_exact;
  extern const unary_function_ptr * const  at_exbisector;
  extern const unary_function_ptr * const  at_excircle;
  extern const unary_function_ptr * const  at_execute;
  extern const unary_function_ptr * const  at_exp;
  extern const unary_function_ptr * const  at_exp2list;
  extern const unary_function_ptr * const  at_exp2pow;
  extern const unary_function_ptr * const  at_exp2trig;
  extern const unary_function_ptr * const  at_expexpand;
  extern const unary_function_ptr * const  at_expln2trig;
  extern const unary_function_ptr * const  at_exponential;
  extern const unary_function_ptr * const  at_exponential_cdf;
  extern const unary_function_ptr * const  at_exponential_icdf;
  extern const unary_function_ptr * const  at_exponential_regression;
  extern const unary_function_ptr * const  at_exponential_regression_plot;
  extern const unary_function_ptr * const  at_exponentiald;
  extern const unary_function_ptr * const  at_exponentiald_cdf;
  extern const unary_function_ptr * const  at_exponentiald_icdf;
  extern const unary_function_ptr * const  at_expr;
  extern const unary_function_ptr * const  at_extend;
  extern const unary_function_ptr * const  at_extract_measure;
  extern const unary_function_ptr * const  at_extrema;
  extern const unary_function_ptr * const  at_ezgcd;
  extern const unary_function_ptr * const  at_f2nd;
  extern const unary_function_ptr * const  at_fMax;
  extern const unary_function_ptr * const  at_fMin;
  extern const unary_function_ptr * const  at_fPart;
  extern const unary_function_ptr * const  at_faces;
  extern const unary_function_ptr * const  at_facteurs_premiers;
  extern const unary_function_ptr * const  at_factor;
  extern const unary_function_ptr * const  at_factor_xn;
  extern const unary_function_ptr * const  at_factorial;
  extern const unary_function_ptr * const  at_factoriser;
  extern const unary_function_ptr * const  at_factoriser_entier;
  extern const unary_function_ptr * const  at_factoriser_sur_C;
  extern const unary_function_ptr * const  at_factoriser_xn;
  extern const unary_function_ptr * const  at_factors;
  extern const unary_function_ptr * const  at_faire;
  extern const unary_function_ptr * const  at_fclose;
  extern const unary_function_ptr * const  at_fcoeff;
  extern const unary_function_ptr * const  at_fft;
  extern const unary_function_ptr * const  at_fft_mult_size;
  extern const unary_function_ptr * const  at_fieldplot;
  extern const unary_function_ptr * const  at_filled;
  extern const unary_function_ptr * const  at_fin_enregistrement;
  extern const unary_function_ptr * const  at_find;
  extern const unary_function_ptr * const  at_findhelp;
  extern const unary_function_ptr * const  at_fisher;
  extern const unary_function_ptr * const  at_fisher_cdf;
  extern const unary_function_ptr * const  at_fisher_icdf;
  extern const unary_function_ptr * const  at_fisherd;
  extern const unary_function_ptr * const  at_fisherd_cdf;
  extern const unary_function_ptr * const  at_fisherd_icdf;
  extern const unary_function_ptr * const  at_flatten;
  extern const unary_function_ptr * const  at_flatten1;
  extern const unary_function_ptr * const  at_float;
  extern const unary_function_ptr * const  at_float2rational;
  extern const unary_function_ptr * const  at_floor;
  extern const unary_function_ptr * const  at_fonction;
  extern const unary_function_ptr * const  at_fonction_derivee;
  extern const unary_function_ptr * const  at_fopen;
  extern const unary_function_ptr * const  at_format;
  extern const unary_function_ptr * const  at_fourier_an;
  extern const unary_function_ptr * const  at_fourier_bn;
  extern const unary_function_ptr * const  at_fourier_cn;
  extern const unary_function_ptr * const  at_fprint;
  extern const unary_function_ptr * const  at_frac;
  extern const unary_function_ptr * const  at_fracmod;
  extern const unary_function_ptr * const  at_frame_2d;
  extern const unary_function_ptr * const  at_frame_3d;
  extern const unary_function_ptr * const  at_frenet;
  extern const unary_function_ptr * const  at_frequencies;
  extern const unary_function_ptr * const  at_frobenius_norm;
  extern const unary_function_ptr * const  at_froot;
  extern const unary_function_ptr * const  at_fsolve;
  extern const unary_function_ptr * const  at_funcplot;
  extern const unary_function_ptr * const  at_function_diff;
  extern const unary_function_ptr * const  at_fxnd;
  extern const unary_function_ptr * const  at_galoisconj;
  extern const unary_function_ptr * const  at_gammad;
  extern const unary_function_ptr * const  at_gammad_cdf;
  extern const unary_function_ptr * const  at_gammad_icdf;
  extern const unary_function_ptr * const  at_gauche;
  extern const unary_function_ptr * const  at_gauss;
  extern const unary_function_ptr * const  at_gauss_seidel_linsolve;
  extern const unary_function_ptr * const  at_gaussjord;
  extern const unary_function_ptr * const  at_gaussquad;
  extern const unary_function_ptr * const  at_gbasis;
  extern const unary_function_ptr * const  at_gcd;
  extern const unary_function_ptr * const  at_gcdex;
  extern const unary_function_ptr * const  at_genpoly;
  extern const unary_function_ptr * const  at_geo2d;
  extern const unary_function_ptr * const  at_geo3d;
  extern const unary_function_ptr * const  at_geometric;
  extern const unary_function_ptr * const  at_geometric_cdf;
  extern const unary_function_ptr * const  at_geometric_icdf;
  extern const unary_function_ptr * const  at_getDenom;
  extern const unary_function_ptr * const  at_getKey;
  extern const unary_function_ptr * const  at_getNum;
  extern const unary_function_ptr * const  at_getType;
  extern const unary_function_ptr * const  at_ggb_ang;
  extern const unary_function_ptr * const  at_ggbalt;
  extern const unary_function_ptr * const  at_ggbsort;
  extern const unary_function_ptr * const  at_giac;
  extern const unary_function_ptr * const  at_goto;
  extern const unary_function_ptr * const  at_grad;
  extern const unary_function_ptr * const  at_gramschmidt;
  extern const unary_function_ptr * const  at_graph2tex;
  extern const unary_function_ptr * const  at_graph3d2tex;
  extern const unary_function_ptr * const  at_graph_scc;
  extern const unary_function_ptr * const  at_graphe;
  extern const unary_function_ptr * const  at_graphe3d;
  extern const unary_function_ptr * const  at_graphe_suite;
  extern const unary_function_ptr * const  at_greduce;
  extern const unary_function_ptr * const  at_green;
  extern const unary_function_ptr * const  at_grid_paper;
  extern const unary_function_ptr * const  at_groupermu;
  extern const unary_function_ptr * const  at_hadamard;
  extern const unary_function_ptr * const  at_half_cone;
  extern const unary_function_ptr * const  at_half_line;
  extern const unary_function_ptr * const  at_halftan;
  extern const unary_function_ptr * const  at_halftan_hyp2exp;
  extern const unary_function_ptr * const  at_halt;
  extern const unary_function_ptr * const  at_hamdist;
  extern const unary_function_ptr * const  at_harmonic;
  extern const unary_function_ptr * const  at_harmonic_conjugate;
  extern const unary_function_ptr * const  at_harmonic_division;
  extern const unary_function_ptr * const  at_has;
  extern const unary_function_ptr * const  at_hasard;
  extern const unary_function_ptr * const  at_head;
  extern const unary_function_ptr * const  at_heap_mult;
  extern const unary_function_ptr * const  at_help;
  extern const unary_function_ptr * const  at_hermite;
  extern const unary_function_ptr * const  at_hessenberg;
  extern const unary_function_ptr * const  at_hessian;
  extern const unary_function_ptr * const  at_heugcd;
  extern const unary_function_ptr * const  at_hexagon;
  extern const unary_function_ptr * const  at_hexprint;
  extern const unary_function_ptr * const  at_hidden_name;
  extern const unary_function_ptr * const  at_hilbert;
  extern const unary_function_ptr * const  at_histogram;
  extern const unary_function_ptr * const  at_hold;
  extern const unary_function_ptr * const  at_homothety;
  extern const unary_function_ptr * const  at_horner;
  extern const unary_function_ptr * const  at_hp38;
  extern const unary_function_ptr * const  at_hyp2exp;
  extern const unary_function_ptr * const  at_hyperbola;
  extern const unary_function_ptr * const  at_hyperplan;
  extern const unary_function_ptr * const  at_hypersphere;
  extern const unary_function_ptr * const  at_hypersurface;
  extern const unary_function_ptr * const  at_iPart;
  extern const unary_function_ptr * const  at_iabcuv;
  extern const unary_function_ptr * const  at_ibasis;
  extern const unary_function_ptr * const  at_ibpdv;
  extern const unary_function_ptr * const  at_ibpu;
  extern const unary_function_ptr * const  at_icdf;
  extern const unary_function_ptr * const  at_ichinrem;
  extern const unary_function_ptr * const  at_ichrem;
  extern const unary_function_ptr * const  at_icontent;
  extern const unary_function_ptr * const  at_icosahedron;
  extern const unary_function_ptr * const  at_id;
  extern const unary_function_ptr * const  at_identity;
  extern const unary_function_ptr * const  at_idivis;
  extern const unary_function_ptr * const  at_idn;
  extern const unary_function_ptr * const  at_iegcd;
  extern const unary_function_ptr * const  at_ifactor;
  extern const unary_function_ptr * const  at_ifactors;
  extern const unary_function_ptr * const  at_ifft;
  extern const unary_function_ptr * const  at_igamma;
  extern const unary_function_ptr * const  at_igamma_exp;
  extern const unary_function_ptr * const  at_igcd;
  extern const unary_function_ptr * const  at_igcdex;
  extern const unary_function_ptr * const  at_ihermite;
  extern const unary_function_ptr * const  at_ilaplace;
  extern const unary_function_ptr * const  at_im;
  extern const unary_function_ptr * const  at_imag;
  extern const unary_function_ptr * const  at_image;
  extern const unary_function_ptr * const  at_implicit_diff;
  extern const unary_function_ptr * const  at_implicitdiff;
  extern const unary_function_ptr * const  at_implicitplot;
  extern const unary_function_ptr * const  at_implicitplot3d;
  extern const unary_function_ptr * const  at_inString;
  extern const unary_function_ptr * const  at_in_ideal;
  extern const unary_function_ptr * const  at_incircle;
  extern const unary_function_ptr * const  at_increment;
  extern const unary_function_ptr * const  at_indets;
  extern const unary_function_ptr * const  at_index;
  extern const unary_function_ptr * const  at_inequationplot;
  extern const unary_function_ptr * const  at_inferieur_strict_sort;
  extern const unary_function_ptr * const  at_innertln;
  extern const unary_function_ptr * const  at_input;
  extern const unary_function_ptr * const  at_inputform;
  extern const unary_function_ptr * const  at_insert;
  extern const unary_function_ptr * const  at_insmod;
  extern const unary_function_ptr * const  at_int;
  extern const unary_function_ptr * const  at_intDiv;
  extern const unary_function_ptr * const  at_integer_format;
  extern const unary_function_ptr * const  at_integrate;
  extern const unary_function_ptr * const  at_integrer;
  extern const unary_function_ptr * const  at_inter;
  extern const unary_function_ptr * const  at_interactive;
  extern const unary_function_ptr * const  at_interactive_odeplot;
  extern const unary_function_ptr * const  at_interactive_plotode;
  extern const unary_function_ptr * const  at_interp;
  extern const unary_function_ptr * const  at_interval2center;
  extern const unary_function_ptr * const  at_inv;
  extern const unary_function_ptr * const  at_invd_blocksize;
  extern const unary_function_ptr * const  at_inverse;
  extern const unary_function_ptr * const  at_inversion;
  extern const unary_function_ptr * const  at_invlaplace;
  extern const unary_function_ptr * const  at_invztrans;
  extern const unary_function_ptr * const  at_iquo;
  extern const unary_function_ptr * const  at_iquorem;
  extern const unary_function_ptr * const  at_iratrecon;
  extern const unary_function_ptr * const  at_irem;
  extern const unary_function_ptr * const  at_isPrime;
  extern const unary_function_ptr * const  at_is_3dpoint;
  extern const unary_function_ptr * const  at_is_collinear;
  extern const unary_function_ptr * const  at_is_concyclic;
  extern const unary_function_ptr * const  at_is_conjugate;
  extern const unary_function_ptr * const  at_is_coplanar;
  extern const unary_function_ptr * const  at_is_cospherical;
  extern const unary_function_ptr * const  at_is_cycle;
  extern const unary_function_ptr * const  at_is_element;
  extern const unary_function_ptr * const  at_is_equilateral;
  extern const unary_function_ptr * const  at_is_harmonic;
  extern const unary_function_ptr * const  at_is_harmonic_circle_bundle;
  extern const unary_function_ptr * const  at_is_harmonic_line_bundle;
  extern const unary_function_ptr * const  at_is_included;
  extern const unary_function_ptr * const  at_is_inside;
  extern const unary_function_ptr * const  at_is_isosceles;
  extern const unary_function_ptr * const  at_is_orthogonal;
  extern const unary_function_ptr * const  at_is_parallel;
  extern const unary_function_ptr * const  at_is_parallelogram;
  extern const unary_function_ptr * const  at_is_permu;
  extern const unary_function_ptr * const  at_is_perpendicular;
  extern const unary_function_ptr * const  at_is_polynomial;
  extern const unary_function_ptr * const  at_is_prime;
  extern const unary_function_ptr * const  at_is_pseudoprime;
  extern const unary_function_ptr * const  at_is_rectangle;
  extern const unary_function_ptr * const  at_is_rhombus;
  extern const unary_function_ptr * const  at_is_square;
  extern const unary_function_ptr * const  at_ismith;
  extern const unary_function_ptr * const  at_isobarycenter;
  extern const unary_function_ptr * const  at_isom;
  extern const unary_function_ptr * const  at_isopolygon;
  extern const unary_function_ptr * const  at_isosceles_triangle;
  extern const unary_function_ptr * const  at_isprime;
  extern const unary_function_ptr * const  at_ithprime;
  extern const unary_function_ptr * const  at_jacobi_linsolve;
  extern const unary_function_ptr * const  at_jacobi_symbol;
  extern const unary_function_ptr * const  at_jordan;
  extern const unary_function_ptr * const  at_jusque;
  extern const unary_function_ptr * const  at_ker;
  extern const unary_function_ptr * const  at_kernel;
  extern const unary_function_ptr * const  at_keyboard;
  extern const unary_function_ptr * const  at_kill;
  extern const unary_function_ptr * const  at_kolmogorovd;
  extern const unary_function_ptr * const  at_kolmogorovt;
  extern const unary_function_ptr * const  at_l1norm;
  extern const unary_function_ptr * const  at_l2norm;
  extern const unary_function_ptr * const  at_label;
  extern const unary_function_ptr * const  at_lagrange;
  extern const unary_function_ptr * const  at_laguerre;
  extern const unary_function_ptr * const  at_lapack_limit;
  extern const unary_function_ptr * const  at_laplace;
  extern const unary_function_ptr * const  at_laplacian;
  extern const unary_function_ptr * const  at_latex;
  extern const unary_function_ptr * const  at_lcm;
  extern const unary_function_ptr * const  at_lcoeff;
  extern const unary_function_ptr * const  at_ldegree;
  extern const unary_function_ptr * const  at_left;
  extern const unary_function_ptr * const  at_legend;
  extern const unary_function_ptr * const  at_legendre;
  extern const unary_function_ptr * const  at_legendre_symbol;
  extern const unary_function_ptr * const  at_len;
  extern const unary_function_ptr * const  at_length;
  extern const unary_function_ptr * const  at_leve_crayon;
  extern const unary_function_ptr * const  at_lgcd;
  extern const unary_function_ptr * const  at_lhs;
  extern const unary_function_ptr * const  at_ligne_polygonale;
  extern const unary_function_ptr * const  at_ligne_polygonale_pointee;
  extern const unary_function_ptr * const  at_limit;
  extern const unary_function_ptr * const  at_limite;
  extern const unary_function_ptr * const  at_lin;
  extern const unary_function_ptr * const  at_line;
  extern const unary_function_ptr * const  at_line_inter;
  extern const unary_function_ptr * const  at_line_paper;
  extern const unary_function_ptr * const  at_line_segments;
  extern const unary_function_ptr * const  at_linear_interpolate;
  extern const unary_function_ptr * const  at_linear_regression;
  extern const unary_function_ptr * const  at_linear_regression_plot;
  extern const unary_function_ptr * const  at_lineariser;
  extern const unary_function_ptr * const  at_lineariser_trigo;
  extern const unary_function_ptr * const  at_linfnorm;
  extern const unary_function_ptr * const  at_link2giac;
  extern const unary_function_ptr * const  at_linsolve;
  extern const unary_function_ptr * const  at_linspace;
  extern const unary_function_ptr * const  at_lis;
  extern const unary_function_ptr * const  at_lis_phrase;
  extern const unary_function_ptr * const  at_list2exp;
  extern const unary_function_ptr * const  at_list2mat;
  extern const unary_function_ptr * const  at_listplot;
  extern const unary_function_ptr * const  at_lll;
  extern const unary_function_ptr * const  at_ln;
  extern const unary_function_ptr * const  at_lnGamma_minus;
  extern const unary_function_ptr * const  at_lname;
  extern const unary_function_ptr * const  at_lncollect;
  extern const unary_function_ptr * const  at_lnexpand;
  extern const unary_function_ptr * const  at_locus;
  extern const unary_function_ptr * const  at_log10;
  extern const unary_function_ptr * const  at_logarithmic_regression;
  extern const unary_function_ptr * const  at_logarithmic_regression_plot;
  extern const unary_function_ptr * const  at_logb;
  extern const unary_function_ptr * const  at_logistic_regression;
  extern const unary_function_ptr * const  at_logistic_regression_plot;
  extern const unary_function_ptr * const  at_lpsolve;
  extern const unary_function_ptr * const  at_lsmod;
  extern const unary_function_ptr * const  at_lsq;
  extern const unary_function_ptr * const  at_lu;
  extern const unary_function_ptr * const  at_lvar;
  extern const unary_function_ptr * const  at_mRow;
  extern const unary_function_ptr * const  at_mRowAdd;
  extern const unary_function_ptr * const  at_magenta;
  extern const unary_function_ptr * const  at_makelist;
  extern const unary_function_ptr * const  at_makemat;
  extern const unary_function_ptr * const  at_makemod;
  extern const unary_function_ptr * const  at_makesuite;
  extern const unary_function_ptr * const  at_makevector;
  extern const unary_function_ptr * const  at_mantissa;
  extern const unary_function_ptr * const  at_map;
  extern const unary_function_ptr * const  at_maple2mupad;
  extern const unary_function_ptr * const  at_maple2xcas;
  extern const unary_function_ptr * const  at_maple_ifactors;
  extern const unary_function_ptr * const  at_maple_mode;
  extern const unary_function_ptr * const  at_markov;
  extern const unary_function_ptr * const  at_mat2list;
  extern const unary_function_ptr * const  at_mathml;
  extern const unary_function_ptr * const  at_matpow;
  extern const unary_function_ptr * const  at_matrix;
  extern const unary_function_ptr * const  at_matrix_norm;
  extern const unary_function_ptr * const  at_max;
  extern const unary_function_ptr * const  at_max_algext;
  extern const unary_function_ptr * const  at_maximize;
  extern const unary_function_ptr * const  at_maxnorm;
  extern const unary_function_ptr * const  at_mean;
  extern const unary_function_ptr * const  at_median;
  extern const unary_function_ptr * const  at_median_line;
  extern const unary_function_ptr * const  at_member;
  extern const unary_function_ptr * const  at_mgf;
  extern const unary_function_ptr * const  at_mid;
  extern const unary_function_ptr * const  at_midpoint;
  extern const unary_function_ptr * const  at_min;
  extern const unary_function_ptr * const  at_min_proba_time;
  extern const unary_function_ptr * const  at_minimax;
  extern const unary_function_ptr * const  at_minimize;
  extern const unary_function_ptr * const  at_mkisom;
  extern const unary_function_ptr * const  at_mksa;
  extern const unary_function_ptr * const  at_modgcd;
  extern const unary_function_ptr * const  at_modgcd_cachesize;
  extern const unary_function_ptr * const  at_modp;
  extern const unary_function_ptr * const  at_mods;
  extern const unary_function_ptr * const  at_montre_tortue;
  extern const unary_function_ptr * const  at_moustache;
  extern const unary_function_ptr * const  at_moyal;
  extern const unary_function_ptr * const  at_moyenne;
  extern const unary_function_ptr * const  at_mpzclass_allowed;
  extern const unary_function_ptr * const  at_mul;
  extern const unary_function_ptr * const  at_mult_c_conjugate;
  extern const unary_function_ptr * const  at_mult_conjugate;
  extern const unary_function_ptr * const  at_multcrement;
  extern const unary_function_ptr * const  at_multinomial;
  extern const unary_function_ptr * const  at_multiplier_conjugue;
  extern const unary_function_ptr * const  at_multiplier_conjugue_complexe;
  extern const unary_function_ptr * const  at_multiply;
  extern const unary_function_ptr * const  at_mupad2maple;
  extern const unary_function_ptr * const  at_mupad2xcas;
  extern const unary_function_ptr * const  at_nCr;
  extern const unary_function_ptr * const  at_nDeriv;
  extern const unary_function_ptr * const  at_nInt;
  extern const unary_function_ptr * const  at_nPr;
  extern const unary_function_ptr * const  at_nSolve;
  extern const unary_function_ptr * const  at_ncols;
  extern const unary_function_ptr * const  at_negbinomial;
  extern const unary_function_ptr * const  at_negbinomial_cdf;
  extern const unary_function_ptr * const  at_negbinomial_icdf;
  extern const unary_function_ptr * const  at_newList;
  extern const unary_function_ptr * const  at_newMat;
  extern const unary_function_ptr * const  at_newton;
  extern const unary_function_ptr * const  at_nextperm;
  extern const unary_function_ptr * const  at_nextprime;
  extern const unary_function_ptr * const  at_nodisp;
  extern const unary_function_ptr * const  at_non;
  extern const unary_function_ptr * const  at_non_recursive_normal;
  extern const unary_function_ptr * const  at_nop;
  extern const unary_function_ptr * const  at_nops;
  extern const unary_function_ptr * const  at_norm;
  extern const unary_function_ptr * const  at_normal;
  extern const unary_function_ptr * const  at_normal_cdf;
  extern const unary_function_ptr * const  at_normal_icdf;
  extern const unary_function_ptr * const  at_normald;
  extern const unary_function_ptr * const  at_normald_cdf;
  extern const unary_function_ptr * const  at_normald_icdf;
  extern const unary_function_ptr * const  at_normalize;
  extern const unary_function_ptr * const  at_normalt;
  extern const unary_function_ptr * const  at_nprimes;
  extern const unary_function_ptr * const  at_nrows;
  extern const unary_function_ptr * const  at_nuage_points;
  extern const unary_function_ptr * const  at_nullspace;
  extern const unary_function_ptr * const  at_numer;
  extern const unary_function_ptr * const  at_octahedron;
  extern const unary_function_ptr * const  at_octprint;
  extern const unary_function_ptr * const  at_odd;
  extern const unary_function_ptr * const  at_odeplot;
  extern const unary_function_ptr * const  at_odesolve;
  extern const unary_function_ptr * const  at_op;
  extern const unary_function_ptr * const  at_open;
  extern const unary_function_ptr * const  at_open_polygon;
  extern const unary_function_ptr * const  at_or;
  extern const unary_function_ptr * const  at_ord;
  extern const unary_function_ptr * const  at_order_size;
  extern const unary_function_ptr * const  at_ordinate;
  extern const unary_function_ptr * const  at_orthocenter;
  extern const unary_function_ptr * const  at_orthogonal;
  extern const unary_function_ptr * const  at_os_version;
  extern const unary_function_ptr * const  at_osculating_circle;
  extern const unary_function_ptr * const  at_ou;
  extern const unary_function_ptr * const  at_output;
  extern const unary_function_ptr * const  at_p1oc2;
  extern const unary_function_ptr * const  at_p1op2;
  extern const unary_function_ptr * const  at_pa2b2;
  extern const unary_function_ptr * const  at_pade;
  extern const unary_function_ptr * const  at_padic_linsolve;
  extern const unary_function_ptr * const  at_parabola;
  extern const unary_function_ptr * const  at_parabolic_interpolate;
  extern const unary_function_ptr * const  at_parallel;
  extern const unary_function_ptr * const  at_parallelepiped;
  extern const unary_function_ptr * const  at_parallelogram;
  extern const unary_function_ptr * const  at_parameq;
  extern const unary_function_ptr * const  at_parameter;
  extern const unary_function_ptr * const  at_paramplot;
  extern const unary_function_ptr * const  at_pari;
  extern const unary_function_ptr * const  at_pari_unlock;
  extern const unary_function_ptr * const  at_part;
  extern const unary_function_ptr * const  at_partfrac;
  extern const unary_function_ptr * const  at_pas;
  extern const unary_function_ptr * const  at_pas_de_cote;
  extern const unary_function_ptr * const  at_pcar;
  extern const unary_function_ptr * const  at_pcar_hessenberg;
  extern const unary_function_ptr * const  at_pcoeff;
  extern const unary_function_ptr * const  at_perimeter;
  extern const unary_function_ptr * const  at_perimeterat;
  extern const unary_function_ptr * const  at_perimeteratraw;
  extern const unary_function_ptr * const  at_periodic;
  extern const unary_function_ptr * const  at_perm;
  extern const unary_function_ptr * const  at_perminv;
  extern const unary_function_ptr * const  at_permu2cycles;
  extern const unary_function_ptr * const  at_permu2mat;
  extern const unary_function_ptr * const  at_permuorder;
  extern const unary_function_ptr * const  at_perpen_bisector;
  extern const unary_function_ptr * const  at_perpendicular;
  extern const unary_function_ptr * const  at_peval;
  extern const unary_function_ptr * const  at_piecewise;
  extern const unary_function_ptr * const  at_pivot;
  extern const unary_function_ptr * const  at_pixoff;
  extern const unary_function_ptr * const  at_pixon;
  extern const unary_function_ptr * const  at_plane;
  extern const unary_function_ptr * const  at_playsnd;
  extern const unary_function_ptr * const  at_plot;
  extern const unary_function_ptr * const  at_plot3d;
  extern const unary_function_ptr * const  at_plot_style;
  extern const unary_function_ptr * const  at_plotarea;
  extern const unary_function_ptr * const  at_plotcdf;
  extern const unary_function_ptr * const  at_plotcontour;
  extern const unary_function_ptr * const  at_plotdensity;
  extern const unary_function_ptr * const  at_plotfield;
  extern const unary_function_ptr * const  at_plotfunc;
  extern const unary_function_ptr * const  at_plotimplicit;
  extern const unary_function_ptr * const  at_plotinequation;
  extern const unary_function_ptr * const  at_plotlist;
  extern const unary_function_ptr * const  at_plotmatrix;
  extern const unary_function_ptr * const  at_plotode;
  extern const unary_function_ptr * const  at_plotparam;
  extern const unary_function_ptr * const  at_plotpolar;
  extern const unary_function_ptr * const  at_plotproba;
  extern const unary_function_ptr * const  at_plotseq;
  extern const unary_function_ptr * const  at_pmin;
  extern const unary_function_ptr * const  at_pnt;
  extern const unary_function_ptr * const  at_point;
  extern const unary_function_ptr * const  at_point2d;
  extern const unary_function_ptr * const  at_point3d;
  extern const unary_function_ptr * const  at_pointer;
  extern const unary_function_ptr * const  at_poisson;
  extern const unary_function_ptr * const  at_poisson_cdf;
  extern const unary_function_ptr * const  at_poisson_icdf;
  extern const unary_function_ptr * const  at_polar;
  extern const unary_function_ptr * const  at_polar2rectangular;
  extern const unary_function_ptr * const  at_polar_coordinates;
  extern const unary_function_ptr * const  at_polar_point;
  extern const unary_function_ptr * const  at_polarplot;
  extern const unary_function_ptr * const  at_pole;
  extern const unary_function_ptr * const  at_poly2symb;
  extern const unary_function_ptr * const  at_polyEval;
  extern const unary_function_ptr * const  at_polygamma;
  extern const unary_function_ptr * const  at_polygon;
  extern const unary_function_ptr * const  at_polygone_rempli;
  extern const unary_function_ptr * const  at_polygonplot;
  extern const unary_function_ptr * const  at_polygonscatterplot;
  extern const unary_function_ptr * const  at_polyhedron;
  extern const unary_function_ptr * const  at_polynomial_regression;
  extern const unary_function_ptr * const  at_polynomial_regression_plot;
  extern const unary_function_ptr * const  at_position;
  extern const unary_function_ptr * const  at_poslbdLMQ;
  extern const unary_function_ptr * const  at_posubLMQ;
  extern const unary_function_ptr * const  at_potential;
  extern const unary_function_ptr * const  at_pour;
  extern const unary_function_ptr * const  at_pow2exp;
  extern const unary_function_ptr * const  at_power_regression;
  extern const unary_function_ptr * const  at_power_regression_plot;
  extern const unary_function_ptr * const  at_powermod;
  extern const unary_function_ptr * const  at_powerpc;
  extern const unary_function_ptr * const  at_powexpand;
  extern const unary_function_ptr * const  at_powmod;
  extern const unary_function_ptr * const  at_prepend;
  extern const unary_function_ptr * const  at_preval;
  extern const unary_function_ptr * const  at_prevperm;
  extern const unary_function_ptr * const  at_prevprime;
  extern const unary_function_ptr * const  at_primpart;
  extern const unary_function_ptr * const  at_print;
  extern const unary_function_ptr * const  at_printf;
  extern const unary_function_ptr * const  at_printpow;
  extern const unary_function_ptr * const  at_prism;
  extern const unary_function_ptr * const  at_product;
  extern const unary_function_ptr * const  at_prog_eval_level;
  extern const unary_function_ptr * const  at_projection;
  extern const unary_function_ptr * const  at_proot;
  extern const unary_function_ptr * const  at_propFrac;
  extern const unary_function_ptr * const  at_propfrac;
  extern const unary_function_ptr * const  at_psrgcd;
  extern const unary_function_ptr * const  at_ptayl;
  extern const unary_function_ptr * const  at_pwd;
  extern const unary_function_ptr * const  at_pyramid;
  extern const unary_function_ptr * const  at_q2a;
  extern const unary_function_ptr * const  at_qr;
  extern const unary_function_ptr * const  at_quadric;
  extern const unary_function_ptr * const  at_quadrilateral;
  extern const unary_function_ptr * const  at_quantile;
  extern const unary_function_ptr * const  at_quartile1;
  extern const unary_function_ptr * const  at_quartile3;
  extern const unary_function_ptr * const  at_quartiles;
  extern const unary_function_ptr * const  at_quaternion;
  extern const unary_function_ptr * const  at_quest;
  extern const unary_function_ptr * const  at_quo;
  extern const unary_function_ptr * const  at_quorem;
  extern const unary_function_ptr * const  at_quote;
  extern const unary_function_ptr * const  at_r2e;
  extern const unary_function_ptr * const  at_radical_axis;
  extern const unary_function_ptr * const  at_radius;
  extern const unary_function_ptr * const  at_ramene;
  extern const unary_function_ptr * const  at_rand;
  extern const unary_function_ptr * const  at_randMat;
  extern const unary_function_ptr * const  at_randNorm;
  extern const unary_function_ptr * const  at_randPoly;
  extern const unary_function_ptr * const  at_randbinomial;
  extern const unary_function_ptr * const  at_randchisquare;
  extern const unary_function_ptr * const  at_randchisquared;
  extern const unary_function_ptr * const  at_randexp;
  extern const unary_function_ptr * const  at_randfisher;
  extern const unary_function_ptr * const  at_randfisherd;
  extern const unary_function_ptr * const  at_randgeometric;
  extern const unary_function_ptr * const  at_randint;
  extern const unary_function_ptr * const  at_randmarkov;
  extern const unary_function_ptr * const  at_randmatrix;
  extern const unary_function_ptr * const  at_randmultinomial;
  extern const unary_function_ptr * const  at_randnormald;
  extern const unary_function_ptr * const  at_random;
  extern const unary_function_ptr * const  at_randperm;
  extern const unary_function_ptr * const  at_randpoisson;
  extern const unary_function_ptr * const  at_randpoly;
  extern const unary_function_ptr * const  at_randstudent;
  extern const unary_function_ptr * const  at_randstudentd;
  extern const unary_function_ptr * const  at_randvector;
  extern const unary_function_ptr * const  at_range;
  extern const unary_function_ptr * const  at_rank;
  extern const unary_function_ptr * const  at_ranm;
  extern const unary_function_ptr * const  at_ranv;
  extern const unary_function_ptr * const  at_rassembler_trigo;
  extern const unary_function_ptr * const  at_rat_jordan;
  extern const unary_function_ptr * const  at_rat_jordan_block;
  extern const unary_function_ptr * const  at_rationalroot;
  extern const unary_function_ptr * const  at_ratnormal;
  extern const unary_function_ptr * const  at_rdiv;
  extern const unary_function_ptr * const  at_re;
  extern const unary_function_ptr * const  at_read;
  extern const unary_function_ptr * const  at_readrgb;
  extern const unary_function_ptr * const  at_readwav;
  extern const unary_function_ptr * const  at_real;
  extern const unary_function_ptr * const  at_realproot;
  extern const unary_function_ptr * const  at_realroot;
  extern const unary_function_ptr * const  at_reciprocation;
  extern const unary_function_ptr * const  at_rectangle;
  extern const unary_function_ptr * const  at_rectangle_plein;
  extern const unary_function_ptr * const  at_rectangular2polar;
  extern const unary_function_ptr * const  at_rectangular2spherical;
  extern const unary_function_ptr * const  at_rectangular_coordinates;
  extern const unary_function_ptr * const  at_recule;
  extern const unary_function_ptr * const  at_red;
  extern const unary_function_ptr * const  at_redim;
  extern const unary_function_ptr * const  at_reduced_conic;
  extern const unary_function_ptr * const  at_reduced_quadric;
  extern const unary_function_ptr * const  at_ref;
  extern const unary_function_ptr * const  at_reflection;
  extern const unary_function_ptr * const  at_regroup;
  extern const unary_function_ptr * const  at_rem;
  extern const unary_function_ptr * const  at_remain;
  extern const unary_function_ptr * const  at_remove;
  extern const unary_function_ptr * const  at_remove_language;
  extern const unary_function_ptr * const  at_reorder;
  extern const unary_function_ptr * const  at_repete;
  extern const unary_function_ptr * const  at_replace;
  extern const unary_function_ptr * const  at_reset_solve_counter;
  extern const unary_function_ptr * const  at_residue;
  extern const unary_function_ptr * const  at_resoudre;
  extern const unary_function_ptr * const  at_resoudre_dans_C;
  extern const unary_function_ptr * const  at_resoudre_systeme_lineaire;
  extern const unary_function_ptr * const  at_restart;
  extern const unary_function_ptr * const  at_restart_modes;
  extern const unary_function_ptr * const  at_restart_vars;
  extern const unary_function_ptr * const  at_resultant;
  extern const unary_function_ptr * const  at_reverse;
  extern const unary_function_ptr * const  at_reverse_rsolve;
  extern const unary_function_ptr * const  at_revert;
  extern const unary_function_ptr * const  at_revlist;
  extern const unary_function_ptr * const  at_rhombus;
  extern const unary_function_ptr * const  at_rhs;
  extern const unary_function_ptr * const  at_right;
  extern const unary_function_ptr * const  at_right_triangle;
  extern const unary_function_ptr * const  at_risch;
  extern const unary_function_ptr * const  at_rm_a_z;
  extern const unary_function_ptr * const  at_rm_all_vars;
  extern const unary_function_ptr * const  at_rmbreakpoint;
  extern const unary_function_ptr * const  at_rmmod;
  extern const unary_function_ptr * const  at_rmwatch;
  extern const unary_function_ptr * const  at_romberg;
  extern const unary_function_ptr * const  at_rond;
  extern const unary_function_ptr * const  at_rootof;
  extern const unary_function_ptr * const  at_roots;
  extern const unary_function_ptr * const  at_rotate;
  extern const unary_function_ptr * const  at_rotation;
  extern const unary_function_ptr * const  at_round;
  extern const unary_function_ptr * const  at_row;
  extern const unary_function_ptr * const  at_rowAdd;
  extern const unary_function_ptr * const  at_rowDim;
  extern const unary_function_ptr * const  at_rowNorm;
  extern const unary_function_ptr * const  at_rowSwap;
  extern const unary_function_ptr * const  at_rowdim;
  extern const unary_function_ptr * const  at_rownorm;
  extern const unary_function_ptr * const  at_rowspace;
  extern const unary_function_ptr * const  at_rowswap;
  extern const unary_function_ptr * const  at_rpn;
  extern const unary_function_ptr * const  at_rref;
  extern const unary_function_ptr * const  at_rsolve;
  extern const unary_function_ptr * const  at_sample;
  extern const unary_function_ptr * const  at_saute;
  extern const unary_function_ptr * const  at_sauve;
  extern const unary_function_ptr * const  at_save_history;
  extern const unary_function_ptr * const  at_scalarProduct;
  extern const unary_function_ptr * const  at_scalar_product;
  extern const unary_function_ptr * const  at_scale;
  extern const unary_function_ptr * const  at_scaleadd;
  extern const unary_function_ptr * const  at_scatterplot;
  extern const unary_function_ptr * const  at_schur;
  extern const unary_function_ptr * const  at_sec;
  extern const unary_function_ptr * const  at_sech;
  extern const unary_function_ptr * const  at_segment;
  extern const unary_function_ptr * const  at_select;
  extern const unary_function_ptr * const  at_semi_augment;
  extern const unary_function_ptr * const  at_seq;
  extern const unary_function_ptr * const  at_seqplot;
  extern const unary_function_ptr * const  at_seqsolve;
  extern const unary_function_ptr * const  at_series;
  extern const unary_function_ptr * const  at_set_language;
  extern const unary_function_ptr * const  at_shift;
  extern const unary_function_ptr * const  at_shift_phase;
  extern const unary_function_ptr * const  at_show_language;
  extern const unary_function_ptr * const  at_shuffle;
  extern const unary_function_ptr * const  at_si;
  extern const unary_function_ptr * const  at_sialorssinon;
  extern const unary_function_ptr * const  at_sign;
  extern const unary_function_ptr * const  at_signature;
  extern const unary_function_ptr * const  at_signe;
  extern const unary_function_ptr * const  at_similarity;
  extern const unary_function_ptr * const  at_simp2;
  extern const unary_function_ptr * const  at_simplex_reduce;
  extern const unary_function_ptr * const  at_simplifier;
  extern const unary_function_ptr * const  at_simplify;
  extern const unary_function_ptr * const  at_simult;
  extern const unary_function_ptr * const  at_sin;
  extern const unary_function_ptr * const  at_sin2costan;
  extern const unary_function_ptr * const  at_sincos;
  extern const unary_function_ptr * const  at_single_inter;
  extern const unary_function_ptr * const  at_singular;
  extern const unary_function_ptr * const  at_sinh;
  extern const unary_function_ptr * const  at_sinon;
  extern const unary_function_ptr * const  at_size;
  extern const unary_function_ptr * const  at_sizes;
  extern const unary_function_ptr * const  at_slope;
  extern const unary_function_ptr * const  at_slopeat;
  extern const unary_function_ptr * const  at_slopeatraw;
  extern const unary_function_ptr * const  at_smith;
  extern const unary_function_ptr * const  at_smod;
  extern const unary_function_ptr * const  at_snedecor;
  extern const unary_function_ptr * const  at_snedecor_cdf;
  extern const unary_function_ptr * const  at_snedecor_icdf;
  extern const unary_function_ptr * const  at_snedecord;
  extern const unary_function_ptr * const  at_snedecord_cdf;
  extern const unary_function_ptr * const  at_snedecord_icdf;
  extern const unary_function_ptr * const  at_solve;
  extern const unary_function_ptr * const  at_solve_zero_extremum;
  extern const unary_function_ptr * const  at_somme;
  extern const unary_function_ptr * const  at_sommet;
  extern const unary_function_ptr * const  at_sort;
  extern const unary_function_ptr * const  at_sorta;
  extern const unary_function_ptr * const  at_sortd;
  extern const unary_function_ptr * const  at_soundsec;
  extern const unary_function_ptr * const  at_sphere;
  extern const unary_function_ptr * const  at_spherical2rectangular;
  extern const unary_function_ptr * const  at_spline;
  extern const unary_function_ptr * const  at_split;
  extern const unary_function_ptr * const  at_spread2mathml;
  extern const unary_function_ptr * const  at_spreadsheet;
  extern const unary_function_ptr * const  at_sq;
  extern const unary_function_ptr * const  at_sqrfree;
  extern const unary_function_ptr * const  at_sqrt;
  extern const unary_function_ptr * const  at_square;
  extern const unary_function_ptr * const  at_srand;
  extern const unary_function_ptr * const  at_sst;
  extern const unary_function_ptr * const  at_sst_in;
  extern const unary_function_ptr * const  at_stdDev;
  extern const unary_function_ptr * const  at_stddev;
  extern const unary_function_ptr * const  at_stddevp;
  extern const unary_function_ptr * const  at_step_infolevel;
  extern const unary_function_ptr * const  at_sto;
  extern const unary_function_ptr * const  at_strassen_limit;
  extern const unary_function_ptr * const  at_string;
  extern const unary_function_ptr * const  at_student;
  extern const unary_function_ptr * const  at_student_cdf;
  extern const unary_function_ptr * const  at_student_icdf;
  extern const unary_function_ptr * const  at_studentd;
  extern const unary_function_ptr * const  at_studentd_cdf;
  extern const unary_function_ptr * const  at_studentd_icdf;
  extern const unary_function_ptr * const  at_studentt;
  extern const unary_function_ptr * const  at_sturm;
  extern const unary_function_ptr * const  at_sturmab;
  extern const unary_function_ptr * const  at_sturmseq;
  extern const unary_function_ptr * const  at_subMat;
  extern const unary_function_ptr * const  at_submatrix;
  extern const unary_function_ptr * const  at_subst;
  extern const unary_function_ptr * const  at_substituer;
  extern const unary_function_ptr * const  at_subtype;
  extern const unary_function_ptr * const  at_sum;
  extern const unary_function_ptr * const  at_sum_riemann;
  extern const unary_function_ptr * const  at_suppress;
  extern const unary_function_ptr * const  at_surd;
  extern const unary_function_ptr * const  at_svd;
  extern const unary_function_ptr * const  at_svg;
  extern const unary_function_ptr * const  at_svl;
  extern const unary_function_ptr * const  at_swapcol;
  extern const unary_function_ptr * const  at_swaprow;
  extern const unary_function_ptr * const  at_switch_axes;
  extern const unary_function_ptr * const  at_sylvester;
  extern const unary_function_ptr * const  at_symb2poly;
  extern const unary_function_ptr * const  at_syst2mat;
  extern const unary_function_ptr * const  at_tCollect;
  extern const unary_function_ptr * const  at_tExpand;
  extern const unary_function_ptr * const  at_table;
  extern const unary_function_ptr * const  at_tablefunc;
  extern const unary_function_ptr * const  at_tableseq;
  extern const unary_function_ptr * const  at_tabvar;
  extern const unary_function_ptr * const  at_tail;
  extern const unary_function_ptr * const  at_tan;
  extern const unary_function_ptr * const  at_tan2cossin2;
  extern const unary_function_ptr * const  at_tan2sincos;
  extern const unary_function_ptr * const  at_tan2sincos2;
  extern const unary_function_ptr * const  at_tangent;
  extern const unary_function_ptr * const  at_tangente;
  extern const unary_function_ptr * const  at_tanh;
  extern const unary_function_ptr * const  at_tantque;
  extern const unary_function_ptr * const  at_taux_accroissement;
  extern const unary_function_ptr * const  at_taylor;
  extern const unary_function_ptr * const  at_tchebyshev1;
  extern const unary_function_ptr * const  at_tchebyshev2;
  extern const unary_function_ptr * const  at_tcoeff;
  extern const unary_function_ptr * const  at_tcollect;
  extern const unary_function_ptr * const  at_tcollectsin;
  extern const unary_function_ptr * const  at_testfunc;
  extern const unary_function_ptr * const  at_tests;
  extern const unary_function_ptr * const  at_tetrahedron;
  extern const unary_function_ptr * const  at_texpand;
  extern const unary_function_ptr * const  at_textinput;
  extern const unary_function_ptr * const  at_thiele;
  extern const unary_function_ptr * const  at_threads_allowed;
  extern const unary_function_ptr * const  at_throw;
  extern const unary_function_ptr * const  at_time;
  extern const unary_function_ptr * const  at_tlin;
  extern const unary_function_ptr * const  at_total_degree;
  extern const unary_function_ptr * const  at_tourne_droite;
  extern const unary_function_ptr * const  at_tourne_gauche;
  extern const unary_function_ptr * const  at_tpsolve;
  extern const unary_function_ptr * const  at_trace;
  extern const unary_function_ptr * const  at_tran;
  extern const unary_function_ptr * const  at_translation;
  extern const unary_function_ptr * const  at_transpose;
  extern const unary_function_ptr * const  at_triangle;
  extern const unary_function_ptr * const  at_triangle_paper;
  extern const unary_function_ptr * const  at_triangle_plein;
  extern const unary_function_ptr * const  at_trig2exp;
  extern const unary_function_ptr * const  at_trigcos;
  extern const unary_function_ptr * const  at_trigexpand;
  extern const unary_function_ptr * const  at_trigsin;
  extern const unary_function_ptr * const  at_trigtan;
  extern const unary_function_ptr * const  at_trn;
  extern const unary_function_ptr * const  at_trunc;
  extern const unary_function_ptr * const  at_truncate;
  extern const unary_function_ptr * const  at_tsimplify;
  extern const unary_function_ptr * const  at_turtle_stack;
  extern const unary_function_ptr * const  at_type;
  extern const unary_function_ptr * const  at_ufactor;
  extern const unary_function_ptr * const  at_ugamma;
  extern const unary_function_ptr * const  at_unapply;
  extern const unary_function_ptr * const  at_unarchive;
  extern const unary_function_ptr * const  at_unarchive_ti;
  extern const unary_function_ptr * const  at_uniform;
  extern const unary_function_ptr * const  at_uniform_cdf;
  extern const unary_function_ptr * const  at_uniform_icdf;
  extern const unary_function_ptr * const  at_uniformd;
  extern const unary_function_ptr * const  at_uniformd_cdf;
  extern const unary_function_ptr * const  at_uniformd_icdf;
  extern const unary_function_ptr * const  at_unitV;
  extern const unary_function_ptr * const  at_unquote;
  extern const unary_function_ptr * const  at_usimplify;
  extern const unary_function_ptr * const  at_valuation;
  extern const unary_function_ptr * const  at_vandermonde;
  extern const unary_function_ptr * const  at_variance;
  extern const unary_function_ptr * const  at_vector;
  extern const unary_function_ptr * const  at_vers;
  extern const unary_function_ptr * const  at_version;
  extern const unary_function_ptr * const  at_vertices;
  extern const unary_function_ptr * const  at_vertices_abc;
  extern const unary_function_ptr * const  at_vertices_abca;
  extern const unary_function_ptr * const  at_vpotential;
  extern const unary_function_ptr * const  at_warn_equal_in_prog;
  extern const unary_function_ptr * const  at_watch;
  extern const unary_function_ptr * const  at_weibull;
  extern const unary_function_ptr * const  at_weibull_cdf;
  extern const unary_function_ptr * const  at_weibull_icdf;
  extern const unary_function_ptr * const  at_weibulld;
  extern const unary_function_ptr * const  at_weibulld_cdf;
  extern const unary_function_ptr * const  at_weibulld_icdf;
  extern const unary_function_ptr * const  at_whattype;
  extern const unary_function_ptr * const  at_when;
  extern const unary_function_ptr * const  at_white;
  extern const unary_function_ptr * const  at_widget_size;
  extern const unary_function_ptr * const  at_wilcoxonp;
  extern const unary_function_ptr * const  at_wilcoxons;
  extern const unary_function_ptr * const  at_wilcoxont;
  extern const unary_function_ptr * const  at_with_sqrt;
  extern const unary_function_ptr * const  at_write;
  extern const unary_function_ptr * const  at_writergb;
  extern const unary_function_ptr * const  at_writewav;
  extern const unary_function_ptr * const  at_wz_certificate;
  extern const unary_function_ptr * const  at_xcas_mode;
  extern const unary_function_ptr * const  at_xyztrange;
  extern const unary_function_ptr * const  at_yellow;
  extern const unary_function_ptr * const  at_zeros;
  extern const unary_function_ptr * const  at_zip;
  extern const unary_function_ptr * const  at_ztrans;
  extern const unary_function_ptr * const  at_DELTALIST;
  extern const unary_function_ptr * const  at_PILIST;
  extern const unary_function_ptr * const  at_HPSUM;
  extern const unary_function_ptr * const  at_SIGMALIST;
  extern const unary_function_ptr * const  at_HPDIFF;
  extern const unary_function_ptr * const  at_HPINT;
  }
  #endif // STATIC_EXTERN