summaryrefslogtreecommitdiff
path: root/examples/attempto/Attempto1.gf
blob: 50526a889eb9efca42c497e13deb710b33f3c7a0 (plain)
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
-- 15.58

abstract Attempto = {

flags startcat = ACEText ;

cat 
  ACEText ;
  Query ; 
  Command ;
fun 
  ASpecification : Specification -> ACEText ;
  AQuery : Query -> ACEText ;
  ACommand : Command -> ACEText ;
cat
  PropositionOrSentenceCoord ;
  TopicalisedQuestion ;
fun
  QQuery : PropositionOrSentenceCoord -> Query -> Query ;
  QTopicalizer : TopicalisedQuestion -> Query ;
cat
  ExistentialQuestionTopic ;
  SentenceCoord ;
fun
  TExistential : ExistentialQuestionTopic -> SentenceCoord -> TopicalisedQuestion ;
  TUniversal : UniversalTopic -> TopicalisedQuestion -> TopicalisedQuestion ;
  TQuestion : Question -> TopicalisedQuestion ;

}