aboutsummaryrefslogtreecommitdiffstats
path: root/container-search/src/test/java/com/yahoo/prelude/semantics/test/rulebases/ellipsis.sr
blob: c45fe057d75840ef21f83df36f315ce9b5997a07 (plain) (blame)
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
# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
# tests rules containing ellipses (wildcards)

# From tutorial, referenced ellipsis
[...] album -> album:[...];

# From tutorial, referenced ellipsis
[...] [album] -> album:[...];
[album] :- album, cd, record, lp;



# Invented answerish use case, unreferenced ellipsis
why is [noun] ... [adjective] +> about:[noun];

[noun] :- stench, the sky, aardwark;
[adjective] :- unpleasant, blue, most relevant;



# Ellipsis in named condition
buy [video] -> name:[videoname] product:video;

[video] :- videoname/[...] [videosynonym], videoname/[knownvideoname];

[knownvideoname] :- a sun came, illinois, the avalance, seven swans;

[videosynonym] :- dvd, video;



# Multiple ellipsis

from from/[...] to to/[...] -> from:[from] to:[to];