input_lexer.ll
65.5 KB
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
/* -*- mode: C++; compile-command: "flex input_lexer.ll && make input_lexer.o " -*- */
/* Note: for the nspire port, after flex, move from #ifdef HAVE_CONFIG_H
to #include "first.h" before #include<stdio.h>
and map "log" to log10 instead of ln
*/
/** @file input_lexer.ll
*
* Lexical analyzer definition for reading expressions.
* Note Maple input should be processed replacing # with // and { } for set
* This file must be processed with flex. */
/*
* Copyright (C) 2001,14 B. Parisse, Institut Fourier, 38402 St Martin d'Heres
* The very first version was inspired by GiNaC lexer
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/*
* The lexer will first check for static patterns and strings (defined below)
* If a match is not found, it calls find_or_make_symbol
* This function looks first if the string should be translated
* (e.g. add a prefix from the export table)
* then look in lexer_functions for a match, then look in sym_tab
* if not found in sym_tab, a new identificateur is created & added in sym_tab
* Functions in lexer_functions are added during the construction
* of the corresponding unary_functions using lexer_functions_register
*/
/*
* Definitions
*/
%{
#include "giacPCH.h"
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <iostream>
#include <stdexcept>
#include "gen.h"
#include "input_lexer.h"
#include "help.h"
#include "identificateur.h"
#include "usual.h"
#include "derive.h"
#include "series.h"
#include "intg.h"
#include "sym2poly.h"
#include "moyal.h"
#include "subst.h"
#include "vecteur.h"
#include "modpoly.h"
#include "lin.h"
#include "solve.h"
#include "ifactor.h"
#include "alg_ext.h"
#include "gauss.h"
#include "isom.h"
#include "plot.h"
#include "ti89.h"
#include "prog.h"
#include "rpn.h"
#include "ezgcd.h"
#include "tex.h"
#include "risch.h"
#include "permu.h"
#include "input_parser.h"
#if defined(RTOS_THREADX) || defined(__MINGW_H) || defined NSPIRE || defined MS_SMART || defined(FREERTOS)
int isatty (int ){ return 0; }
#endif
#if defined BESTA_OS || defined(FREERTOS)
#define EINTR 4
#endif
#ifdef NSPIRE
// after flex, move #include "config.h" and first.h before all includes
// include "static.h" then giacPCH.h
// then edit input_lexer.cc and search for isatty, replace by 0 for interactive
void clearerr(FILE *){}
#endif
using namespace std;
using namespace giac;
void giac_yyset_column (int column_no , yyscan_t yyscanner);
int giac_yyget_column (yyscan_t yyscanner);
#define YY_USER_ACTION giac_yyset_column(giac_yyget_column(yyscanner)+yyleng,yyscanner);
#define YY_USER_INIT giac_yyset_column(1,yyscanner);
#ifndef NO_NAMESPACE_GIAC
namespace giac {
#endif // ndef NO_NAMESPACE_GIAC
void increment_lexer_line_number_setcol(yyscan_t yyscanner,GIAC_CONTEXT){
giac_yyset_column(1,yyscanner);
increment_lexer_line_number(contextptr);
}
bool doing_insmod = false;
#ifdef HAVE_LIBPTHREAD
static pthread_mutex_t * syms_mutex_ptr = 0;
int lock_syms_mutex(){
if (!syms_mutex_ptr){
pthread_mutex_t tmp=PTHREAD_MUTEX_INITIALIZER;
syms_mutex_ptr=new pthread_mutex_t(tmp);
}
return pthread_mutex_lock(syms_mutex_ptr);
}
void unlock_syms_mutex(){
if (syms_mutex_ptr)
pthread_mutex_unlock(syms_mutex_ptr);
}
#else
int lock_syms_mutex(){ return 0; }
void unlock_syms_mutex(){}
#endif
sym_string_tab & syms(){
static sym_string_tab * ans=new sym_string_tab;
return * ans;
}
std::vector<int> & lexer_localization_vector(){
static std::vector<int> * ans=new std::vector<int>;
return *ans;
}
#ifdef USTL
ustl::map<std::string,std::string> & lexer_localization_map(){
static ustl::map<std::string,std::string> * ans = new ustl::map<std::string,std::string>;
return * ans;
}
ustl::multimap<std::string,giac::localized_string> & back_lexer_localization_map(){
static ustl::multimap<std::string,giac::localized_string> * ans= new ustl::multimap<std::string,giac::localized_string>;
return * ans;
}
// lexer_localization_vector() is the list of languages currently translated
// lexer_localization_map translates keywords from the locale to giac
// back_lexer_localization_map() lists for a giac keyword the translations
ustl::map<std::string,std::vector<std::string> > & lexer_translator (){
static ustl::map<std::string,std::vector<std::string> > * ans = new ustl::map<std::string,std::vector<std::string> >;
return * ans;
}
// lexer_translator will be updated when export/with is called
// To each string (w/o ::) in a given library,
// If it exists, we push_back the full string (with ::)
// If not we create a vector with the full string
// If a library is unexported we remove the corresponding entry in the
// vector and remove the entry if the vector is empty
ustl::map<std::string,std::vector<std::string> > & library_functions (){
static ustl::map<std::string,std::vector<std::string> > * ans=new ustl::map<std::string,std::vector<std::string> >;
return *ans;
}
#else
std::map<std::string,std::string> & lexer_localization_map(){
static std::map<std::string,std::string> * ans = new std::map<std::string,std::string>;
return * ans;
}
std::multimap<std::string,giac::localized_string> & back_lexer_localization_map(){
static std::multimap<std::string,giac::localized_string> * ans= new std::multimap<std::string,giac::localized_string>;
return * ans;
}
// lexer_localization_vector() is the list of languages currently translated
// lexer_localization_map translates keywords from the locale to giac
// back_lexer_localization_map() lists for a giac keyword the translations
std::map<std::string,std::vector<std::string> > & lexer_translator (){
static std::map<std::string,std::vector<std::string> > * ans = new std::map<std::string,std::vector<std::string> >;
return * ans;
}
// lexer_translator will be updated when export/with is called
// To each string (w/o ::) in a given library,
// If it exists, we push_back the full string (with ::)
// If not we create a vector with the full string
// If a library is unexported we remove the corresponding entry in the
// vector and remove the entry if the vector is empty
std::map<std::string,std::vector<std::string> > & library_functions (){
static std::map<std::string,std::vector<std::string> > * ans=new std::map<std::string,std::vector<std::string> >;
return *ans;
}
#endif
// First string is the library name, second is the vector of function names
// User defined relations
vector<user_function> & registered_lexer_functions(){
static vector<user_function> * ans = 0;
if (!ans){
ans = new vector<user_function>;
// ans->reserve(50);
}
return * ans;
}
bool tri1(const lexer_tab_int_type & a,const lexer_tab_int_type & b){
int res= strcmp(a.keyword,b.keyword);
return res<0;
}
bool tri2(const char * a,const char * b){
return strcmp(a,b)<0;
}
const lexer_tab_int_type lexer_tab_int_values []={
#ifdef GIAC_HAS_STO_38
#include "lexer_tab38_int.h"
#else
#include "lexer_tab_int.h"
#endif
};
const lexer_tab_int_type * const lexer_tab_int_values_begin = lexer_tab_int_values;
const unsigned lexer_tab_int_values_n=sizeof(lexer_tab_int_values)/sizeof(lexer_tab_int_type);
const lexer_tab_int_type * const lexer_tab_int_values_end = lexer_tab_int_values+lexer_tab_int_values_n;
#ifndef NO_NAMESPACE_GIAC
} // namespace giac
#endif // ndef NO_NAMESPACE_GIAC
%}
%option reentrant bison-bridge
%option outfile="input_lexer.cc"
%option header-file="lexer.h"
%option noyywrap
%option prefix="giac_yy"
/* Abbreviations */
D [0-9]
E [eE][eE]?[-+]?{D}+
A [a-zA-Z~\200-\355\357-\376]
AN [0-9a-zA-Z_~ ?\200-\355\357-\376]
/* If changed, modify isalphan in help.cc FIXME is . allowed inside alphanumeric ? answer NO */
%x comment
%x comment_hash
%x str
%x backquote
/*
* Lexical rules
*/
%%
[ \t\\]+ /* skip whitespace */
\n increment_lexer_line_number_setcol(yyscanner,yyextra); //CERR << "Scanning line " << lexer_line_number(yyextra) << endl;
/* Strings */
/* \"[^\"]*\" yylval = string2gen( giac_yytext); return T_STRING; */
\" BEGIN(str); comment_s("",yyextra);
<str>\"\" increment_comment_s('"',yyextra);
<str>\" { index_status(yyextra)=1; BEGIN(INITIAL);
(*yylval)=string2gen(comment_s(yyextra),false);
return T_STRING; }
<str>\n increment_comment_s('\n',yyextra); increment_lexer_line_number_setcol(yyscanner,yyextra);
<str>\\[0-7]{1,3} {
/* octal escape sequence */
int result;
(void) sscanf( yytext + 1, "%o", &result );
increment_comment_s(char(result & 0xff),yyextra);
}
<str>\\[0-9]+ {
/* generate error - bad escape sequence; something
* like '\48' or '\0777777'
*/
}
<str>\\n increment_comment_s('\n',yyextra);
<str>\\t increment_comment_s('\t',yyextra);
<str>\\r increment_comment_s('\r',yyextra);
<str>\\b increment_comment_s('\b',yyextra);
<str>\\f increment_comment_s('\f',yyextra);
<str>\\(.|\n) increment_comment_s(yytext[1],yyextra);
<str>[^\\\n\"]+ increment_comment_s(yytext,yyextra);
` if (rpn_mode(yyextra)){ index_status(yyextra)=0; return T_ACCENTGRAVE; } else { BEGIN(backquote); comment_s("",yyextra); }
<backquote>\n increment_comment_s('\n',yyextra); increment_lexer_line_number_setcol(yyscanner,yyextra);
<backquote>[^\n`]+ increment_comment_s(yytext,yyextra);
<backquote>` { index_status(yyextra)=1; BEGIN(INITIAL);
return find_or_make_symbol(comment_s(yyextra),(*yylval),yyscanner,true,yyextra); }
"://"[^\n]*\n index_status(yyextra)=0; increment_lexer_line_number_setcol(yyscanner,yyextra);
"//"[^\n]*\n index_status(yyextra)=0; increment_lexer_line_number_setcol(yyscanner,yyextra);/* (*yylval) = string2gen('"'+string(giac_yytext).substr(2,string(giac_yytext).size()-3)+'"'); return T_COMMENT; */
"/*" BEGIN(comment); comment_s(yyextra)="";
<comment>[^*\n]* comment_s(yyextra)+=yytext; /* eat anything that's not a '*' */
<comment>"*"+[^*/\n]* comment_s(yyextra)+=yytext; /* eat up '*'s not followed by '/'s */
<comment>\n comment_s(yyextra) += '\n'; increment_lexer_line_number_setcol(yyscanner,yyextra); CERR << "(Comment) scanning line " << lexer_line_number(yyextra) << endl;
<comment>"*"+"/" BEGIN(INITIAL); index_status(yyextra)=0; /* (*yylval) = string2gen(comment_s(yyextra),false); return T_COMMENT; */
"#++"[^*]*"++#" index_status(yyextra)=0; /* (*yylval) = string2gen('"'+string(yytext).substr(3,string(yytext).size()-6)+'"'); return T_COMMENT; */
"#--"[^*]*"--#" index_status(yyextra)=0; /* (*yylval) = string2gen('"'+string(yytext).substr(3,string(yytext).size()-6)+'"'); return T_COMMENT; */
"?" if (index_status(yyextra)) return T_INTERROGATION; if (calc_mode(yyextra)==1){ *yylval=undef; return T_SYMBOL;} return T_HELP;
"_" opened_quote(yyextra) |= 2; return T_UNIT;
"'" if (opened_quote(yyextra) & 1) { opened_quote(yyextra) &= 0x7ffffffe; return T_QUOTE; } if (index_status(yyextra) && !in_rpn(yyextra) && xcas_mode(yyextra)!= 1) return T_PRIME; opened_quote(yyextra) |= 1; return T_QUOTE;
";" index_status(yyextra)=0; if (xcas_mode(yyextra)==3) return TI_SEMI; (*yylval)=0; return T_SEMI;
/* commented otherwise for(;;) will not work ";;" index_status(yyextra)=0; if (xcas_mode(yyextra)==3) return TI_SEMI; (*yylval)=0; return T_SEMI; */
"§" index_status(yyextra)=0; if (xcas_mode(yyextra)==3) return T_SEMI; return TI_SEMI;
":" if (spread_formula(yyextra)) return T_DEUXPOINTS; if ( xcas_mode(yyextra)==3 ) { index_status(yyextra)=0; return TI_DEUXPOINTS; } index_status(yyextra)=0; if (xcas_mode(yyextra)>0) { (*yylval)=1; return T_SEMI; } else return T_DEUXPOINTS;
":;" index_status(yyextra)=0; (*yylval)=1; return T_SEMI;
"::" index_status(yyextra)=0;return T_DOUBLE_DEUX_POINTS;
/* special values */
"θ" index_status(yyextra)=1; (*yylval)=theta__IDNT_e; return T_SYMBOL;
"i" index_status(yyextra)=1; if (xcas_mode(yyextra) > 0 || !i_sqrt_minus1(yyextra)) { (*yylval)=i__IDNT_e; return T_SYMBOL; } else { (*yylval) = cst_i; return T_LITERAL;};
"ί" index_status(yyextra)=1; (*yylval) = cst_i; return T_LITERAL;
"" index_status(yyextra)=1; (*yylval) = cst_i; return T_LITERAL;
\xa1 index_status(yyextra)=1; (*yylval) = cst_i; return T_LITERAL;
/* \xef\xbd\x89 index_status(yyextra)=1; (*yylval) = cst_i; return T_LITERAL; */
\xe2\x81\xb1 index_status(yyextra)=1; (*yylval) = cst_i; return T_LITERAL;
"I" index_status(yyextra)=1; if (xcas_mode(yyextra)==0 || xcas_mode(yyextra)==3 || rpn_mode(yyextra)) { return find_or_make_symbol(yytext,(*yylval),yyscanner,true,yyextra); } else { (*yylval) = cst_i; return T_LITERAL; };
"%i" index_status(yyextra)=1; (*yylval) = cst_i; return T_LITERAL;
"%e" index_status(yyextra)=1; (*yylval) = symbolic(at_exp,1); return T_LITERAL;
"%pi" index_status(yyextra)=1; (*yylval) = cst_pi; return T_LITERAL;
"pi" index_status(yyextra)=1; (*yylval) = cst_pi; return T_LITERAL;
"π" index_status(yyextra)=1; (*yylval) = cst_pi; return T_LITERAL;
"Pi" index_status(yyextra)=1; (*yylval) = cst_pi; return T_LITERAL;
"PI" index_status(yyextra)=1; (*yylval) = cst_pi; return T_LITERAL;
"euler_gamma" index_status(yyextra)=1; (*yylval) = cst_euler_gamma; return T_LITERAL;
"infinity" index_status(yyextra)=1; (*yylval) = unsigned_inf; return T_LITERAL;
"∞" index_status(yyextra)=1; (*yylval) = plus_inf; return T_LITERAL;
"± ∞" index_status(yyextra)=1; (*yylval) = unsigned_inf; return T_LITERAL;
"inf" index_status(yyextra)=1; (*yylval) = plus_inf; return T_LITERAL;
"unsigned_inf" index_status(yyextra)=1; (*yylval) = unsigned_inf; return T_LITERAL;
"plus_inf" index_status(yyextra)=1; (*yylval) = plus_inf; return T_LITERAL;
"minus_inf" index_status(yyextra)=1; (*yylval) = minus_inf; return T_LITERAL;
"undef" index_status(yyextra)=1; (*yylval) = undef; return T_LITERAL;
"ÿ" return T_END_INPUT;
/* integer values */
"operator" if (xcas_mode(yyextra)==2){ (*yylval) = gen(at_user_operator,6); index_status(yyextra)=0; return T_UNARY_OP; } index_status(yyextra)=0; (*yylval) = _FUNC; (*yylval).subtype=_INT_TYPE; return T_TYPE_ID;
"list" if (xcas_mode(yyextra)==3) { index_status(yyextra)=1; return find_or_make_symbol(yytext,(*yylval),yyscanner,true,yyextra); } index_status(yyextra)=0; (*yylval) = _MAPLE_LIST ; (*yylval).subtype=_INT_MAPLECONVERSION ;return T_TYPE_ID;
/* vector/polynom/matrice delimiters */
"seq[" (*yylval) = _SEQ__VECT; return T_VECT_DISPATCH;
"set[" (*yylval) = _SET__VECT; return T_VECT_DISPATCH;
"i[" (*yylval) = _INTERVAL__VECT; return T_VECT_DISPATCH;
"list[" index_status(yyextra)=0; (*yylval) = _LIST__VECT; return T_VECT_DISPATCH;
"list(" index_status(yyextra)=0; (*yylval) = _LIST__VECT; return T_BEGIN_PAR;
"rpn_func[" (*yylval) = _RPN_FUNC__VECT; return T_VECT_DISPATCH;
"group[" (*yylval) = _GROUP__VECT; return T_VECT_DISPATCH;
"line[" (*yylval) = _LINE__VECT; return T_VECT_DISPATCH;
"vector[" (*yylval) = _VECTOR__VECT; return T_VECT_DISPATCH;
"matrix[" (*yylval) = _MATRIX__VECT; return T_VECT_DISPATCH;
"pnt[" (*yylval) = _PNT__VECT; return T_VECT_DISPATCH;
"ggbpnt[" (*yylval) = _GGB__VECT; return T_VECT_DISPATCH;
"ggbvect[" (*yylval) = _GGBVECT; return T_VECT_DISPATCH;
"point[" (*yylval) = _POINT__VECT; return T_VECT_DISPATCH;
"tuple[" (*yylval) = _TUPLE__VECT; return T_VECT_DISPATCH;
"curve[" (*yylval) = _CURVE__VECT; return T_VECT_DISPATCH;
"halfline[" (*yylval) = _HALFLINE__VECT; return T_VECT_DISPATCH;
"poly1[" (*yylval) = _POLY1__VECT; return T_VECT_DISPATCH;
"assume[" (*yylval) = _ASSUME__VECT; return T_VECT_DISPATCH;
"spreadsheet[" (*yylval) = _SPREAD__VECT; return T_VECT_DISPATCH;
"folder[" (*yylval) = _FOLDER__VECT; return T_VECT_DISPATCH;
"polyedre[" (*yylval) = _POLYEDRE__VECT; return T_VECT_DISPATCH;
"rgba[" (*yylval) = _RGBA__VECT; return T_VECT_DISPATCH;
"â¦" index_status(yyextra)=0; (*yylval) = _LIST__VECT; return T_VECT_DISPATCH;
"â¦" index_status(yyextra)=1; return T_VECT_END;
"<" index_status(yyextra)=0; (*yylval)=gen(at_inferieur_strict,2); return T_TEST_EQUAL;
">" index_status(yyextra)=0; (*yylval)=gen(at_superieur_strict,2); return T_TEST_EQUAL;
"<" index_status(yyextra)=0; (*yylval)=gen(at_inferieur_strict,2); return T_TEST_EQUAL;
"<=" index_status(yyextra)=0; (*yylval)=gen(at_inferieur_egal,2); return T_TEST_EQUAL;
">" index_status(yyextra)=0; (*yylval)=gen(at_superieur_strict,2); return T_TEST_EQUAL;
">=" index_status(yyextra)=0; (*yylval)=gen(at_superieur_egal,2); return T_TEST_EQUAL;
"," index_status(yyextra)=0; return T_VIRGULE;
",," index_status(yyextra)=0; return T_VIRGULE;
"(" index_status(yyextra)=0; *yylval = 0; return T_BEGIN_PAR;
")" index_status(yyextra)=1; return T_END_PAR;
\[ if (index_status(yyextra)) { index_status(yyextra)=0; return T_INDEX_BEGIN; } else { (*yylval) = 0; return T_VECT_DISPATCH; } ;
\] index_status(yyextra)=1; return T_VECT_END;
",]" index_status(yyextra)=1; return T_VECT_END;
"%[" index_status(yyextra)=0; (*yylval) = _POLY1__VECT; return T_VECT_DISPATCH;
"%]" index_status(yyextra)=1; return T_VECT_END;
"%%[" index_status(yyextra)=0; (*yylval) = _MATRIX__VECT; return T_VECT_DISPATCH;
"%%]" index_status(yyextra)=1; return T_VECT_END;
"%%%[" index_status(yyextra)=0; (*yylval) = _ASSUME__VECT; return T_VECT_DISPATCH;
"%%%]" index_status(yyextra)=1; return T_VECT_END;
/* geometric delimiters */
"%_(" index_status(yyextra)=0; (*yylval) = _GROUP__VECT; return T_VECT_DISPATCH;
"%_)" index_status(yyextra)=1; return T_VECT_END;
"%%(" index_status(yyextra)=0; (*yylval) = _LINE__VECT; return T_VECT_DISPATCH;
"%%)" index_status(yyextra)=1; return T_VECT_END;
"%%%(" index_status(yyextra)=0; (*yylval) = _VECTOR__VECT; return T_VECT_DISPATCH;
"%%%)" index_status(yyextra)=1; return T_VECT_END;
"%%%%(" index_status(yyextra)=0; (*yylval) = _CURVE__VECT; return T_VECT_DISPATCH;
"%%%%)" index_status(yyextra)=1; return T_VECT_END;
/* gen delimiters */
"{" index_status(yyextra)=0; if (rpn_mode(yyextra) ||calc_mode(yyextra)==1) { (*yylval)=0; return T_VECT_DISPATCH; } if (xcas_mode(yyextra)==3 || abs_calc_mode(yyextra)==38){ (*yylval) = _LIST__VECT; return T_VECT_DISPATCH; } if (xcas_mode(yyextra) > 0 ){ (*yylval)=_SET__VECT; return T_VECT_DISPATCH; } else return T_BLOC_BEGIN;
"}" index_status(yyextra)=1; if (rpn_mode(yyextra) || calc_mode(yyextra)==1) return T_VECT_END; if (xcas_mode(yyextra)==3 || abs_calc_mode(yyextra)==38) return T_VECT_END; if (xcas_mode(yyextra) > 0) return T_VECT_END; else return T_BLOC_END;
"%{" index_status(yyextra)=0; (*yylval)=_SET__VECT; return T_VECT_DISPATCH;
"%}" index_status(yyextra)=1; return T_VECT_END;
"%%{" index_status(yyextra)=0; return T_ROOTOF_BEGIN;
"%%}" index_status(yyextra)=1; return T_ROOTOF_END;
"%%%{" index_status(yyextra)=0; return T_SPOLY1_BEGIN;
"%%%}" index_status(yyextra)=1; return T_SPOLY1_END;
"<<" index_status(yyextra)=0; if (abs_calc_mode(yyextra)!=38)return T_SPOLY1_BEGIN; ++in_rpn(yyextra); return T_RPN_BEGIN;
">>" index_status(yyextra)=0; if (abs_calc_mode(yyextra)!=38)return T_SPOLY1_END; --in_rpn(yyextra); return T_RPN_END;
/* binary operators */
"->" index_status(yyextra)=0; return T_MAPSTO;
"-<" (*yylval) = gen(at_couleur,2); index_status(yyextra)=0; return T_INTERVAL;
"==" index_status(yyextra)=0; (*yylval)=gen(at_same,2); return T_TEST_EQUAL;
"'=='" index_status(yyextra)=0; (*yylval)=gen(at_same,2); return T_QUOTED_BINARY;
"_equal" index_status(yyextra)=0; (*yylval)=gen(at_same,2); return T_QUOTED_BINARY;
"!=" index_status(yyextra)=0; (*yylval)=gen(at_different,2); return T_TEST_EQUAL;
"'!='" index_status(yyextra)=0; (*yylval)=gen(at_different,2); return T_QUOTED_BINARY;
"<>" index_status(yyextra)=0; (*yylval)=gen(at_different,2); return T_TEST_EQUAL;
"'<>'" index_status(yyextra)=0; (*yylval)=gen(at_different,2); return T_QUOTED_BINARY;
"_unequal" index_status(yyextra)=0; (*yylval)=gen(at_different,2); return T_QUOTED_BINARY;
"'<='" index_status(yyextra)=0; (*yylval)=gen(at_inferieur_egal,2); return T_QUOTED_BINARY;
"_leequal" index_status(yyextra)=0; (*yylval)=gen(at_inferieur_egal,2); return T_QUOTED_BINARY;
"<=" index_status(yyextra)=0; (*yylval)=gen(at_inferieur_egal,2); return T_TEST_EQUAL;
"'<'" index_status(yyextra)=0; (*yylval)=gen(at_inferieur_strict,2); return T_QUOTED_BINARY;
"_less" index_status(yyextra)=0; (*yylval)=gen(at_inferieur_strict,2); return T_QUOTED_BINARY;
"'>'" index_status(yyextra)=0; (*yylval)=gen(at_superieur_strict,2); return T_QUOTED_BINARY;
">=" index_status(yyextra)=0; (*yylval)=gen(at_superieur_egal,2); return T_TEST_EQUAL;
"'>='" index_status(yyextra)=0; (*yylval)=gen(at_superieur_egal,2); return T_QUOTED_BINARY;
"=" spread_formula(yyextra)=!index_status(yyextra); index_status(yyextra)=0; (*yylval)=gen(at_equal,2); return T_EQUAL;
"%=" spread_formula(yyextra)=!index_status(yyextra); index_status(yyextra)=0; (*yylval)=gen(at_equal2,2); return T_EQUAL;
"'='" index_status(yyextra)=0; (*yylval)=gen(at_equal,2); return T_QUOTED_BINARY;
"$" index_status(yyextra)=0; (*yylval)=gen(at_dollar,2); if (xcas_mode(yyextra)>0) return T_DOLLAR_MAPLE; else return T_DOLLAR;
"%$" index_status(yyextra)=0; (*yylval)=gen(at_dollar,2); return T_DOLLAR_MAPLE;
"'$'" index_status(yyextra)=0; (*yylval)=gen(at_dollar,2); return T_QUOTED_BINARY;
"_seqgen" index_status(yyextra)=0; (*yylval)=gen(at_dollar,2); return T_QUOTED_BINARY;
":=" index_status(yyextra)=0; (*yylval)=gen(at_sto,2); return T_AFFECT;
"':='" index_status(yyextra)=0; (*yylval)=gen(at_sto,2); return T_QUOTED_BINARY;
"_assign" index_status(yyextra)=0; (*yylval)=gen(at_sto,2); return T_QUOTED_BINARY;
"►" index_status(yyextra)=0; (*yylval)=gen(at_sto,2); return TI_STO;
"▶" index_status(yyextra)=0; (*yylval)=gen(at_sto,2); return TI_STO;
"→" index_status(yyextra)=0; if (xcas_mode(yyextra)==3){ (*yylval)=gen(at_sto,2); return TI_STO; } else return T_MAPSTO;
"=>" index_status(yyextra)=0; (*yylval)=gen(at_sto,2); return TI_STO;
"=<" index_status(yyextra)=0; (*yylval)=gen(at_array_sto,2); return T_AFFECT;
"=<" index_status(yyextra)=0; (*yylval)=gen(at_array_sto,2); return T_AFFECT;
"@"{D}+ index_status(yyextra)=1; yytext[0]='0'; (*yylval) = symb_double_deux_points(makevecteur(_IDNT_id_at,chartab2gen(yytext,yyextra))); return T_SYMBOL;
"@" if (xcas_mode(yyextra)!=3) {index_status(yyextra)=0; (*yylval)=gen(at_compose,2); return T_COMPOSE; } BEGIN(comment_hash);
"@@" index_status(yyextra)=0; (*yylval)=gen(at_composepow,2); return T_POW;
"'@@'" index_status(yyextra)=0; (*yylval)=gen(at_composepow,2); return T_QUOTED_BINARY;
"_fnest" index_status(yyextra)=0; (*yylval)=gen(at_composepow,2); return T_QUOTED_BINARY;
"'@'" index_status(yyextra)=0; (*yylval)=gen(at_compose,2); return T_QUOTED_BINARY;
"_fconcat" index_status(yyextra)=0; (*yylval)=gen(at_compose,2); return T_QUOTED_BINARY;
"&&" index_status(yyextra)=0; (*yylval)=gen(at_and,2); return T_AND_OP;
"&&" index_status(yyextra)=0; (*yylval)=gen(at_and,2); return T_AND_OP;
"AND" index_status(yyextra)=0; (*yylval)=gen(at_and,2); return T_AND_OP;
"'&&'" index_status(yyextra)=0; (*yylval)=gen(at_and,2); return T_QUOTED_BINARY;
"'and'" index_status(yyextra)=0; (*yylval)=gen(at_and,2); return T_QUOTED_BINARY;
"_and" index_status(yyextra)=0; (*yylval)=gen(at_and,2); return T_QUOTED_BINARY;
"|" index_status(yyextra)=0; (*yylval)=gen(at_tilocal,2); return T_PIPE;
"||" index_status(yyextra)=0; (*yylval)=gen(at_ou,2); return T_AND_OP;
"'||'" index_status(yyextra)=0; (*yylval)=gen(at_ou,2); return T_QUOTED_BINARY;
"'or'" index_status(yyextra)=0; (*yylval)=gen(at_ou,2); return T_QUOTED_BINARY;
"_or" index_status(yyextra)=0; (*yylval)=gen(at_ou,2); return T_QUOTED_BINARY;
"OR" index_status(yyextra)=0; (*yylval)=gen(at_ou,2); return T_AND_OP;
"xor" index_status(yyextra)=0; (*yylval)=gen(at_xor,2); return T_AND_OP;
"_xor" index_status(yyextra)=0; (*yylval)=gen(at_xor,2); return T_QUOTED_BINARY;
"'xor'" index_status(yyextra)=0; (*yylval)=gen(at_xor,2); return T_QUOTED_BINARY;
"XOR" index_status(yyextra)=0; (*yylval)=gen(at_xor,2); return T_AND_OP;
".." index_status(yyextra)=0; (*yylval)=gen(at_interval,2); return T_INTERVAL;
"interval" index_status(yyextra)=0; (*yylval)=gen(at_interval,2); return T_UNARY_OP;
"..." index_status(yyextra)=0; (*yylval)=gen(at_interval,2); return T_INTERVAL;
"'..'" index_status(yyextra)=0; (*yylval)=gen(at_interval,2); return T_QUOTED_BINARY;
"_range" index_status(yyextra)=0; (*yylval)=gen(at_interval,2); return T_QUOTED_BINARY;
"!" if (xcas_mode(yyextra) || index_status(yyextra)) { (*yylval)=gen(at_factorial); return T_FACTORIAL; } else { index_status(yyextra)=0; (*yylval)=gen(at_not,1); return T_NOT; }
/* standard functions */
"Ans" index_status(yyextra)=1; (*yylval)=symbolic(at_Ans,0); return T_LITERAL;
"+" index_status(yyextra)=0; (*yylval)=gen(at_plus,2); return T_PLUS;
"++" index_status(yyextra)=0; (*yylval)=gen(at_increment,1); return T_FACTORIAL;
"+=" index_status(yyextra)=0; (*yylval)=gen(at_increment,1); return T_PLUS;
"--" index_status(yyextra)=0; (*yylval)=gen(at_decrement,1); return T_FACTORIAL;
"-=" index_status(yyextra)=0; (*yylval)=gen(at_decrement,1); return T_PLUS;
".+" index_status(yyextra)=0; (*yylval)=gen(at_pointplus,2); return T_PLUS;
"&" index_status(yyextra)=0; (*yylval)=gen(at_plus,2); return T_PLUS;
"√" index_status(yyextra)=0; (*yylval)=gen(at_sqrt,2); return T_NOT;
"∡" index_status(yyextra)=0; (*yylval)=gen(at_polar_complex,2); return T_MOD;
"²" index_status(yyextra)=1; (*yylval)=2; return T_SQ;
"³" index_status(yyextra)=1; (*yylval)=3; return T_SQ;
"⁴" index_status(yyextra)=1; (*yylval)=4; return T_SQ;
"⁵" index_status(yyextra)=1; (*yylval)=5; return T_SQ;
"⁶" index_status(yyextra)=1; (*yylval)=6; return T_SQ;
"⁷" index_status(yyextra)=1; (*yylval)=7; return T_SQ;
"⁸" index_status(yyextra)=1; (*yylval)=8; return T_SQ;
"⁹" index_status(yyextra)=1; (*yylval)=9; return T_SQ;
"" index_status(yyextra)=1; (*yylval)=-1; return T_SQ;
\342\201\262 index_status(yyextra)=1; (*yylval)=-1; return T_SQ;
/* "','" index_status(yyextra)=0; (*yylval)=gen(at_makevector,2); return T_QUOTED_BINARY; commented because of f('a','b') */
"'+'" index_status(yyextra)=0; (*yylval)=gen(at_plus,2); return T_QUOTED_BINARY;
"_plus" index_status(yyextra)=0; (*yylval)=gen(at_plus,2); return T_QUOTED_BINARY;
"-" index_status(yyextra)=0; (*yylval)=gen(at_binary_minus,2); return T_MOINS; // return (calc_mode(yyextra)==38)?T_MOINS38:T_MOINS;
"−" index_status(yyextra)=0; if (calc_mode(yyextra)==38){ (*yylval)=gen(at_neg,2); return T_NEG38; } else { CERR << 1 << endl; (*yylval)=gen(at_binary_minus,2); return T_MOINS;}
".-" index_status(yyextra)=0; (*yylval)=gen(at_pointminus,2); return T_PLUS;
"'-'" index_status(yyextra)=0; (*yylval)=gen(at_binary_minus,2); return T_QUOTED_BINARY;
"_subtract" index_status(yyextra)=0; (*yylval)=gen(at_binary_minus,2); return T_QUOTED_BINARY;
"*" index_status(yyextra)=0; (*yylval)=gen(at_prod,2); return T_FOIS;
"⊗" index_status(yyextra)=0; (*yylval)=gen(at_cross,2); return T_FOIS;
"*=" index_status(yyextra)=0; (*yylval)=gen(at_multcrement,1); return T_FOIS;
"." index_status(yyextra)=0; if (abs_calc_mode(yyextra)==38){return T_DOUBLE_DEUX_POINTS; } else {(*yylval)=gen(at_struct_dot,2); return T_FOIS;}
"&*" index_status(yyextra)=0; (*yylval)=gen(at_ampersand_times,2); return T_FOIS;
"&^" index_status(yyextra)=0; (*yylval)=gen(at_quote_pow,2); return T_POW;
".*" index_status(yyextra)=0; (*yylval)=gen(at_pointprod,2); return T_FOIS;
"'*'" index_status(yyextra)=0; (*yylval)=gen(at_prod,2); return T_QUOTED_BINARY;
"_mult" index_status(yyextra)=0; (*yylval)=gen(at_prod,2); return T_QUOTED_BINARY;
"/" index_status(yyextra)=0; (*yylval)=gen(at_division,2); return T_DIV;
"/%" index_status(yyextra)=0; (*yylval)=gen(at_iquo,2); return T_MOD;
"%/" index_status(yyextra)=0; (*yylval)=gen(at_irem,2); return T_MOD;
"/=" index_status(yyextra)=0; (*yylval)=gen(at_divcrement,1); return T_DIV;
"./" index_status(yyextra)=0; (*yylval)=gen(at_pointdivision,2); return T_DIV;
"'/'" index_status(yyextra)=0; (*yylval)=gen(at_division,2); return T_QUOTED_BINARY;
"_divide" index_status(yyextra)=0; (*yylval)=gen(at_division,2); return T_QUOTED_BINARY;
"%" index_status(yyextra)=0; if (abs_calc_mode(yyextra)==38){ (*yylval)=gen(at_PERCENT); return T_UNARY_OP_38; } if (xcas_mode(yyextra)==3 || calc_mode(yyextra)==1) { (*yylval)=gen(at_pourcent); return T_FACTORIAL; } if (xcas_mode(yyextra)==1) { (*yylval)=symbolic(at_ans,vecteur(0)); return T_NUMBER; } if (xcas_mode(yyextra)) (*yylval)=gen(at_irem,2); else (*yylval)=0; return T_MOD;
"%%" index_status(yyextra)=0; if (xcas_mode(yyextra)==0){ (*yylval)=gen(at_iquorem,2); return T_MOD;} (*yylval)=symbolic(at_ans,-2); return T_NUMBER;
/* \xe2\x88\xa1 index_status(yyextra)=0; (*yylval)=gen(at_polar_complex,2); return T_MOD; */
"%%%" if (xcas_mode(yyextra)==0){ (*yylval)=gen(at_quorem,2); return T_MOD;} index_status(yyextra)=0; (*yylval)=symbolic(at_ans,-3); return T_NUMBER;
"'%'" index_status(yyextra)=0; (*yylval)=gen(at_irem,2); return T_QUOTED_BINARY;
"mod" index_status(yyextra)=0; if (xcas_mode(yyextra)==3) { (*yylval)=gen(at_irem,2); return T_UNARY_OP; } else { if (xcas_mode(yyextra)) (*yylval)=gen(at_irem,2); else (*yylval)=0; return T_MOD; }
"'mod'" index_status(yyextra)=0; (*yylval)=gen(at_irem,2); return T_QUOTED_BINARY;
"_mod" index_status(yyextra)=0; (*yylval)=gen(at_irem,2); return T_QUOTED_BINARY;
/* "MOD" index_status(yyextra)=0; return T_MOD; */
"^" index_status(yyextra)=0; (*yylval)=gen(at_pow,2); return T_POW;
"^*" index_status(yyextra)=0; (*yylval)=gen(at_trn,1); return T_FACTORIAL;
"pow" (*yylval) = gen(at_pow,2); index_status(yyextra)=0; return T_UNARY_OP;
"**" index_status(yyextra)=0; (*yylval)=gen(at_pow,2); return T_POW;
".^" index_status(yyextra)=0; (*yylval)=gen(at_pointpow,2); return T_POW;
"'^'" index_status(yyextra)=0; (*yylval)=gen(at_pow,2); return T_QUOTED_BINARY;
"_power" index_status(yyextra)=0; (*yylval)=gen(at_pow,2); return T_QUOTED_BINARY;
"Digits" (*yylval) = gen(at_Digits,0); index_status(yyextra)=0; return T_DIGITS;
"HDigits" (*yylval) = gen(at_HDigits,0); index_status(yyextra)=0; return T_DIGITS;
"HAngle" (*yylval) = gen(at_HAngle,0); index_status(yyextra)=0; return T_DIGITS;
"HFormat" (*yylval) = gen(at_HFormat,0); index_status(yyextra)=0; return T_DIGITS;
"HComplex" (*yylval) = gen(at_HComplex,0); index_status(yyextra)=0; return T_DIGITS;
"HLanguage" (*yylval) = gen(at_HLanguage,0); index_status(yyextra)=0; return T_DIGITS;
"DIGITS" (*yylval) = gen(at_Digits,0); index_status(yyextra)=0; return T_DIGITS;
"threads" (*yylval) = gen(at_threads,0) ; index_status(yyextra)=0; return T_DIGITS;
"scientific_format" (*yylval) = gen(at_scientific_format,0); index_status(yyextra)=0; return T_DIGITS;
"angle_radian" (*yylval) = gen(at_angle_radian,0); index_status(yyextra)=0; return T_DIGITS;
"approx_mode" (*yylval) = gen(at_approx_mode,0); index_status(yyextra)=0; return T_DIGITS;
"all_trig_solutions" (*yylval) = gen(at_all_trig_solutions,1); index_status(yyextra)=0; return T_DIGITS;
"ntl_on" (*yylval) = gen(at_ntl_on,1); index_status(yyextra)=0; return T_DIGITS;
"complex_mode" (*yylval) = gen(at_complex_mode,1); index_status(yyextra)=0; return T_DIGITS;
"step_infolevel" (*yylval) = gen(at_step_infolevel,1); index_status(yyextra)=0; return T_DIGITS;
"keep_algext" (*yylval) = gen(at_keep_algext,1); index_status(yyextra)=0; return T_DIGITS;
"complex_variables" (*yylval) = gen(at_complex_variables,0); index_status(yyextra)=0; return T_DIGITS;
"epsilon" (*yylval) = gen(at_epsilon,0); index_status(yyextra)=0; return T_DIGITS;
"proba_epsilon" (*yylval) = gen(at_proba_epsilon,0); index_status(yyextra)=0; return T_DIGITS;
"arccos" (*yylval) = gen(at_acos,1); index_status(yyextra)=0; return T_UNARY_OP;
"randnorm" (*yylval) = gen(at_randNorm,1); index_status(yyextra)=0; return T_UNARY_OP;
"arccosh" (*yylval) = gen(at_acosh,1); index_status(yyextra)=0; return T_UNARY_OP;
"'args'" index_status(yyextra)=0; (*yylval)=gen(at_args,0); return T_QUOTED_BINARY;
"arcsin" (*yylval) = gen(at_asin,1); index_status(yyextra)=0; return T_UNARY_OP;
"arcsinh" (*yylval) = gen(at_asinh,1); index_status(yyextra)=0; return T_UNARY_OP;
"at" (*yylval) = gen(at_at,2); index_status(yyextra)=0; return T_UNARY_OP;
"arctan" (*yylval) = gen(at_atan,1); index_status(yyextra)=0; return T_UNARY_OP;
"arctanh" (*yylval) = gen(at_atanh,1); index_status(yyextra)=0; return T_UNARY_OP;
"backquote" (*yylval) = gen(at_backquote,1); index_status(yyextra)=0; return T_UNARY_OP;
"bloc" (*yylval) = gen(at_bloc,1); index_status(yyextra)=0; return T_UNARY_OP;
"BREAK" index_status(yyextra)=0; (*yylval)=gen(at_break,0); return T_BREAK;
"CASE" index_status(yyextra)=0; if (abs_calc_mode(yyextra)==38) return T_CASE38; else return T_CASE;
"CONT" (*yylval) = gen(at_cont,1); index_status(yyextra)=0; return T_UNARY_OP;
"DEBUG" (*yylval) = gen(at_debug,1); index_status(yyextra)=0; return T_UNARY_OP;
"derive" (*yylval) = gen(at_derive,2); index_status(yyextra)=0; return T_UNARY_OP;
"D" if (xcas_mode(yyextra)==1 || xcas_mode(yyextra)==2) { (*yylval) = gen(at_function_diff,1); index_status(yyextra)=1; return T_UNARY_OP;} else { index_status(yyextra)=1; return find_or_make_symbol(yytext,(*yylval),yyscanner,true,yyextra); }
"e" if (xcas_mode(yyextra)==1 || xcas_mode(yyextra)==2) { (*yylval)=e__IDNT_e; }else (*yylval)=symbolic(at_exp,1); index_status(yyextra)=1; return T_NUMBER;
"ℯ" (*yylval)=symbolic(at_exp,1); index_status(yyextra)=1; return T_NUMBER;
"" (*yylval)=symbolic(at_exp,1); index_status(yyextra)=1; return T_NUMBER;
"equal" (*yylval) = gen(at_equal,2); index_status(yyextra)=0; return T_UNARY_OP;
"error" index_status(yyextra)=0; (*yylval)=gen(at_throw,1); return T_RETURN;
"erase" (*yylval) = gen(at_erase,0); index_status(yyextra)=0; return T_UNARY_OP;
"ERROR" index_status(yyextra)=0; (*yylval)=gen(at_throw,1); return T_RETURN;
"expand" if (xcas_mode(yyextra)==3) (*yylval)=gen(at_partfrac); else (*yylval) = gen(at_expand,1); index_status(yyextra)=0; return T_UNARY_OP;
"export" (*yylval) = gen(at_insmod,1); index_status(yyextra)=0; return T_RETURN;
"fdistrib" (*yylval) = gen(at_expand,1); index_status(yyextra)=0; return T_UNARY_OP;
"for" index_status(yyextra)=0; (*yylval)=gen(at_for,4); return T_FOR;
"FOR" index_status(yyextra)=0; (*yylval)=gen(at_for,4); return T_FOR;
"HALT" (*yylval) = gen(at_halt,1); index_status(yyextra)=0; return T_UNARY_OP;
"end if" index_status(yyextra)=0; (*yylval)=4; return T_BLOC_END;
"end do" index_status(yyextra)=0; (*yylval)=9; return T_BLOC_END;
"end proc" index_status(yyextra)=0; (*yylval)=3; return T_BLOC_END;
"if" index_status(yyextra)=0; (*yylval)=gen(at_ifte,3); return T_IF;
"IF" index_status(yyextra)=0; (*yylval)=gen(at_ifte,3); if (rpn_mode(yyextra)) return T_RPN_IF; return T_IF;
"ifte" index_status(yyextra)=0; (*yylval)=gen(at_ifte,3); return T_IFTE;
"IFTE" index_status(yyextra)=0; (*yylval)=gen(at_when,3); return T_IFTE;
"'ifte'" index_status(yyextra)=0; (*yylval)=gen(at_ifte,3); return T_QUOTED_BINARY;
"'if'" index_status(yyextra)=0; (*yylval)=gen(at_ifte,3); return T_QUOTED_BINARY;
"_if" index_status(yyextra)=0; (*yylval)=gen(at_ifte,3); return T_QUOTED_BINARY;
"ifactors" if (xcas_mode(yyextra)==1) (*yylval) = gen(at_maple_ifactors); else (*yylval) = gen(at_ifactors,1); index_status(yyextra)=0; return T_UNARY_OP;
"'intersect'" index_status(yyextra)=0; (*yylval)=gen(at_intersect,2); return T_QUOTED_BINARY;
"_intersect" index_status(yyextra)=0; (*yylval)=gen(at_intersect,2); return T_QUOTED_BINARY;
"KILL" (*yylval) = gen(at_kill,1); index_status(yyextra)=0; return T_UNARY_OP;
"log" (*yylval) = gen(at_ln,1); index_status(yyextra)=1; return T_UNARY_OP; /* index_status(yyextra)=1 to accept log[] for a basis log */
"sin" (*yylval) = gen(at_asin,1); index_status(yyextra)=1; return T_UNARY_OP;
"cos" (*yylval) = gen(at_acos,1); index_status(yyextra)=1; return T_UNARY_OP;
"tan" (*yylval) = gen(at_atan,1); index_status(yyextra)=1; return T_UNARY_OP;
"'minus'" index_status(yyextra)=0; (*yylval)=gen(at_minus,2); return T_QUOTED_BINARY;
"_minus" index_status(yyextra)=0; (*yylval)=gen(at_minus,2); return T_QUOTED_BINARY;
"not" (*yylval) = gen(at_not,1); if (xcas_mode(yyextra)) return T_NOT; index_status(yyextra)=0; return T_UNARY_OP;
"NOT" (*yylval) = gen(at_not,1); return T_NOT;
"neg" (*yylval) = gen(at_neg,1); index_status(yyextra)=0; return T_UNARY_OP;
"'not'" index_status(yyextra)=0; (*yylval)=gen(at_not,1); return T_QUOTED_BINARY;
"_not" index_status(yyextra)=0; (*yylval)=gen(at_not,1); return T_QUOTED_BINARY;
"normalf" (*yylval) = gen(at_greduce,1); index_status(yyextra)=0; return T_UNARY_OP;
"'of'" index_status(yyextra)=0; (*yylval)=gen(at_of,2); return T_QUOTED_BINARY;
"op" if (xcas_mode(yyextra)==1) (*yylval) = gen(at_maple_op,1); else (*yylval) = gen(at_feuille,1); index_status(yyextra)=0; return T_UNARY_OP;
"feuille" (*yylval) = gen(at_feuille,1); index_status(yyextra)=0; return T_UNARY_OP;
"option" (*yylval)=2; index_status(yyextra)=0; return T_LOCAL;
"pcoef" (*yylval) = gen(at_pcoeff,1); index_status(yyextra)=0; return T_UNARY_OP;
"plotfunc2d" (*yylval) = gen(at_funcplot,2); index_status(yyextra)=0; return T_UNARY_OP;
"user_operator" (*yylval) = gen(at_user_operator,6); index_status(yyextra)=0; return T_UNARY_OP;
"purge" if (rpn_mode(yyextra)) {(*yylval)=gen(at_purge,0); index_status(yyextra)=0; return T_RPN_OP;} else {(*yylval) = gen(at_purge,1); index_status(yyextra)=0; return T_UNARY_OP;};
"unassign" if (rpn_mode(yyextra)) {(*yylval)=gen(at_purge,0); index_status(yyextra)=0; return T_RPN_OP;} else {(*yylval) = gen(at_purge,1); index_status(yyextra)=0; return T_UNARY_OP;};
"PURGE" if (rpn_mode(yyextra)) {(*yylval)=gen(at_purge,0); index_status(yyextra)=0; return T_RPN_OP;} else {(*yylval) = gen(at_purge,1); index_status(yyextra)=0; return T_UNARY_OP;};
"randseed" (*yylval) = gen(at_srand,1); index_status(yyextra)=0; return T_RETURN;
"repeat" (*yylval) = gen(at_for,1) ; index_status(yyextra)=0; return T_REPEAT;
"repeter" (*yylval) = gen(at_for,1) ; index_status(yyextra)=0; return T_REPEAT;
"REPEAT" (*yylval) = gen(at_for,1) ;index_status(yyextra)=0; return T_REPEAT;
"return" (*yylval) = gen(at_return,1) ; index_status(yyextra)=0; return T_RETURN;
"retourne" (*yylval) = gen(at_return,1) ; index_status(yyextra)=0; return T_RETURN;
"RETURN" (*yylval) = gen(at_return,1) ; index_status(yyextra)=0; return T_RETURN;
"'return'" (*yylval) = gen(at_return,1) ; index_status(yyextra)=0; return T_QUOTED_BINARY;
"root" (*yylval) = gen(at_maple_root,1); index_status(yyextra)=1; return T_UNARY_OP;
"same" (*yylval) = gen(at_same,1); index_status(yyextra)=0; return T_UNARY_OP;
"SST" (*yylval) = gen(at_sst,1); index_status(yyextra)=0; return T_UNARY_OP;
"SST_IN" (*yylval) = gen(at_sst_in,1); index_status(yyextra)=0; return T_UNARY_OP;
"subs" if (xcas_mode(yyextra)==1) (*yylval) = gen(at_maple_subs,2); else (*yylval) = gen(at_subs,2); index_status(yyextra)=0; return T_UNARY_OP;
"subsop" if (xcas_mode(yyextra)==1) (*yylval) = gen(at_maple_subsop,2); else (*yylval) = gen(at_subsop,2); index_status(yyextra)=0; return T_UNARY_OP;
"'union'" index_status(yyextra)=0; (*yylval)=gen(at_union,2); return T_QUOTED_BINARY;
"_union" index_status(yyextra)=0; (*yylval)=gen(at_union,2); return T_QUOTED_BINARY;
"virgule" (*yylval) = gen(at_virgule,2); index_status(yyextra)=0; return T_UNARY_OP;
"VARS" (*yylval) = gen(at_VARS,0); index_status(yyextra)=0; return T_UNARY_OP;
"while" index_status(yyextra)=0; (*yylval)=gen(at_for,4); if (xcas_mode(yyextra)==3) return TI_WHILE; if (xcas_mode(yyextra)!=0) return T_MUPMAP_WHILE; return T_WHILE;
"WHILE" index_status(yyextra)=0; (*yylval)=gen(at_for,4); return T_MUPMAP_WHILE; /* return T_RPN_WHILE; */
"DO" index_status(yyextra)=0; (*yylval)=gen(at_for,4); return T_DO; /* must be here for DO ... END loop */
"do" index_status(yyextra)=0; (*yylval)=gen(at_for,4); return T_DO; /* must be here for DO ... END loop */
"Text" (*yylval) = gen(at_Text,1); index_status(yyextra)=0; return T_RETURN;
"DropDown" (*yylval) = gen(at_DropDown,1); index_status(yyextra)=0; return T_RETURN;
"Popup" (*yylval) = gen(at_Popup,1); index_status(yyextra)=0; return T_RETURN;
"Request" (*yylval) = gen(at_Request,1); index_status(yyextra)=0; return T_RETURN;
"Title" (*yylval) = gen(at_Title,1); index_status(yyextra)=0; return T_RETURN;
":Prgm" (*yylval)=0; index_status(yyextra)=0; return TI_PRGM;
":Func" (*yylval)=0; index_status(yyextra)=0; return TI_PRGM;
":func" (*yylval)=0; index_status(yyextra)=0; return TI_PRGM;
"If" index_status(yyextra)=0; (*yylval)=gen(at_ifte,3); return T_IF;
"Return" (*yylval) = gen(at_return,1) ; index_status(yyextra)=0; return T_RETURN;
"Exit" index_status(yyextra)=0; (*yylval)=gen(at_breakpoint,0); return T_BREAK;
"Loop" index_status(yyextra)=0; (*yylval)=gen(at_for,0); return TI_LOOP;
"For" index_status(yyextra)=0; (*yylval)=gen(at_for,0); return TI_FOR;
"While" index_status(yyextra)=0; (*yylval)=gen(at_for,0); return TI_WHILE;
"Cycle" index_status(yyextra)=0; (*yylval)=gen(at_for,0); return T_CONTINUE;
"Disp" (*yylval) = gen(at_print,1) ; index_status(yyextra)=0; return T_RETURN;
"Pause" (*yylval) = gen(at_Pause,1) ; index_status(yyextra)=0; return T_RETURN;
"Lbl" (*yylval) = gen(at_label,1) ; index_status(yyextra)=0; return T_RETURN;
"Goto" (*yylval) = gen(at_goto,1) ; index_status(yyextra)=0; return T_RETURN;
"Dialog" (*yylval) = gen(at_Dialog,1) ; index_status(yyextra)=0; return TI_DIALOG;
"Row" (*yylval) = gen(at_Row,0) ; index_status(yyextra)=0; return T_DIGITS;
"Col" (*yylval) = gen(at_Col,0) ; index_status(yyextra)=0; return T_DIGITS;
"DELTALIST" index_status(yyextra)=0; (*yylval)=gen(at_DELTALIST); return T_UNARY_OP_38;
"PILIST" index_status(yyextra)=0; (*yylval)=gen(at_PILIST); return T_UNARY_OP_38;
"SIGMA" index_status(yyextra)=0;(*yylval)=gen(at_HPSUM); return T_UNARY_OP_38;
"SIGMALIST" index_status(yyextra)=0; (*yylval)=gen(at_SIGMALIST); return T_UNARY_OP_38;
"∂" index_status(yyextra)=0;(*yylval)=gen(at_HPDIFF); return T_UNARY_OP_38;
"∫" index_status(yyextra)=0;(*yylval)=gen(at_HPINT); return T_UNARY_OP_38;
"≤" index_status(yyextra)=0; (*yylval)=gen(at_inferieur_egal,2); return T_TEST_EQUAL;
"≠" index_status(yyextra)=0; (*yylval)=gen(at_different,2); return T_TEST_EQUAL;
"≥" index_status(yyextra)=0; (*yylval)=gen(at_superieur_egal,2); return T_TEST_EQUAL;
"∏" index_status(yyextra)=0;(*yylval)=gen(at_product); return T_UNARY_OP;
/* old format for physical constants
"_hbar_" (*yylval) = symbolic(at_unit,makevecteur(1.05457266e-34,_J_unit*_s_unit)); index_status(yyextra)=0; return T_SYMBOL;
"_c_" (*yylval) = symbolic(at_unit,makevecteur(299792458,_m_unit/_s_unit)); index_status(yyextra)=0; return T_SYMBOL;
"_g_" (*yylval) = symbolic(at_unit,makevecteur(9.80665,_m_unit*unitpow(_s_unit,-2))); index_status(yyextra)=0; return T_SYMBOL;
"_IO_" (*yylval) = symbolic(at_unit,makevecteur(1e-12,_W_unit*unitpow(_m_unit,-2))); index_status(yyextra)=0; return T_SYMBOL;
"_epsilonox_" (*yylval) = 3.9; index_status(yyextra)=0; return T_SYMBOL;
"_epsilonsi_" (*yylval) = 11.9; index_status(yyextra)=0; return T_SYMBOL;
"_qepsilon0_" (*yylval) = symbolic(at_unit,makevecteur(1.4185979e-30,_F_unit*_C_unit/_m_unit)); index_status(yyextra)=0; return T_SYMBOL;
"_epsilon0q_" (*yylval) = symbolic(at_unit,makevecteur(55263469.6,_F_unit/(_m_unit*_C_unit))); index_status(yyextra)=0; return T_SYMBOL;
"_kq_" (*yylval) = symbolic(at_unit,makevecteur(8.617386e-5,_J_unit/(_K_unit*_C_unit))); index_status(yyextra)=0; return T_SYMBOL;
"_c3_" (*yylval) = symbolic(at_unit,makevecteur(.002897756,_m_unit*_K_unit)); index_status(yyextra)=0; return T_SYMBOL;
"_lambdac_" (*yylval) = symbolic(at_unit,makevecteur( 0.00242631058e-9,_m_unit)); index_status(yyextra)=0; return T_SYMBOL;
"_f0_" (*yylval) = symbolic(at_unit,makevecteur(2.4179883e14,_Hz_unit)); index_status(yyextra)=0; return T_SYMBOL;
"_lambda0_" (*yylval) = symbolic(at_unit,makevecteur(1239.8425e-9,_m_unit)); index_status(yyextra)=0; return T_SYMBOL;
"_muN_" (*yylval) = symbolic(at_unit,makevecteur(5.0507866e-27,_J_unit/_T_unit)); index_status(yyextra)=0; return T_SYMBOL;
"_muB_" (*yylval) = symbolic(at_unit,makevecteur( 9.2740154e-24,_J_unit/_T_unit)); index_status(yyextra)=0; return T_SYMBOL;
"_a0_" (*yylval) = symbolic(at_unit,makevecteur(.0529177249e-9,_m_unit)); index_status(yyextra)=0; return T_SYMBOL;
"_Rinfinity_" (*yylval) = symbolic(at_unit,makevecteur(10973731.534,unitpow(_m_unit,-1))); index_status(yyextra)=0; return T_SYMBOL;
"_Faraday_" (*yylval) = symbolic(at_unit,makevecteur(96485.309,_C_unit/_mol_unit)); index_status(yyextra)=0; return T_SYMBOL;
"_phi_" (*yylval) = symbolic(at_unit,makevecteur(2.06783461e-15,_Wb_unit)); index_status(yyextra)=0; return T_SYMBOL;
"_alpha_" (*yylval) = 7.29735308e-3; index_status(yyextra)=0; return T_SYMBOL;
"_mpme_" (*yylval) = 1836.152701; index_status(yyextra)=0; return T_SYMBOL;
"_mp_" (*yylval) = symbolic(at_unit,makevecteur(1.6726231e-27,_kg_unit)); index_status(yyextra)=0; return T_SYMBOL;
"_qme_" (*yylval) = symbolic(at_unit,makevecteur(1.75881962e11,_C_unit/_kg_unit)); index_status(yyextra)=0; return T_SYMBOL;
"_me_" (*yylval) = symbolic(at_unit,makevecteur(9.1093897e-31,_kg_unit)); index_status(yyextra)=0; return T_SYMBOL;
"_qe_" (*yylval) = symbolic(at_unit,makevecteur(1.60217733e-19,_C_unit)); index_status(yyextra)=0; return T_SYMBOL;
"_h_" (*yylval) = symbolic(at_unit,makevecteur(6.6260755e-34,_J_unit*_s_unit)); index_status(yyextra)=0; return T_SYMBOL;
"_G_" (*yylval) = symbolic(at_unit,makevecteur(6.67259e-11,unitpow(_m_unit,3)*unitpow(_s_unit,-2)*unitpow(_kg_unit,-1))); index_status(yyextra)=0; return T_SYMBOL;
"_mu0_" (*yylval) = symbolic(at_unit,makevecteur(1.25663706144e-6,_H_unit/_m_unit)); index_status(yyextra)=0; return T_SYMBOL;
"_epsilon0_" (*yylval) = symbolic(at_unit,makevecteur(8.85418781761e-12,_F_unit/_m_unit)); index_status(yyextra)=0; return T_SYMBOL;
"_sigma_" (*yylval) = symbolic(at_unit,makevecteur( 5.67051e-8,_W_unit*unitpow(_m_unit,-2)*unitpow(_K_unit,-4))); index_status(yyextra)=0; return T_SYMBOL;
"_StdP_" (*yylval) = symbolic(at_unit,makevecteur(101325.0,_Pa_unit)); index_status(yyextra)=0; return T_SYMBOL;
"_StdT_" (*yylval) = symbolic(at_unit,makevecteur(273.15,_K_unit)); index_status(yyextra)=0; return T_SYMBOL;
"_R_" (*yylval) = symbolic(at_unit,makevecteur(8.31451,_J_unit/_molK_unit)); index_status(yyextra)=0; return T_SYMBOL;
"_Vm_" (*yylval) = symbolic(at_unit,makevecteur(22.4141,_l_unit/_mol_unit)); index_status(yyextra)=0; return T_SYMBOL;
"_k_" (*yylval) = symbolic(at_unit,makevecteur(1.380658e-23,_J_unit/_K_unit)); index_status(yyextra)=0; return T_SYMBOL;
"_NA_" (*yylval) = symbolic(at_unit,makevecteur(6.0221367e23,unitpow(_mol_unit,-1))); index_status(yyextra)=0; return T_SYMBOL;
"_mSun_" (*yylval) = symbolic(at_unit,makevecteur(1.989e30,_kg_unit)); index_status(yyextra)=0; return T_SYMBOL;
"_RSun_" (*yylval) = symbolic(at_unit,makevecteur(6.955e8,_m_unit)); index_status(yyextra)=0; return T_SYMBOL;
"_PSun_" (*yylval) = symbolic(at_unit,makevecteur(3.846e26,_W_unit)); index_status(yyextra)=0; return T_SYMBOL;
"_mEarth_" (*yylval) = symbolic(at_unit,makevecteur(5.9736e24,_kg_unit)); index_status(yyextra)=0; return T_SYMBOL;
"_REarth_" (*yylval) = symbolic(at_unit,makevecteur(6.371e6,_m_unit)); index_status(yyextra)=0; return T_SYMBOL;
"_sd_" (*yylval) = symbolic(at_unit,makevecteur(8.61640905e4,_s_unit)); index_status(yyextra)=0; return T_SYMBOL;
"_syr_" (*yylval) = symbolic(at_unit,makevecteur(3.15581498e7,_s_unit)); index_status(yyextra)=0; return T_SYMBOL;
*/
/* numbers, also accept DMS e.g 1°15′27″13 */
{D}+ |
{D}+"?" |
{D}+"°" |
{D}+\302\260{D}+ |
{D}+"°"{D}+\342\200\262 |
{D}+"°"{D}+\342\200\262{D}+ |
{D}+"°"{D}+\342\200\262{D}+\342\200\263 |
{D}+"°"{D}+\342\200\262{D}+\342\200\263{D}+ |
{D}+"°"{D}+\342\200\262{D}+"."{D}+ |
{D}+"°"{D}+\342\200\262{D}+"."{D}+\342\200\263 |
"#"[0-7]+"o" |
"#"[0-1]+"b" |
"#"[0-9a-fA-F]+"h" |
"#o"[0-7]+ |
"#b"[0-1]+ |
"#x"[0-9a-fA-F]+ |
"0o"[0-7]+ |
"0b"[0-1]+ |
"0x"[0-9a-fA-F]+ |
{D}+"."{D}*({E})? |
{D}+"."{D}*"?"({E})? |
{D}*"."{D}+({E})? |
{D}*"."{D}+"?"({E})? |
{D}+{E} |
{D}+"?"{E} {
index_status(yyextra)=1;
int l=strlen(yytext);
int interv=0; // set to non-zero if ? in the number
int dot=-1;
for (int i=0;i<l;++i){
if (yytext[i]=='?'){
interv=i; // mark ? position and remove it from the string
for (;i<l;++i){
yytext[i]=yytext[i+1];
}
--l;
break;
}
if (yytext[i]=='.')
dot=i;
}
// CERR << yytext << " " << interv << endl;
if (dot>=0 && interv>1){
--interv; // interv is the relative precision of the interval
if (interv && dot>=1 && yytext[dot-1]=='0')
--interv;
++dot;
while (interv && dot<l && yytext[dot]=='0'){
--interv; ++dot;
}
}
char ch,ch2;
if (l>2 && yytext[1]!='x' && (yytext[l-1]=='o' || yytext[l-1]=='b' || yytext[l-1]=='h') ){
char base=yytext[l-1];
for (int i=l-1;i>1;--i){
yytext[i]=yytext[i-1];
}
if (base=='h')
base='x';
yytext[1]=base;
}
else {
for (l=0;(ch=*(yytext+l));++l){
if (ch=='x')
break;
if (ch=='e' || ch=='E'){
if ( (ch2=*(yytext+l+1)) && (ch2=='e' || ch2=='E')){
++l;
for (;(ch=*(yytext+l));++l)
*(yytext+l-1)=ch;
*(yytext+l-1)=0;
--l;
}
}
#ifndef BCD
if ( (ch==-30 && *(yytext+l+1)==-128) || (ch==-62 && *(yytext+l+1)==-80) ){
*yylval=0; return T_NUMBER;
}
#endif
if (ch==-30 && *(yytext+l+1)==-120 && *(yytext+l+2)==-110){
l += 3;
for (;(ch=*(yytext+l));++l)
*(yytext+l-2)=ch;
*(yytext+l-2)=0;
l -= 3;
*(yytext+l)='-';
}
}
}
(*yylval) = chartab2gen(yytext,yyextra);
if (interv){
double d=evalf_double(*yylval,1,context0)._DOUBLE_val;
if (d<0 && interv>1)
--interv;
double tmp=std::floor(std::log(std::abs(d))/std::log(10));
tmp=(std::pow(10.,1+tmp-interv));
*yylval=eval(gen(makevecteur(d-tmp,d+tmp),_INTERVAL__VECT),1,context0);
}
return T_NUMBER;
}
/* UNITS
"_"{A}{AN}* {
std::pair<const char * const * const,const char * const * const> pp=equal_range(unitname_tab,unitname_tab_end,yytext,tri2);
if (pp.first!=pp.second && pp.second!=unitname_tab_end){
gen tmp=mksa_register_unit(*pp.first,unitptr_tab[pp.first-unitname_tab]);
(*yylval)=tmp;
index_status(yyextra)=0;
return T_SYMBOL;
}
int res=find_or_make_symbol(yytext+1,(*yylval),yyscanner,false,yyextra);
(*yylval)=symb_unit(1,(*yylval),yyextra);
return res;
}
*/
/* symbols */
{A}{AN}* |
"%"{A}{AN}* {
index_status(yyextra)=1;
int res=find_or_make_symbol(yytext,(*yylval),yyscanner,true,yyextra);
if (res==T_NUMBER)
*yylval=(*yylval)(string2gen(unlocalize(yytext),false),yyextra);
return res;
}
"#" if (!xcas_mode(yyextra) || xcas_mode(yyextra)==3) {
// CERR << "hash" << endl;
(*yylval)=gen(at_hash,1); return TI_HASH;
} else BEGIN(comment_hash);
<comment_hash>[^*\n]*\n BEGIN(INITIAL); index_status(yyextra)=0; increment_lexer_line_number_setcol(yyscanner,yyextra); /* comment_s(yyextra)=string(yytext); (*yylval)=string2gen(comment_s(yyextra).substr(0,comment_s(yyextra).size()-1),false); return T_COMMENT; */
/* everything else */
. (*yylval)=string2gen(string(yytext),false); return T_STRING;
%%
/*
* Routines
*/
#ifndef NO_NAMESPACE_GIAC
namespace giac {
#endif // ndef NO_NAMESPACE_GIAC
// Set the input string
// export GIAC_DEBUG=-2 to renew static_lexer.h/static_extern.h
YY_BUFFER_STATE set_lexer_string(const std::string &s_orig,yyscan_t & scanner,GIAC_CONTEXT){
#if 0
#ifdef NSPIRE
FILE * f= fopen("/documents/log.tns","w"); // ends up in My Documents
fprintf(f,"%s",s_orig.c_str());
fclose(f);
#else
ofstream of("log"); // ends up in fir/windows/log
of << s_orig<< endl;
#endif
#endif
if (abs_calc_mode(contextptr)==38 && s_orig==string(s_orig.size(),' '))
giac_yyerror(scanner,"Void string");
#if !defined RTOS_THREADX && !defined NSPIRE
if (!builtin_lexer_functions_sorted){
#ifndef STATIC_BUILTIN_LEXER_FUNCTIONS
sort(builtin_lexer_functions_begin(),builtin_lexer_functions_end(),tri);
#endif
builtin_lexer_functions_sorted=true;
int nfunc=builtin_lexer_functions_number;
if (debug_infolevel==-2 || debug_infolevel==-4 || debug_infolevel==-5){
CERR << "Writing " << nfunc << " in static_lexer.h and static_extern.h "<< endl;
/*
ofstream static_add_ll("static_add.ll");
for (int i=0;i<nfunc;i++){
static_add_ll << "\"" << builtin_lexer_functions_begin()[i].first << "\" " ;
static_add_ll << "*yylval=gen(at_" << translate_at(builtin_lexer_functions_begin()[i].first) << ",0); index_status(yyextra)=0; ";
static_add_ll << "return " << signed(builtin_lexer_functions_begin()[i].second.subtype)+256 << ";" ;
static_add_ll << endl;
}
static_add_ll.close();
*/
ofstream static_lexer("static_lexer.h");
for (int i=0;i<nfunc;i++){
static_lexer << "{\"" << builtin_lexer_functions_begin()[i].first << "\",13," << signed(builtin_lexer_functions_begin()[i].second.subtype) ;
if (debug_infolevel==-2)
static_lexer << ",0,*((ulonglong *) at_" << translate_at(builtin_lexer_functions_begin()[i].first) << ")";
else
static_lexer << ",0,0";
if (builtin_lexer_functions_begin()[i].second._FUNCptr->quoted())
static_lexer << "| 1";
static_lexer << "}" ;
if (i!=nfunc-1)
static_lexer << ",";
static_lexer << endl;
}
static_lexer.close();
if (debug_infolevel==-4){
ofstream static_lexer_("static_lexer_.h");
for (int i=0;i<nfunc;i++){
static_lexer_ << "*((size_t *) at_" << translate_at(builtin_lexer_functions_begin()[i].first) << ")";
if (i!=nfunc-1)
static_lexer_ << ",";
static_lexer_ << endl;
}
static_lexer_.close();
}
if (debug_infolevel==-5){
ofstream static_lexer_("static_lexer_at.h");
for (int i=0;i<nfunc;i++){
static_lexer_ << "res->push_back(*(size_t *)at_" << translate_at(builtin_lexer_functions_begin()[i].first) <<")";
if (i!=nfunc-1)
static_lexer_ << ",";
static_lexer_ << endl;
}
static_lexer_.close();
}
ofstream static_extern("static_extern.h");
static_extern << "#ifndef STATIC_EXTERN" << endl;
static_extern << "#define STATIC_EXTERN" << endl;
static_extern << "namespace giac{" << endl;
static_extern << "struct unary_function_ptr;" << endl;
for (int i=0;i<nfunc;i++){
static_extern << "extern const unary_function_ptr * const at_" << translate_at(builtin_lexer_functions_begin()[i].first) << ";" << endl;
}
static_extern << "}" << endl;
static_extern << "#endif // STATIC_EXTERN" << endl;
static_extern.close();
}
}
#endif // RTOS_THREADX
string s(s_orig),lexer_string;
#ifdef NSPIRE
for (unsigned i=0;i<s.size()-1;++i){
if (s[i]==']' && s[i+1]=='['){
string tmp=s.substr(0,i+1)+string(",");
s=tmp+s.substr(i+1,s.size()-i-1);
}
}
#endif
bool instring=false;
// stupid match of bracket then parenthesis
int l=s.size(),nb=0,np=0;
int i=0;
if (lexer_close_parenthesis(contextptr)){
for (;i<l;++i){
if (!instring && i && s[i]=='/' && s[i-1]=='/'){
// skip comment until end of line
for (;i<l;++i){
if (s[i]==13)
break;
}
continue;
}
if (!instring && i && s[i]=='*' && s[i-1]=='/'){
// skip comment
for (;i<l;++i){
if (s[i]=='/' && s[i-1]=='*')
break;
}
if (i==l){
s = s.substr(0,l-1)+"*/"+s[l-1];
CERR << "unfinished comment, adding */" << endl << s << endl;
}
continue;
}
if (!instring && s[i]==92){
i += 2;
if (i>=l)
break;
}
if (instring){
if (s[i]=='"'&& (i==0 || s[i-1]!='\\'))
instring=false;
}
else {
switch (s[i]){
case '"':
instring=i==0 || s[i-1]!='\\';
break;
case '(':
++np;
break;
case ')':
--np;
break;
case '[':
++nb;
break;
case ']':
--nb;
break;
}
}
}
if (nb<0)
*logptr(contextptr) << "Too many ]" << endl;
if (np<0)
*logptr(contextptr) << "Too many )" << endl;
while (np<0 && i>=0 && s[i-1]==')'){
--i;
++np;
}
while (nb<0 && i>=0 && s[i-1]==']'){
--i;
++nb;
}
s=s.substr(0,i);
if (nb>0){
*logptr(contextptr) << "Warning adding " << nb << " ] at end of input" << endl;
s=s+string(nb,']');
}
if (np>0){
*logptr(contextptr) << "Warning adding " << np << " ) at end of input" << endl;
s=s+string(np,')');
}
}
index_status(contextptr)=0;
opened_quote(contextptr)=0;
in_rpn(contextptr)=0;
lexer_line_number(contextptr)=1;
first_error_line(contextptr)=0;
spread_formula(contextptr)=0;
l=s.size();
for (;l;l--){
if (s[l-1]!=' ')
break;
}
// strings ending with :;
while (l>=4 && s[l-1]==';' && s[l-2]==':'){
// skip spaces before :;
int m;
for (m=l-3;m>0;--m){
if (s[m]!=' ')
break;
}
if (m<=1 || s[m]!=';')
break;
if (s[m-1]==':')
l = m+1;
else {
s[m]=':';
s[m+1]=';';
l=m+2;
}
}
s=s.substr(0,l);
/* if (l && ( (s[l-1]==';') || (s[l-1]==':')))
l--; */
string ss;
for (int i=0;i<l;++i){
if (s[i]=='\\' && s[i+1]=='\n'){
++i;
continue;
}
if (i && (unsigned char)s[i]==0xc2 && (unsigned char)s[i+1]!=0xb0)
ss += ' ';
if ( (unsigned char)s[i]==0xef && i<l-3 ){
if ((unsigned char)s[i+1]==0x80 && (unsigned char)s[i+2]==0x80 ){
ss+='e';
i+=2;
continue;
}
}
if ( (unsigned char)s[i]==0xe2 && i<l-3 ){
if ((unsigned char)s[i+1]==134 && (unsigned char)s[i+2]==146){
// 0xe2 0x86 0x92
ss += ' ';
ss += s[i];
++i;
ss += s[i];
++i;
ss += s[i];
ss += ' ';
continue;
}
if ((unsigned char)s[i+1]==0x89){
ss += ' ';
ss += s[i];
++i;
ss += s[i];
++i;
ss += s[i];
ss += ' ';
continue;
} // 0xe2 0x89
if ((unsigned char)s[i+1]==0x88){
// mathop, add blank before and after except following an e/E
if ((unsigned char) s[i+2]==0x91){ // sigma
ss += " SIGMA";
i +=2;
continue;
}
if ((unsigned char) s[i+2]==0x86){ // delta
ss += " DELTA";
i +=2;
continue;
}
if ((unsigned char) s[i+2]==0x8f){ // pi
ss += " PI";
i +=2;
continue;
}
if ( i>1 && (s[i-1]=='e' || s[i-1]=='E')){
ss +='-';
i +=2;
continue;
}
if (i>2 && (s[i-1]==' ' && (s[i-2]=='e' || s[i-2]=='E')) ){
ss[ss.size()-1] = '-';
i += 3;
continue;
}
ss += ' ';
ss += s[i];
++i;
ss += s[i];
++i;
ss += s[i];
ss += ' ';
continue;
} // 0xe2 0x88
if ((unsigned char)s[i+1]==0x96 && ((unsigned char)s[i+2]==0xba || (unsigned char)s[i+2]==182 )){
// sto
ss += s[i];
++i;
ss += s[i];
++i;
ss += s[i];
ss += ' ';
continue;
} // 0xe2 0x96
if ((unsigned char)s[i+1]==0x86 && (unsigned char)s[i+2]==0x92){
// sto
ss += s[i];
++i;
ss += s[i];
++i;
ss += s[i];
ss += ' ';
continue;
} // 0xe2 0x96
} //end if s[i]=0xe2
if (s[i]=='.'){
if ( i && (i<l-1) && (s[i-1]!=' ') && (s[i+1]=='.') ){
ss+= " ..";
++i;
}
else
ss+='.';
}
else {
if (xcas_mode(contextptr) > 0 && xcas_mode(contextptr) !=3){
if (s[i]=='#')
ss += "//";
else
ss += s[i];
}
else
ss+=s[i];
}
}
// ofstream of("log"); of << s << endl << ss << endl; of.close();
if (debug_infolevel>2)
CERR << "lexer " << ss << endl;
lexer_string = ss+" \n ÿ";
yylex_init(&scanner);
yyset_extra(contextptr, scanner);
YY_BUFFER_STATE state=yy_scan_string(lexer_string.c_str(),scanner);
return state;
}
int delete_lexer_string(YY_BUFFER_STATE & state,yyscan_t & scanner){
yy_delete_buffer(state,scanner);
yylex_destroy(scanner);
return 1;
}
#ifdef STATIC_BUILTIN_LEXER_FUNCTIONS
bool CasIsBuildInFunction(char const *s, gen &g){
// binary search in builtin_lexer_functions
int i=0, j=builtin_lexer_functions_number-1;
int cmp;
cmp= strcmp(s,builtin_lexer_functions[i].s);
if (cmp==0) goto found; if (cmp<0) return false;
cmp= strcmp(s,builtin_lexer_functions[j].s);
if (cmp==0) { i=j; goto found; } if (cmp>0) return false;
while (1){
if (i+1>=j) return false;
int mid= (i+j)/2;
cmp= strcmp(s,builtin_lexer_functions[mid].s);
if (cmp==0) { i=mid; goto found; }
if (cmp>0) i= mid; else j=mid;
}
found:
#ifdef NSPIRE
g= gen(int((*builtin_lexer_functions_())[i]+builtin_lexer_functions[i]._FUNC_));
#else
g= gen(int(builtin_lexer_functions_[i]+builtin_lexer_functions[i]._FUNC_));
#endif
g= gen(*g._FUNCptr);
return true;
}
#endif
#ifndef NO_NAMESPACE_GIAC
} // namespace giac
#endif // ndef NO_NAMESPACE_GIAC