1 | % Restoring file /usr/local/lib/Yap/startup.yss |
---|
2 | |
---|
3 | ...final principal set... |
---|
4 | (pBob,keyid,y) |
---|
5 | (pJan,keyid,y) |
---|
6 | (pJoe,keyid,y) |
---|
7 | (pMark,keyid,y) |
---|
8 | (pMaryann,keyid,y) |
---|
9 | (pStateU,keyid,y) |
---|
10 | |
---|
11 | ...final policy attribute set... |
---|
12 | pStateU.diploma('mathmatics',1961) <- pBob |
---|
13 | pStateU.diploma('mathmatics',1965) <- pMark |
---|
14 | pStateU.diploma('psychology',1960) <- pJan |
---|
15 | pStateU.diploma('psychology',1962) <- pMaryann |
---|
16 | pStateU.diploma('zoology',1961) <- pJoe |
---|
17 | pStateU.foundingAlumni <- pStateU.diploma(D:['psychology','mathmatics'],Year:[1963,1961,1960]) |
---|
18 | |
---|
19 | ===good============ stateU.foundingAlumni <- Bob |
---|
20 | YAP query succeed |
---|
21 | pStateU.foundingAlumni <- pStateU.diploma(D:['psychology','mathmatics'],Year:[1963,1961,1960]) |
---|
22 | pStateU.diploma('mathmatics',1961) <- pBob |
---|
23 | |
---|
24 | ===bad============ stateU.foundingAlumni <- Mark |
---|
25 | YAP query failed |
---|
26 | |
---|
27 | ===bad============ stateU.foundingAlumni <- Joe |
---|
28 | YAP query failed |
---|
29 | |
---|
30 | ===bad============ stateU.foundingAlumni <- Maryann |
---|
31 | YAP query failed |
---|
32 | |
---|
33 | ===good============ stateU.foundingAlumni <- Jan |
---|
34 | YAP query succeed |
---|
35 | pStateU.foundingAlumni <- pStateU.diploma(D:['psychology','mathmatics'],Year:[1963,1961,1960]) |
---|
36 | pStateU.diploma('psychology',1960) <- pJan |
---|