Search:

Type: Posts; User: Ibn_Al_Arabi; Keyword(s):

Search: Search took 0.02 seconds.

  1. Replies
    0
    Views
    5,058

    Lex/yacc et les conflits shift reduce

    Assalamou alaykom ,

    J'ai un problème avec Bison et les problèmes shift/reduce. Dans une règle , quand j'ajoute un traitement après un terminal reconnu , j'ai plus de conflits shift reduce.


    ...
  2. Replies
    1
    Views
    593

    [ubuntu] Re: Lex/yacc bizarre problem

    Look at this , I tryed to find out the problem which seems to be with the . character :

    lex file :

    %option noyywrap

    ws [ \t]+
    dig [0-9]
    simple_float {dig}+.{dig}+
    num1 ...
  3. Replies
    1
    Views
    593

    [ubuntu] Lex/yacc bizarre problem

    Hello all ,

    I'm writing a parser using lex and yacc for an IEEE standard language ( STIL ). Here's the lex file ( some of ).

    /* C inclusion C and other GV */
    %%
    /*
    Other RE
    */
    dig [0-9]
Results 1 to 3 of 3