aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/derived/slice/test.sd
blob: fbb581d1b1da7a462085eee16c127d4540eca181 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
search test {

    document test {
    }

    rank-profile parent {

        function inline cpmScore() {
            expression: myValue * mySlice(query(myTensor))
        }

        function inline myValue() {
            expression: 4
        }

        function inline mySlice(myTensor) {
            expression: myTensor{"NULL"}
        }
    }

}