You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@uima.apache.org by "Peter Klügl (Jira)" <de...@uima.apache.org> on 2019/11/06 10:37:00 UTC

[jira] [Resolved] (UIMA-5437) Ruta: window restriction in block broken

     [ https://issues.apache.org/jira/browse/UIMA-5437?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Peter Klügl resolved UIMA-5437.
-------------------------------
    Resolution: Fixed

Cannot reproduce, was probably fixed on the way

> Ruta: window restriction in block broken
> ----------------------------------------
>
>                 Key: UIMA-5437
>                 URL: https://issues.apache.org/jira/browse/UIMA-5437
>             Project: UIMA
>          Issue Type: Bug
>          Components: Ruta
>    Affects Versions: 2.6.0ruta
>            Reporter: Peter Klügl
>            Assignee: Peter Klügl
>            Priority: Major
>             Fix For: 3.0.0ruta, 2.8.0ruta
>
>
> {noformat}
> STRING s;
> BOOLEAN a ;
> // This is not working:
> BLOCK(forEACH1) Lemma{} { // Matches a lot
>      Lemma{->MATCHEDTEXT(s), ASSIGN(a,contains(s,"er"))}; // Matches 0
>      Lemma{a ->Test1};
> }
> // This is not working:
> BLOCK(forEACH2) Lemma{} { // Matches a lot
> Lemma{contains(Lemma.ct, "er") -> MARK(Test2)}; // Matches 0
> }
> // This is working:
> Lemma{contains(Lemma.ct, "er") -> MARK(Test3)}; // Matches 1
> // This is working:
> BLOCK(forEACH4) Lemma{}{
>      W{->MATCHEDTEXT(s), ASSIGN(a,contains(s,"er"))}; // Matches 1
>      W{a ->Test4};
> }
> // This is also working:
> BLOCK(forEACH5) Lemma{}{
>     Document{->MATCHEDTEXT(s), ASSIGN(a,contains(s,"er"))}; // Matches 1
>     Document{a ->Test5};
> } 
> {noformat}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)